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

Fixes Duplicated CustomComponents, CTRL+Backspace and other fixes #767

Merged
merged 31 commits into from
Aug 15, 2023

Commits on Aug 1, 2023

  1. 🐛 fix(App.tsx): prevent default behavior of Ctrl+Backspace key combin…

    …ation to improve user experience
    
    🐛 fix(AccordionComponent/index.tsx): prevent default behavior of Backspace key to improve user experience
    
    🐛 fix(floatComponent/index.tsx): prevent default behavior of Backspace key to improve user experience
    
    🐛 fix(inputComponent/index.tsx): prevent default behavior of Backspace key to improve user experience
    
    🐛 fix(inputListComponent/index.tsx): prevent default behavior of Ctrl+Backspace key combination to improve user experience
    
    🐛 fix(intComponent/index.tsx): prevent default behavior of Backspace key to improve user experience
    
    🐛 fix(genericModal/index.tsx): prevent default behavior of Backspace key to improve user experience
    Cristhianzl committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    2f1f3ee View commit details
    Browse the repository at this point in the history
  2. 🔀 merge(frontend): resolve merge conflict in reactflowUtils.ts file

    🐛 fix(frontend): remove unnecessary merge conflict markers in reactflowUtils.ts file
    Cristhianzl committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    8c2ce3f View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. 🐛 fix(App.tsx): add support for preventing control+backspace event on…

    … the application to improve user experience
    Cristhianzl committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    89671a8 View commit details
    Browse the repository at this point in the history
  2. 🔥 refactor(App.tsx): remove unused code related to preventing control…

    …+backspace event
    
    The code related to preventing the control+backspace event in the application was removed as it was no longer needed.
    Cristhianzl committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    4f2fc11 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. fix(reactflowUtils.ts): import Edge from reactflow to fix type error …

    …and improve code semantics
    
    feat(reactflowUtils.ts): add getConnectedNodes function to retrieve connected nodes based on an edge
    fix(styleUtils.ts): remove unused getConnectedNodes function
    anovazzi1 committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    19b5a05 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9d3018e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    75e25ad View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. 🐛 fix(reactflowUtils.ts): prevent default behavior and stop propagati…

    …on of keyboard event when pressing Ctrl + Backspace on input value that matches block or ends with a space character to improve user experience
    Cristhianzl committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    e2f0f20 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. Fixed bug on Export Modal

    lucaseduoli committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    2436461 View commit details
    Browse the repository at this point in the history
  2. 🐛 fix(endpoints.py): handle duplicate paths in settings.COMPONENTS_PA…

    …TH to avoid processing the same path multiple times
    
    🐛 fix(settings.py): convert Path objects to strings in settings.COMPONENTS_PATH to ensure consistency and avoid potential issues
    ogabrielluiz committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    2e0de19 View commit details
    Browse the repository at this point in the history
  3. 🐛 fix(OpenAIConversationalAgent.py): fix typo in display name of Conv…

    …ersational Agent class
    
    ✨ feat(OpenAIConversationalAgent.py): add support for OpenAI API key and base URL in build method to enable API function calling
    ogabrielluiz committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    343d829 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b140bbc View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Fixed variable names

    lucaseduoli committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    c37e122 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2023

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

