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

feature: get messages from messages table for the playground #3874

Merged
merged 190 commits into from
Oct 15, 2024

Commits on Aug 28, 2024

  1. Configuration menu
    Copy the full SHA
    90e89a6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9ca83a0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a79282e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c71f6b4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    37a5ac6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ff3eec5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    61e5d72 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ef8815c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    bf2618d View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e1fe1be View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4c41950 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    d2a200a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    fc9c9df View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    5e9388b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    ea9ad4e View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    54f35cd View commit details
    Browse the repository at this point in the history
  17. refactor: Fix send_event_wrapper function and add callback parameter …

    …to _build_vertex function.
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    6929631 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    d1f9c75 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    e4db7bc View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    abaa23e View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    9a8019f View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    441015e View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    6fec2b3 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    b2119d2 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    93a7802 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    8766c43 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    5e25adf View commit details
    Browse the repository at this point in the history
  28. update projects

    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    d2b4bf7 View commit details
    Browse the repository at this point in the history
  29. fix(chat.py): fix condition to check if message text is a string befo…

    …re updating message text in the database
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    0817895 View commit details
    Browse the repository at this point in the history
  30. refactor(ChatOutput.py): update ChatOutput class to correctly store a…

    …nd assign the message value to ensure consistency and avoid potential bugs
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    b46f536 View commit details
    Browse the repository at this point in the history
  31. refactor(chat.py): update return type of store_message method to retu…

    …rn a single Message object instead of a list of Messages
    
    refactor(chat.py): update logic to correctly handle updating and returning a single stored message object instead of a list of messages
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    49b73d1 View commit details
    Browse the repository at this point in the history
  32. update starter projects

    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    1db1b0e View commit details
    Browse the repository at this point in the history
  33. refactor(component.py): update type hint for name parameter in log me…

    …thod to be more explicit
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    28d00c9 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    6c2876b View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    ad37fc3 View commit details
    Browse the repository at this point in the history
  36. refactor(component.py): rename _log_callback to _event_manager and up…

    …date method call to on_log for better clarity and consistency
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    06ced11 View commit details
    Browse the repository at this point in the history
  37. refactor(chat.py): rename _log_callback method to _event_manager.on_t…

    …oken for clarity and consistency in method naming
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    31898ea View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    b2c4bf4 View commit details
    Browse the repository at this point in the history
  39. refactor: Update Vertex class to use EventManager instead of log_call…

    …back for better clarity and consistency
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    e88c145 View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    2d29f00 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    d8320de View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    b630bba View commit details
    Browse the repository at this point in the history
  43. Add method to register event functions in EventManager

    - Introduced `register_event_function` method to allow passing custom event functions.
    - Updated `noop` method to accept `event_type` parameter.
    - Adjusted `__getattr__` to return `EventCallback` type.
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    c72bd9b View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    2c95daf View commit details
    Browse the repository at this point in the history
  45. Add unit tests for EventManager in test_event_manager.py

    - Added tests for event registration, including default event type, empty string names, and specific event types.
    - Added tests for custom event functions and unregistered event access.
    - Added tests for event sending, including JSON formatting, empty data, and large payloads.
    - Added tests for handling JSON serialization errors and the noop function.
    ogabrielluiz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    8834512 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. Configuration menu
    Copy the full SHA
    d375bd4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bfce547 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    108d09a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    578f1a5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ef24c22 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ffc3094 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    07e6991 View commit details
    Browse the repository at this point in the history
  8. fix: update serialization and improve error handling (#3516)

    * feat(utils): add support for V1BaseModel in serialize_field
    
    Add support for V1BaseModel instances in the serialize_field function by
    checking for a "to_json" method. If the method is not present, return the
    attribute values as a dictionary.
    
    * refactor: Update field serializer function and error handling in build_flow function
    ogabrielluiz committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    8247d2e View commit details
    Browse the repository at this point in the history
  9. remove use memo to prevent bugs

    anovazzi1 authored and ogabrielluiz committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    f13399f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ec52860 View commit details
    Browse the repository at this point in the history
  11. feat: update message partially in MessagesStoreType

    This commit adds the `updateMessagePartial` method to the `MessagesStoreType` in `messagesStore.ts`. This method allows updating a specific message by merging the changes with the existing message object.
    anovazzi1 authored and ogabrielluiz committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    21259d7 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ea460d0 View commit details
    Browse the repository at this point in the history
  13. feat: update log_callback name

    anovazzi1 authored and ogabrielluiz committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    46ad530 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    f493af6 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    ea11475 View commit details
    Browse the repository at this point in the history
  16. refactor: store message in ChatInput after updating flow_id

    This commit refactors the `ChatInput` component by moving the logic to store the message after updating the `flow_id` property. This ensures that the message is properly stored in the correct flow. The previous implementation had the logic to store the message before updating the `flow_id`, which could lead to incorrect storage of messages. This change improves the reliability and accuracy of message storage in the `ChatInput` component.
    anovazzi1 authored and ogabrielluiz committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    d5397d6 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    67f7f72 View commit details
    Browse the repository at this point in the history
  18. refactor: update ChatComponent to use stored_message.id instead of se…

    …lf.graph.flow_id
    
    Update the `ChatComponent` class in `chat.py` to use the `stored_message.id` property instead of `self.graph.flow_id` when logging a message. This ensures that the correct message ID is used for logging purposes. The previous implementation used the flow ID, which could lead to incorrect logging. This change improves the accuracy of message logging in the `ChatComponent`.
    anovazzi1 authored and ogabrielluiz committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    7e9ccdc View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    604fbd2 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. raw: temp serializer fix

    italojohnny committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    c3576bc View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. Configuration menu
    Copy the full SHA
    b299a9e View commit details
    Browse the repository at this point in the history
  2. refactor: optimize message update in useMessagesStore

    Improve the efficiency of updating messages in the `useMessagesStore` function of `messagesStore.ts`. Instead of iterating through the entire message list, this refactor searches for the message to update by iterating backwards from the end. This approach allows for faster message retrieval and update. The code has been modified to use a for loop and break out of the loop once the message is found. This change enhances the performance of the message update process.
    anovazzi1 committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    a4825c2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c9a8f19 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a18d02c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5fe292e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8420ec5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6d321e9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    7b1b8f8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    49129eb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    932295c View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b598231 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. Configuration menu
    Copy the full SHA
    560de16 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c27c73a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    35d3aa4 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Configuration menu
    Copy the full SHA
    4283600 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1d54fdb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3dfbe66 View commit details
    Browse the repository at this point in the history
  4. Refactor chatView component to include focusChat prop and trigger foc…

    …us on chat when new session is set
    anovazzi1 committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    314747d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e593e5b View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

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

Commits on Sep 12, 2024

  1. Configuration menu
    Copy the full SHA
    6d65c50 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a360615 View commit details
    Browse the repository at this point in the history
  3. feat: Add someFlowTemplateFields function

    Add the someFlowTemplateFields function to the reactflowUtils module. This function checks if any of the nodes in the provided array have template fields that pass a given validation function.
    anovazzi1 committed Sep 12, 2024
    Configuration menu
    Copy the full SHA
    16ec7f2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5dbdf57 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    631468f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    18af981 View commit details
    Browse the repository at this point in the history
  7. Refactor ChatView component: Remove unused eraser button

    The eraser button in the ChatView component was removed as it was not being used and served no purpose. This change improves code cleanliness and removes unnecessary code.
    anovazzi1 committed Sep 12, 2024
    Configuration menu
    Copy the full SHA
    0fe7c00 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. Configuration menu
    Copy the full SHA
    35cbea4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5f9e6a0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    95ccbdb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4c42d48 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c324cca View commit details
    Browse the repository at this point in the history
  6. Refactor MessagesStoreType in zustand/messages/index.ts: Remove unuse…

    …d columns property and setColumns method
    anovazzi1 committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    ab7ee2a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ed86d88 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3211b22 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    1580757 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    6a0b8ef View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4571a8b View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. Configuration menu
    Copy the full SHA
    de4f3fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    80ff185 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ac3bae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4779185 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8c97c4d View commit details
    Browse the repository at this point in the history
  6. update types

    anovazzi1 committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    aa0d65d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d115487 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    778e886 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9bb1510 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. create migration

    anovazzi1 committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    8344549 View commit details
    Browse the repository at this point in the history
  2. add fields to data table

    anovazzi1 committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    b72d36a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b245d57 View commit details
    Browse the repository at this point in the history
  4. Refactor EditMessageField component: Improve onBlur event handling an…

    …d add button click flag
    anovazzi1 committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    8302fd4 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Configuration menu
    Copy the full SHA
    e3b6f3c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2df54d9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3e2cd4e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7a10e70 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e1cd809 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    80eecbf View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2024

  1. fix: migrate

    italojohnny committed Sep 21, 2024
    Configuration menu
    Copy the full SHA
    60f8bb9 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. Configuration menu
    Copy the full SHA
    70a0f3c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ab2ec07 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b88a2f9 View commit details
    Browse the repository at this point in the history
  4. fix edit flag

    anovazzi1 committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    739b3aa View commit details
    Browse the repository at this point in the history
  5. Refactor IOModal component to generate a unique session ID based on t…

    …he current date and time
    anovazzi1 committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    6f86f32 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c12106b View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. Configuration menu
    Copy the full SHA
    0dd3dff View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    902e941 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Configuration menu
    Copy the full SHA
    3a3a48e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a5094a6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c6d3a74 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e6b7761 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    249f21a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6cb5f59 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    36fa128 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e1ab7bc View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    eb5820c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    bf111ea View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c55bd67 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    fc2cfca View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    40968c7 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    5cbffa5 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. improve edit name feature

    anovazzi1 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    ccce475 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f78b322 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cbbc35c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    52dbbef View commit details
    Browse the repository at this point in the history
  5. fix typing error

    anovazzi1 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    91a8deb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    586777f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7ed460f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    94d6cbb View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    215b3f2 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a553623 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9fccd7f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    eae60d2 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. improve test

    anovazzi1 committed Oct 10, 2024
    Configuration menu
    Copy the full SHA
    6cd91af View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0059309 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bedcdab View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3b09d3e View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2024

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

Commits on Oct 14, 2024

  1. Configuration menu
    Copy the full SHA
    312ec21 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a6a3c0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a7cc9bd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c99a0e9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c836daf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    40b03bc View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2024

  1. Configuration menu
    Copy the full SHA
    cb048f6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a385eea View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    322acaf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8f5f22a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    308a441 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    60a1cfe View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6d7fd05 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9624b55 View commit details
    Browse the repository at this point in the history
  9. ⬆️ (pyproject.toml): upgrade duckduckgo-search dependency to version …

    …6.3.1 for bug fixes or new features
    
    🔧 (duckduckgo.spec.ts): refactor test to handle multiple possible outcomes when waiting for selectors and improve readability
    Cristhianzl committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    68a9678 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f2222dc View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    7570ffb View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    b43ce12 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    88b62a0 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ce5f842 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    70d63e6 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    655ebda View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    454c5c7 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    7757c81 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    109179f View commit details
    Browse the repository at this point in the history
  20. fix delete session

    anovazzi1 committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    6b15b11 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    5bb7728 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    c89a45b View commit details
    Browse the repository at this point in the history