Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two changes: added file_output component and a cleaner way for a component to discard a message #22

Merged
merged 40 commits into from
Jul 25, 2024

Commits on Apr 27, 2024

  1. Remove launch.json

    efunneko committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    a133bd2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d9b3d36 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c9f4091 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    dd861b0 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2024

  1. Configuration menu
    Copy the full SHA
    7785992 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Configuration menu
    Copy the full SHA
    0ae3420 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. Configuration menu
    Copy the full SHA
    2f7ec70 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2024

  1. * Add ability for a component to send a message directly to a named flow

    * Add ability to stream partial LLM responses to a named flow
    * Add a configurable message that is sent to the slack channel that sent a message to slack_input
    * Add the ability to clear the ack message and stream partial results to that ack message
    efunneko committed May 23, 2024
    Configuration menu
    Copy the full SHA
    d852259 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. feat: Update default stream_batch_size to 15 in LangChainChatModelWit…

    …hHistory
    
    - also started on converting absolute paths for imports to relative ones
    efunneko committed May 27, 2024
    Configuration menu
    Copy the full SHA
    dd5b7f9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    79b1021 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2024

  1. Configuration menu
    Copy the full SHA
    8b01c1c View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Update import statement in main.py

    The import statement in `main.py` was updated to remove the relative path and use an absolute import for `SolaceAiConnector` from `solace_ai_connector.solace_ai_connector`. This change improves the code organization and ensures proper module resolution.
    efunneko committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    261d095 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. Another major reorganization of directory structure to make it more s…

    …ensible. This is part of a cleanup before releasing to Pypi
    efunneko committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    002e9b9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fea2759 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3b421b8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5b21a74 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bcac8ea View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2024

  1. Made some changes in utils.py for dynamic loading. We will no longer …

    …do a directory search looking for modules. We are more explicit now
    
    Also promote the gen_docs tool to an installed script so that it can be used for plugins
    efunneko committed Jun 8, 2024
    Configuration menu
    Copy the full SHA
    5e4d350 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2024

  1. Moved slack components into their own plugin: solace-ai-connector-slack.

    Adjusted the importing of modules from config files to be more friendly for plugins and added a 'component_package' properly that will be auto-installed if it is specified and the package is not present.
    efunneko committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    8c809e8 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. chore: Update component_base.py to include flow_lock_manager and flow…

    …_kv_store
    
    This commit updates the component_base.py file to include the flow_lock_manager and flow_kv_store attributes. These attributes are necessary for components to access the flow-level lock manager and key-value store. By adding these attributes, components can now utilize the lock manager to synchronize access to shared resources and the key-value store to store and retrieve data across multiple components within the flow. This change improves the flexibility and functionality of the component_base.py file.
    
    Changed the default location of the trust_store for the Solace API to be provided by the certifi module.
    
    Added a configuration item for the ChatModel with History component to be able to limit the size of entries being added to the chat history
    efunneko committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    9cbba1d View commit details
    Browse the repository at this point in the history
  2. chore: Update trust_store_path for Solace API

    This commit updates the trust_store_path for the Solace API in the solace_messaging.py file. The trust_store_path is now provided by the certifi module, which ensures that the default location of the trust store is used. This change improves the security and reliability of the Solace API integration.
    
    ```
    efunneko committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    fc21829 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. Configuration menu
    Copy the full SHA
    85bf89a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f140ca6 View commit details
    Browse the repository at this point in the history
  3. DATAGO-78654 : Add CI (#4)

    DATAGO-78654: Add ci
    artyom-morozov authored Jul 8, 2024
    Configuration menu
    Copy the full SHA
    df0fd3d View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Configuration menu
    Copy the full SHA
    1c15df5 View commit details
    Browse the repository at this point in the history
  2. chore: Fix a bug in the user_processor component to properly return s…

    …calar values after processing (#5)
    efunneko authored Jul 11, 2024
    Configuration menu
    Copy the full SHA
    714e239 View commit details
    Browse the repository at this point in the history
  3. Test clean up prints (#7)

    * Cleanup of some lingering prints and add a couple more tests
    
    * Print cleanup
    
    * Exclude coverage.py result from sonarqube
    
    ---------
    
    Co-authored-by: Edward Funnekotter <[email protected]>
    Co-authored-by: Edward Funnekotter <[email protected]>
    3 people authored Jul 11, 2024
    Configuration menu
    Copy the full SHA
    1873ae4 View commit details
    Browse the repository at this point in the history
  4. Remove empty test file

    efunneko committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    7b616d8 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

  1. Configuration menu
    Copy the full SHA
    59e92b8 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2024

  1. Configuration menu
    Copy the full SHA
    a6de455 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bb19336 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #9 from SolaceDev:fix_timer_issue

    Fix_timer_issue
    efunneko authored Jul 15, 2024
    Configuration menu
    Copy the full SHA
    96fe7b0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3dbab64 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Configuration menu
    Copy the full SHA
    70f8643 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5495009 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. Configuration menu
    Copy the full SHA
    d5df0cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9098f50 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. DATAGO-80480: Change workflows to use shareable public actions (#10)

    * Add reusable workflows
    
    * Run docker tests in parallel
    artyom-morozov authored Jul 24, 2024
    Configuration menu
    Copy the full SHA
    8e64032 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. Configuration menu
    Copy the full SHA
    fc02b88 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12 from SolaceDev:better_streaming

    Better_streaming
    efunneko authored Jul 25, 2024
    Configuration menu
    Copy the full SHA
    b0b2548 View commit details
    Browse the repository at this point in the history