Commits on Aug 14, 2023

  1. 🔧 fix(constants.ts): add specialCharsRegex constant to match special …

    …characters in strings
    
    🔧 fix(reactflowUtils.ts): update handleKeyDown function to prevent deletion of block when a special character is the last character in the input value
    Cristhianzl committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    9acf9e3 View commit details
    Browse the repository at this point in the history
  2. 🔧 chore(reactflowUtils.ts): remove console.log statement for keydown …

    …event in handleKeyDown function
    
    🐛 fix(reactflowUtils.ts): fix handleKeyDown function to properly handle special characters and backspace key
    Cristhianzl committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    a531cc6 View commit details
    Browse the repository at this point in the history
  3. 🐛 fix(reactflowUtils.ts): fix bug with control+backspace key combinat…

    …ion on Windows/Linux and Mac
    Cristhianzl committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    4522cd3 View commit details
    Browse the repository at this point in the history
  4. 🐛 fix(constants.ts): add backtick (`) and backtick (´) to specialChar…

    …sRegex to include them as special characters
    Cristhianzl committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    754d266 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9df5e94 View commit details
    Browse the repository at this point in the history
  6. 🐛 fix(types.py): handle case where prompt template is not present in …

    …PromptVertex
    
    ℹ️ The code was modified to handle a case where the `template` attribute is not present in the `PromptVertex` class. If the `template` attribute is not found, the code checks if the `prompt` attribute is present and uses its `template` attribute instead. This change ensures that the code does not break when the `template` attribute is missing.
    ogabrielluiz committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    2144e1e View commit details
    Browse the repository at this point in the history
  7. 🐛 fix(utils.py): add condition to check if prompt has 'partial' attri…

    …bute before calling it to prevent error
    ogabrielluiz committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    e0f625e View commit details
    Browse the repository at this point in the history
  8. Fix HumanMessagePromptTemplate bug (#763)

    HumanMessagePromptTemplate and some other MessagePromptTemplates were
    not built correctly.
    
    This fixes SystemMessage Example.
    gustavoschaedler committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    cb47f7c View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2023

  1. Formatting

    ogabrielluiz committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    d0cee2c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f1f958a View commit details
    Browse the repository at this point in the history
  3. 🐛 fix(settings.py): convert Path object to string before appending to…

    … list to avoid type error
    
    🐛 fix(settings.py): check if value is already in the list before appending to avoid duplicates
    ogabrielluiz committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    b6d063a View commit details
    Browse the repository at this point in the history
  4. 🔒 chore(poetry.lock): update anthropic package version to 0.3.9

    🔒 chore(poetry.lock): update typing-extensions package version to >=4.5,<5
    🔒 chore(poetry.lock): update cohere package version to 4.20.0
    
    📦 chore(poetry.lock): update coverage package version to 7.3.0
    🔀 chore(poetry.lock): update python-versions constraint to >=3.8
    
    🚀 feat(coverage): update coverage package to version 7.3.0
    
    The coverage package has been updated to version 7.3.0. This update includes new wheel files for various platforms and their corresponding hashes.
    
    🔒 chore: update coverage package dependencies
    
    The coverage package dependencies have been updated to version 7.3.0. This commit includes the updated wheel files and their corresponding hashes.
    
    🔒 chore(poetry.lock): update ctransformers to version 0.2.22
    🔒 chore(poetry.lock): update exceptiongroup to version 1.1.3
    🔒 chore(poetry.lock): update google-cloud-aiplatform to version 1.30.1
    🔒 chore(poetry.lock): update langsmith to version 0.0.22
    🔒 chore(poetry.lock): update metaphor-python to version 0.1.14
    🔒 chore(poetry.lock): update pandas-stubs to version 2.0.3.230814
    🔒 chore(poetry.lock): update pypdf to version 3.15.1
    🔒 chore(poetry.lock): update tenacity to version 8.2.3
    
    🔒 chore(poetry.lock): update tornado version from 6.3.2 to 6.3.3 to fix security vulnerability
    🔒 chore(poetry.lock): update types-pytz version from 2023.3.0.0 to 2023.3.0.1 to fix typing stubs
    🔒 chore(poetry.lock): update validators version from 0.20.0 to 0.21.0 to improve data validation
    🔒 chore(poetry.lock): update watchfiles version from 0.19.0 to 0.19.0 (no changes)
    ogabrielluiz committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    46fa192 View commit details
    Browse the repository at this point in the history
  5. 🐛 fix(endpoints.py): fix comparison of path variable to string in get…

    …_all() function to prevent duplicate processing of paths
    ogabrielluiz committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    e63d6aa View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    73c73db View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5140ae6 View commit details
    Browse the repository at this point in the history
  8. feat: Add documentation for various tools

    - Added documentation for BingSearchRun, Calculator, GoogleSearchResults, GoogleSearchRun, GoogleSerperRun, and InfoSQLDatabaseTool components.
    rodrigosnader authored and ogabrielluiz committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    4c1b342 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    5a49015 View commit details
    Browse the repository at this point in the history