Skip to content

Latest commit

 

History

History
547 lines (547 loc) · 71.6 KB

AI_CHANGELOG.md

File metadata and controls

547 lines (547 loc) · 71.6 KB

AI CHANGELOG

Wed Apr 17 15:07:06 2024 +0000

  • This commit updates the versions of several packages in the requirements.txt file. The updated packages include anthropic from version 0.25.1 to 0.25.3, langsmith from version 0.1.47 to 0.1.48, and openai from version 1.17.1 to 1.20.0. These updates ensure that the project is using the latest and most secure versions of these dependencies.

Wed Apr 17 11:02:57 2024 -0400

  • This commit updates the versions of several packages in the requirements.txt file. The packages updated include anthropic, black, duckduckgo-search, faiss-cpu, langchain, langsmith, mypy, numexpr, openai, pillow, pypdf, ruff, streamlit, and tiktoken. The versions of the packages were updated to their latest stable versions. This is important to ensure compatibility with other packages and to benefit from the latest features and bug fixes provided by these packages.

Mon Feb 5 12:49:43 2024 +0000

  • This commit updates the versions of several packages in the requirements.txt file.
  • The updated packages include anthropic, duckduckgo-search, langchain, langsmith, openai, ruff, and streamlit.
  • The versions of these packages were updated to their latest stable versions, presumably to incorporate new features or bug fixes.

Mon Jan 29 12:14:25 2024 +0000

  • The Python dependencies in the requirements.txt file have been updated. The following packages were upgraded: anthropic, black, duckduckgo-search, langchain, langsmith, numexpr, openai, and pypdf.

Mon Jan 1 13:05:22 2024 +0000

  • The langchain package version in the requirements.txt file has been updated from 0.0.352 to 0.0.353.

Wed Dec 27 19:28:06 2023 -0500

  • This commit includes several changes to improve the structure and documentation of the assistant tools used in the Streamlit app. The changes include:
    1. Reordering of import statements for better readability and organization.
    1. Refactoring of the research_assistant_tool, python_coder_tool, doc_chain_tool, and doc_question_tool functions to improve their documentation. The new documentation provides clearer instructions for use and sets more explicit expectations for the type of input these tools should receive.
    1. Adjustments to the order of tools in the TOOLS list to ensure the doc_question_tool is prioritized.

Wed Dec 27 16:25:25 2023 +0000

  • The application version has been updated from 2.1.3 to 2.1.4 in multiple files: bumpver.toml, resources.yaml, and app.py. This change includes updating the current_version in bumpver.toml, the Docker image tag in the Kubernetes resources file, and the version attribute in the app.py file.

Wed Dec 27 11:22:28 2023 -0500

  • This commit changes the way user input is displayed in the chat history. Previously, a colon was prepended to user input. This has been removed to improve readability.

Wed Dec 27 11:21:00 2023 -0500

  • This commit refactors the way tools are created and used within the langchain-streamlit-demo. The 'Tool' class has been replaced by a 'tool' decorator, making the code more Pythonic and easier to read.
  • The 'research_assistant_tool', 'python_coder_tool', 'doc_chain_tool', and 'doc_question_tool' have all been updated to use this new decorator. This change also allows for the 'callbacks' parameter to be passed directly to the tool functions, improving flexibility.
  • The 'description' attribute of each tool has been moved inside the function as a docstring, providing context about what each tool does in a more standard Python way.

Wed Dec 27 10:54:14 2023 -0500

  • The 'strict' parameter in the 'check_mypy' function has been modified. Previously, the default value was set to 'True'. This commit changes the default value to 'False'. This change affects how mypy checks are run on a file.

Wed Dec 27 10:53:23 2023 -0500

  • Increased the timeout for subprocess commands from 3 seconds to 30 seconds to allow for longer processes. Added the '--no-cache' option to all 'ruff' commands to ensure that the most recent version of the file is being checked and formatted. Additionally, imported 'MessagesPlaceholder' from 'langchain.prompts' and added it to the 'ChatPromptTemplate' to include the chat history in the prompt.

Wed Dec 27 10:40:41 2023 -0500

  • The ConversationBufferMemory was imported from the langchain.memory module and added to the agent. This change will enable the agent to store the conversation history, allowing it to respond more accurately to user inputs based on previous interactions.

Wed Dec 27 04:30:24 2023 +0000

  • The 'current_version' field in 'bumpver.toml' was updated from 2.1.2 to 2.1.3, indicating a new version of the application.
  • In 'kubernetes/resources.yaml', the image version for 'langchain-streamlit-demo' container was updated to match the new version.
  • The 'version' variable in 'app.py' under 'langchain-streamlit-demo' was also updated to reflect the new version.

Tue Dec 26 23:28:58 2023 -0500

  • This commit introduces changes to the GitHub Actions workflow. Specifically, it adds a git configuration step to set the user email and name to 'github-actions[bot]'. This is important as it ensures that the bot is recognized as the author of any commits made during the workflow process.

Tue Dec 26 23:12:25 2023 -0500

  • This commit modifies the 'bumpver.yml' file in our GitHub Actions workflow. Specifically, it adds a 'choice' type to the 'bump' input. This change ensures that the user can only select from predefined options when triggering the version bump workflow, thus minimizing the chance of errors.

Tue Dec 26 23:11:03 2023 -0500

  • This commit introduces a new GitHub Actions workflow named 'Bump Version'.
  • The workflow can be manually triggered and requires an input to specify whether to bump the major, minor, or patch version of the project.
  • The job within the workflow runs on the latest Ubuntu, checks out the code, sets up Python 3.11, installs the 'bumpver' Python library, and then uses this library to bump the specified version.
  • The updated version is then committed and tagged, and the changes are pushed back to the repository.

Mon Dec 25 12:11:03 2023 +0000

  • This commit updates the versions of several packages in the requirements.txt file. The packages updated include: anthropic, black, duckduckgo-search, langchain, langsmith, mypy, openai, and pypdf. The purpose of these updates is to keep the project's dependencies up-to-date with the latest versions.

Tue Dec 19 16:18:20 2023 -0600

  • The commit enables the get_config(callbacks) within the doc_chain_tool and doc_question_tool functions. This allows the functions to use the specified config callbacks.
  • It also updates the description of the doc_question_tool to clarify its usage and warn users not to send anything other than a question as it already has context.

Tue Dec 19 16:43:48 2023 -0500

  • This commit updates the versions of multiple pre-commit hooks. The updated hooks include 'ruff-pre-commit' (from v0.0.291 to v0.1.8), 'pre-commit-hooks' (from v4.4.0 to v4.5.0), 'black' (from 23.9.1 to 23.12.0), 'mirrors-mypy' (from v1.5.1 to v1.7.1), and 'bandit' (from 1.7.5 to 1.7.6).
  • These updates ensure that the project is using the most recent and secure versions of these tools, which can help to catch more potential issues during the pre-commit phase.

Tue Dec 19 16:10:18 2023 -0500

  • The vcs.xml file, which was used for version control settings in the IDE, has been deleted. This indicates a change in the version control system or its configuration.
  • In the llm_resources.py file, the default agent type for the get_doc_agent function has been changed from STRUCTURED_CHAT_ZERO_SHOT_REACT_DESCRIPTION to CHAT_ZERO_SHOT_REACT_DESCRIPTION. This suggests a change in how the agent responds in chat scenarios.

Tue Dec 19 18:26:07 2023 +0000

  • The versions of the following packages were updated: anthropic (from 0.7.8 to 0.8.0), duckduckgo-search (from 4.0.0 to 4.1.0), langchain (from 0.0.350 to 0.0.351), and langsmith (from 0.0.71 to 0.0.72).

Tue Dec 19 12:12:02 2023 -0600

  • This commit introduces the 'document-agent' tool which uses the 'doc_chain_agent' to return a response based on the user's custom context. It is recommended to use this tool when the user's question is complex, as it attempts to break it down into simpler questions.
  • The 'user-document-chat' tool has been enhanced to return a response based on the user's custom context. It is advised to use this tool before conducting web research.
  • A new function 'get_doc_agent' has been added in the 'llm_resources.py' file. This function initializes an agent with the given tools and a language model. The agent assists a chatbot with answering questions about a document. It breaks up incoming questions into multiple parts, and uses the tools provided to answer smaller questions before answering the larger question.

Tue Dec 19 13:24:43 2023 -0500

  • Added a new group 'app' in the Dependabot configuration file to include all dependencies ('*'). This will group updates for all dependencies together.

Tue Dec 19 09:35:23 2023 -0500

  • This commit refactors the memory management in the Streamlit app and other resources. It replaces the 'AgentTokenBufferMemory' with 'ConversationBufferMemory' for a more efficient memory usage. The 'return_messages' flag is set to 'True' in the new memory management system.
  • The commit also disables the return of intermediate steps in both the Streamlit app and agent execution by setting 'return_intermediate_steps' to 'False'. This change can help to improve performance by reducing unnecessary computations.
  • Furthermore, the commit simplifies the 'python_coder.py' script by removing unnecessary imports and argument parsing related to 'black', 'ruff', and 'mypy'. It also removes the main execution block, indicating that this script may now be used as a module rather than a standalone script.
  • The changes in this commit aim to improve performance and maintainability of the code.

Mon Dec 18 11:02:13 2023 -0500

  • Bumped the current version of the application in the bumpver.toml file from 2.1.1 to 2.1.2.
  • Updated the version of the Docker image used in the Kubernetes resources.yaml file from 2.1.1 to 2.1.2.
  • Changed the version variable in the app.py file of the langchain-streamlit-demo application from 2.1.1 to 2.1.2.

Mon Dec 18 10:59:56 2023 -0500

  • In the misc.xml file, a new component 'PythonCompatibilityInspectionAdvertiser' was added to the project. This component is used for inspecting python compatibility.
  • In the python_coder.py file, the default value for the 'agent_type' argument in the 'get_agent' function was changed from 'OPENAI_FUNCTIONS' to 'CHAT_CONVERSATIONAL_REACT_DESCRIPTION'. This change affects the type of agent that is initialized by default when the 'get_agent' function is called.

Mon Dec 18 10:41:42 2023 -0500

  • The current version number in bumpver.toml, the image tag in kubernetes/resources.yaml, and the version variable in langchain-streamlit-demo/app.py have all been updated from 2.1.0 to 2.1.1.

Mon Dec 18 13:16:53 2023 +0000

  • This commit updates the version of the PyPDF package from 3.17.2 to 3.17.3 in the requirements.txt file.

Mon Dec 18 13:15:37 2023 +0000

  • The langsmith package has been updated from version 0.0.69 to 0.0.71 in the requirements.txt file.

Mon Dec 18 13:15:24 2023 +0000

  • The anthropic package in the requirements.txt file has been updated from version 0.7.7 to 0.7.8. No other packages were affected in this commit.

Mon Dec 18 13:13:17 2023 +0000

  • The OpenAI library version in requirements.txt has been updated from 1.3.8 to 1.5.0. This update may include new features, bug fixes, and performance improvements.

Mon Dec 18 12:13:48 2023 +0000

  • The langchain package was updated from version 0.0.348 to 0.0.350 in the requirements.txt file. This change was necessary to incorporate the latest features and bug fixes from the langchain package.

Wed Dec 13 17:57:20 2023 -0500

  • The version of the application has been updated from 2.0.1 to 2.1.0. This change is reflected in the bumpver.toml file, which tracks the current version of the application.
  • In addition, the Docker image referenced in the Kubernetes resource configuration file (resources.yaml) has been updated to match the new version.
  • Finally, the version number displayed on the application's Streamlit page (app.py) has also been updated to reflect the new version.

Wed Dec 13 17:54:48 2023 -0500

  • In this commit, a Python Coder Assistant was added to the application's tools. This assistant is capable of writing Python code given clear instructions and requirements. It was implemented by importing the 'get_agent' function from the newly created 'python_coder.py' file and adding the resulting 'python_coder_tool' to the 'TOOLS' list.
  • The 'python_coder.py' file contains the necessary functions and classes to initialize the Python Coder Assistant, check the code, and submit the code. It also ensures that the code conforms to the black, ruff, and strict mypy standards.
  • The 'requirements.txt' file was updated to include the new dependencies required by the Python Coder Assistant, namely 'black', 'mypy', and 'ruff'.

Wed Dec 13 18:16:18 2023 +0000

  • The certifi and requests packages were added to the requirements.txt file to avoid potential vulnerabilities. These packages were not directly required, but were pinned by Snyk for security reasons.

Wed Dec 13 13:09:22 2023 -0500

  • The commit enhances the descriptions of the 'web-research-assistant' and 'user-document-chat' tools. It also adds the 'llm-math' tool to the default tools list in the 'app.py' file of the 'langchain-streamlit-demo' project.
  • In the 'requirements.txt' file, the 'numexpr' package (version 2.8.8) has been added.

Wed Dec 13 10:35:50 2023 -0500

  • In this commit, the developer has added a line to load additional tools using the 'load_tools' function from the 'langchain.agents' module. This extends the functionality of the default tools available in the application.
  • Additionally, the developer has updated the description of the 'web-research-assistant' tool to provide more context on its usage and cost implications. The updated description advises users to use the assistant sparingly due to its relative expense and suggests using DuckDuckGo for quick facts instead.

Wed Dec 13 14:10:39 2023 +0000

  • This commit updates the version number across several files. Specifically, it modifies the current version in bumpver.toml, the image version in the Kubernetes resources.yaml, and the version variable in the langchain-streamlit-demo/app.py. All these changes reflect the version bump from 2.0.0 to 2.0.1.

Wed Dec 13 09:08:41 2023 -0500

  • This commit updates the chat history section of the Streamlit app. It adds a check to ensure that a message is only displayed if it has content and is of a recognized type ('ai', 'assistant', 'human', 'user'). This prevents empty or unhandled message types from being displayed, improving the user experience.

Tue Dec 12 17:23:25 2023 -0500

  • The version number in bumpver.toml, kubernetes resources.yaml, and app.py has been updated from 1.1.0 to 2.0.0. This includes updates to the current version in the bumpver configuration, the docker image version in the Kubernetes resources file, and the application version in the app.py file.

Tue Dec 12 17:03:20 2023 -0500

  • Added DuckDuckGoSearchRun and WikipediaQueryRun to the default tools. Updated the description of 'web-research-assistant' to mention quick facts usage of DuckDuckGo. Also, added these tools to the TOOLS list in the provider's condition.
  • Updated the DEFAULT_SYSTEM_PROMPT in defaults.py to emphasize a step-by-step approach.
  • Added 'wikipedia==1.4.0' to the requirements.txt file for using the Wikipedia API.

Tue Dec 12 16:03:57 2023 -0500

    1. Updated the pre-commit configuration file to reorder the hooks, replacing the 'mypy' hook with the 'black' hook and vice versa.
    1. Refactored the Streamlit application 'app.py' by adding a new import statement and restructuring the code for better readability and performance. This includes changes in the way the 'research_assistant_tool' and 'doc_chain_tool' are defined and used, and the addition of the 'get_config' function for creating a configuration dictionary.
    1. Updated the 'llm_resources.py' file to include 'callbacks' as an argument in the 'get_agent' function, and removed the 'create_retriever_tool' usage from the 'get_runnable' function.

Tue Dec 12 14:50:49 2023 -0500

  • This commit includes TODO comments in the app.py file of the langchain-streamlit-demo. These comments outline future development tasks related to the usage of agents in the OpenAI or Azure OpenAI, the usage of runnable, and the addition of these to tools.

Tue Dec 12 14:48:04 2023 -0500

  • Added a web research assistant that uses DuckDuckGo's search API to perform web searches and BeautifulSoup to scrape text from the resulting URLs. The assistant then generates a report based on the scraped information.
  • Updated the pre-commit configuration to add a dependency on 'types-requests'.
  • Refactored the 'get_runnable' function in 'llm_resources.py' to use the new 'get_agent' function, which creates an agent with a set of tools and a chat history.
  • Updated 'app.py' to use the new web research assistant, and refactored the code to use the new 'get_agent' function.
  • Updated the requirements file to include 'beautifulsoup4' and 'duckduckgo-search'.

Tue Dec 12 14:01:20 2023 -0500

  • This commit introduces an enhancement to the chat functionality in the LLMChain. It does so by incorporating the chat history into the get_runnable function. The commit also restructures the import statements in the llm_resources.py file and adds new imports necessary for the enhancement.
  • The get_runnable function now takes an additional parameter 'chat_history'. It creates a retriever tool and an OpenAIFunctionsAgent with a prompt that includes system messages and the chat history. An AgentTokenBufferMemory is also initialized with the chat history.
  • The agent and the tools are then executed using an AgentExecutor that returns the output of the conversation. This enhancement allows the chatbot to maintain a history of the conversation and use it to provide more context-aware responses.

Mon Dec 11 12:36:57 2023 -0500

  • The version number in bumpver.toml, kubernetes/resources.yaml, and langchain-streamlit-demo/app.py has been updated from 1.0.3 to 1.1.0.
  • In bumpver.toml, the current_version key's value is updated.
  • In kubernetes/resources.yaml, the image version of the langchain-streamlit-demo container is updated.
  • In langchain-streamlit-demo/app.py, the version variable is updated.

Mon Dec 11 12:31:16 2023 -0500

  • In this commit, the use of the BM25Retriever and its related dependencies were removed from the project. This included changes in the 'app.py' and 'llm_resources.py' files where the retriever was being used. The 'get_texts_and_retriever' function was removed from 'llm_resources.py' as it was no longer needed. Additionally, the 'rank_bm25' library was removed from the project's requirements in the 'requirements.txt' file.

Mon Dec 11 10:27:19 2023 -0600

  • In the app.py file, the import statement was updated to include the 'get_texts_and_multiretriever' function from the 'llm_resources' module. The function 'get_texts_and_retriever_cacheable_wrapper' was also updated to call 'get_texts_and_multiretriever' instead of 'get_texts_and_retriever'.
  • In the llm_resources.py file, the function 'get_texts_and_retriever2' was renamed to 'get_texts_and_multiretriever'.

Mon Dec 11 12:44:43 2023 +0000

  • The OpenAI package version in requirements.txt was updated from 1.3.7 to 1.3.8.

Mon Dec 11 12:44:36 2023 +0000

  • The pypdf package version in requirements.txt was updated from 3.17.1 to 3.17.2. This change doesn't affect any other dependencies.

Mon Dec 11 12:44:32 2023 +0000

  • The version of langchain in the requirements.txt file was updated from 0.0.345 to 0.0.348. No other changes were made.

Fri Dec 8 15:20:41 2023 -0600

  • In the langchain-streamlit-demo/llm_resources.py file, a new function called get_texts_and_retriever2 was added. This function processes uploaded file bytes and returns a list of documents and a BaseRetriever instance. It introduces new retriever classes MultiVectorRetriever and MultiQueryRetriever, and uses InMemoryStore for storage. Also, it generates unique identifiers for each text using the uuid library.
  • In the requirements.txt file, the version of the langchain package was updated from 0.0.345 to 0.0.346.

Thu Dec 7 11:00:31 2023 -0500

  • This commit modifies the 'get_texts_and_retriever' function in the 'llm_resources.py' file.
  • If 'use_azure' is True and 'azure_kwargs' is provided, the 'azure_endpoint' is now set with the value from 'openai_api_base'.
  • This update ensures that the correct Azure endpoint is used when creating AzureOpenAIEmbeddings.

Thu Dec 7 10:25:07 2023 -0500

  • Updated the version number in bumpver.toml, the Docker image version in the Kubernetes resources.yaml, and the application version in the app.py file of the langchain-streamlit-demo.

Thu Dec 7 10:21:30 2023 -0500

  • Changed the variable name 'openai_api_base' to 'azure_endpoint' in the AzureChatOpenAI constructor for clarity and consistency.

Mon Dec 4 11:27:10 2023 -0500

  • The version number has been updated in the following files: bumpver.toml (the project's version control file), kubernetes/resources.yaml (the Kubernetes resources configuration file), and langchain-streamlit-demo/app.py (the application's main Python file).
  • In bumpver.toml, the current_version variable has been updated to 1.0.2.
  • In kubernetes/resources.yaml, the Docker image version has been updated to 1.0.2.
  • In langchain-streamlit-demo/app.py, the __version__ variable has been updated to 1.0.2.

Mon Dec 4 11:11:37 2023 -0500

  • This commit updates the versions of several packages in the requirements.txt file. The updated packages include 'langchain', 'langsmith', 'openai', 'streamlit', and 'tiktoken'.
  • Such updates are necessary to keep the software up-to-date with the latest improvements, bug fixes, and security patches in the packages that it depends on.

Thu Nov 30 15:19:39 2023 -0500

  • The version number in bumpver.toml, the Docker image tag in kubernetes/resources.yaml and the version in langchain-streamlit-demo/app.py have been updated from 1.0.0 to 1.0.1.

Thu Nov 30 15:12:53 2023 -0500

  • This commit includes two main changes. First, the error handling in 'app.py' was refactored to correct the namespace for 'openai.AuthenticationError'.
  • Second, in 'llm_resources.py', the code was updated to include support for 'AzureOpenAIEmbeddings' in addition to the existing 'OpenAIEmbeddings'. This allows the application to use either OpenAI's standard embeddings or Azure's version, depending on the provided configuration.

Wed Nov 29 16:05:50 2023 -0500

  • Updated the current version in bumpver.toml from 0.3.0 to 1.0.0.
  • Modified the Docker image version in kubernetes/resources.yaml from joshuasundance/langchain-streamlit-demo:0.3.0 to joshuasundance/langchain-streamlit-demo:1.0.0.
  • Changed the version variable in langchain-streamlit-demo/app.py from 0.3.0 to 1.0.0.

Wed Nov 29 16:01:38 2023 -0500

    1. In the 'defaults.py' file, the list of models was updated. New models were added and existing model names were updated.
    1. In the 'llm_resources.py' file, a minor code formatting change was made.
    1. In the 'requirements.txt' file, the versions of several libraries were updated, including 'anthropic', 'langchain', 'langsmith', and 'openai'.

Mon Nov 27 16:46:11 2023 -0500

  • The version number has been updated from 0.2.0 to 0.3.0 in multiple files. This includes the bumpver.toml, which controls the project versioning, the Kubernetes resources.yaml, which specifies the Docker image version to use, and the main app.py file, which includes a version number for display in the web app.

Mon Nov 27 14:47:58 2023 -0600

  • Replaced the @st.cache_data decorator with @st.cache_resource in app.py for the get_texts_and_retriever_cacheable_wrapper function. This change might be due to an update in the library or to utilize a more suitable caching method.
  • In llm_resources.py, removed an unnecessary line break and added a space for better code readability.

Mon Nov 27 12:36:16 2023 +0000

  • The OpenAI library version in the project's requirements has been updated from 0.28.1 to 1.3.5. This update may include new features, bug fixes, or performance improvements from the library.

Mon Nov 27 12:36:12 2023 +0000

  • The langsmith package version in requirements.txt was updated from 0.0.63 to 0.0.66.

Mon Nov 27 12:36:07 2023 +0000

  • The langchain package version has been updated from 0.0.334 to 0.0.340 in the requirements.txt file. This update may include new features, bug fixes, or performance improvements.

Mon Nov 27 12:36:01 2023 +0000

  • The anthropic package version in requirements.txt was updated from 0.5.0 to 0.7.4. No other dependencies were changed.

Mon Nov 20 12:35:08 2023 +0000

  • The pypdf library was updated from version 3.17.0 to 3.17.1 in the requirements.txt file.

Fri Nov 10 21:30:40 2023 -0500

  • The version number in bumpver.toml has been updated from 0.1.2 to 0.2.0.
  • In the Kubernetes resources.yaml file, the image version of langchain-streamlit-demo has been updated to reflect the new version.
  • The version variable in the app.py file of the langchain-streamlit-demo project has also been updated to 0.2.0.

Sat Nov 11 02:07:34 2023 +0000

  • The pillow library version was updated from 10.0.0 to 10.0.1 in the requirements.txt file. This change was made to avoid a vulnerability.

Fri Nov 10 21:04:08 2023 -0500

  • Updated the versions of the 'langchain', 'langsmith', and 'streamlit' packages in the requirements.txt file.
  • Added 'pillow' and 'pyarrow' packages to the requirements.txt file.
  • These changes ensure that the project is using the latest and most secure versions of the dependencies.

Wed Nov 1 16:03:52 2023 -0400

  • Updated the application version in bumpver.toml, resources.yaml, and app.py. This includes the version used for the Docker image in the Kubernetes deployment configuration.

Wed Nov 1 15:51:00 2023 -0400

  • Changed the default value of the 'Document Chat' checkbox to be true if a file is uploaded and false if not.
  • Removed the condition that disables the 'Chain Type' dropdown when 'Document Chat' is not selected.
  • Eliminated the automatic 'Hello! I'm a helpful AI chatbot. Ask me a question!' message when the chat history is empty.

Wed Nov 1 13:58:11 2023 -0400

  • This commit represents a version bump from 0.1.0 to 0.1.1. Changes were made in the bumpver.toml file to update the current version. The Docker image reference in the Kubernetes resources.yaml file was also updated to reflect the new version. Lastly, the version variable in the langchain-streamlit-demo/app.py file was updated.

Wed Nov 1 13:55:35 2023 -0400

  • Updated the exception handling in app.py to include LangSmithNotFoundError along with the existing LangSmithError. This change improves the robustness of the error handling mechanism.

Mon Oct 30 12:03:02 2023 -0400

  • The project's version number has been updated from 0.0.16 to 0.1.0 in the bumpver.toml file, kubernetes resource file, and the main application file.

Mon Oct 30 11:31:43 2023 -0400

  • In the README.md file, a new endpoint mistralai/Mistral-7B-Instruct-v0.1 was added under the section of Anyscale Endpoints.
  • In the defaults.py file, the same endpoint was added to the MODEL_DICT dictionary under the key-value pair 'mistralai/Mistral-7B-Instruct-v0.1': 'Anyscale Endpoints'.
  • The SUPPORTED_MODELS list was updated accordingly to include this new endpoint.

Mon Oct 30 12:50:15 2023 +0000

  • The langsmith package version in requirements.txt has been updated from 0.0.49 to 0.0.53. This update might include bug fixes, new features, or improvements.

Mon Oct 30 12:49:54 2023 +0000

  • The langchain package version in requirements.txt has been updated from 0.0.320 to 0.0.325. This update might include bug fixes, security patches or new features.

Mon Oct 23 12:57:22 2023 -0400

  • Updated the current version in bumpver.toml from 0.0.15 to 0.0.16.
  • In the Kubernetes resources.yaml, updated the image version for langchain-streamlit-demo from 0.0.15 to 0.0.16.
  • In langchain-streamlit-demo/app.py, updated the version variable from 0.0.15 to 0.0.16.

Mon Oct 23 12:49:36 2023 -0400

  • Updated the versions of 'anthropic', 'langchain', and 'langsmith' in the requirements file. 'anthropic' is updated from version 0.3.11 to 0.5.0, 'langchain' from 0.0.315 to 0.0.320, and 'langsmith' from 0.0.44 to 0.0.49.

Fri Oct 20 22:54:23 2023 +0000

  • The 'validators' package was added to the requirements.txt file. This package is not directly required by the project, but it has been pinned by Snyk to version 0.21.0 or newer to avoid a potential vulnerability.

Thu Oct 19 15:19:10 2023 -0400

  • Replaced the Docker badge with a 'Push to Docker Hub' GitHub Actions workflow badge.
  • Added a 'Push to HuggingFace Space' GitHub Actions workflow badge.
  • Added an 'Update AI Changelog on Push to Main' GitHub Actions workflow badge.

Thu Oct 19 11:08:36 2023 -0400

  • Updated README.md to include Azure OpenAI Service in the list of services and endpoints. A placeholder for configurable endpoints under Azure OpenAI Service has also been added.

Thu Oct 19 10:49:24 2023 -0400

  • The commit introduces two changes:
    1. A new Black component is added to the .idea/misc.xml file. This suggests that the Black Python code formatter has been configured for the project.
    1. The README.md file has been updated to include new badges for code maintainability, issues, technical debt, and known vulnerabilities. The order of the existing badges has also been rearranged.

Mon Oct 16 14:09:34 2023 -0400

  • The version number has been increased from 0.0.14 to 0.0.15. This change has been reflected in the bumpver.toml file, the Kubernetes resources file, and the langchain-streamlit-demo app.py file. The Docker image used in the Kubernetes resources file has also been updated to reflect this new version number.

Mon Oct 16 14:02:49 2023 -0400

  • Updated the version of langchain from 0.0.308 to 0.0.315.
  • Updated the version of langsmith from 0.0.43 to 0.0.44.
  • Updated the version of pypdf from 3.16.2 to 3.16.4.

Fri Oct 6 21:19:03 2023 -0400

  • In the Kubernetes configuration file 'resources.yaml', the environment variable name 'SHOW_LANGCHAIN_OPTIONS' was replaced with 'SHOW_LANGSMITH_OPTIONS'. This change reflects an update in the naming convention or the service being used.

Fri Oct 6 20:59:11 2023 -0400

  • Updated the version of the application in bumpver.toml, kubernetes/resources.yaml, and langchain-streamlit-demo/app.py from 0.0.13 to 0.0.14.

Fri Oct 6 20:47:25 2023 -0400

  • This commit refactors the app.py file of the langchain-streamlit-demo to use Streamlit's session state for storing global variables. This includes API keys, project names, and Azure configurations. A new function 'azure_state_or_default' has been introduced to update the session state for Azure configurations. This change allows for better state management and persistence across multiple sessions.

Fri Oct 6 18:40:55 2023 -0400

  • An input field for the Azure OpenAI EMB deployment name has been added to the sidebar of the Streamlit application. This allows users to specify the name of their Azure OpenAI EMB deployment.

Fri Oct 6 18:35:40 2023 -0400

  • This commit introduces the option to use Azure OpenAI for embeddings in the langchain-streamlit-demo app. It adds the necessary environment variables and updates the code to handle the new option. The changes include:
    1. Addition of the AZURE_OPENAI_EMB_DEPLOYMENT_NAME environment variable in the Kubernetes resources.
    1. Update of the app.py file to handle the Azure OpenAI option. If Azure embeddings are available, a toggle is displayed to the user to switch between Azure and OpenAI directly.
    1. Update of the get_texts_and_retriever function in llm_resources.py to accept additional arguments for azure_kwargs and use_azure.
    1. Update of the defaults.py file to include the AZURE_OPENAI_EMB_DEPLOYMENT_NAME in the list of Azure environment variables.

Fri Oct 6 18:15:24 2023 -0400

    1. Updated kubernetes resource configuration to add environment variables for SHOW_LANGCHAIN_OPTIONS and SHOW_AZURE_OPTIONS.
    1. Refactored the app.py script to import default values from a single source, improving readability and maintainability of the code.
    1. Updated defaults.py to define a namedtuple for default values, which is imported in other scripts.
    1. Modified llm_resources.py to accommodate changes in the import of default values.

Fri Oct 6 16:26:26 2023 -0400

  • The commit moves a significant amount of logic from 'app.py' to a new module named 'llm_resources.py'. This includes the methods for getting the runnable instance, the language model, and the texts and retriever. The aim of this refactoring is to improve code organization, readability, and maintainability.

Fri Oct 6 15:59:43 2023 -0400

  • Moved model constants and environment variables into a separate 'defaults.py' file for better code organization and readability.
  • Updated 'app.py' to import these constants and variables from the new 'defaults.py' file.
  • Modified '.idea/langchain-streamlit-demo.iml' to include a new source folder, improving the project's structure.

Fri Oct 6 14:15:57 2023 -0400

  • In the Kubernetes resource configuration file, several environment variables related to Azure OpenAI have been added. These include the base URL, API version, deployment name, API key, and model version. The values for these variables are fetched from the 'langchain-streamlit-demo-secret' secret.

Fri Oct 6 14:03:44 2023 -0400

  • Updated the current_version in bumpver.toml from 0.0.12 to 0.0.13.
  • Updated the image tag in the Kubernetes resources.yaml file to use the new version 0.0.13.
  • Updated the version variable in the app.py file to reflect the new version 0.0.13.

Fri Oct 6 13:58:33 2023 -0400

  • Refactored the application code in 'langchain-streamlit-demo/app.py' to improve clarity and organization. Changes include renaming 'AZURE' to 'Azure OpenAI' in the 'MODEL_DICT' and modifying related conditional checks, renaming 'Advanced Options' to 'Advanced Settings', and restructuring 'LangSmith Options' into its own section within the sidebar.
  • Updated the 'streamlit' version from '1.27.1' to '1.27.2' in 'requirements.txt'.

Fri Oct 6 13:50:43 2023 -0400

  • The commit introduces Azure Chat models into the Streamlit application. It includes the addition of the AzureChatOpenAI model in the import statement and the MODEL_DICT. Environment variables for Azure are also defined and retrieved from the system environment. User interface elements for Azure options have been added within an expandable section in the sidebar. Finally, an instance of AzureChatOpenAI is created if all Azure details are available and the selected provider is Azure.

Fri Oct 6 13:02:43 2023 -0400

  • The langsmith package version was updated from 0.0.41 to 0.0.43 in the requirements.txt file.

Thu Oct 5 13:54:14 2023 +0000

  • The langchain package version in requirements.txt has been upgraded from 0.0.305 to 0.0.308. This update may include bug fixes, feature enhancements or performance improvements.

Mon Oct 2 09:13:48 2023 -0400

  • The application version has been updated from 0.0.11 to 0.0.12 in three different files. These include bumpver.toml, resources.yaml under kubernetes, and app.py under langchain-streamlit-demo. In bumpver.toml, the current_version value is updated. In resources.yaml, the image version for the container 'langchain-streamlit-demo' is updated. In app.py, the version variable is updated to reflect the new version.

Mon Oct 2 09:10:05 2023 -0400

  • The langchain and langsmith dependencies have been updated to versions 0.0.305 and 0.0.41 respectively.
  • The openai dependency has been updated to version 0.28.1.
  • The previous comment about rolling back the langchain update to avoid a bug has been removed, implying the bug has been fixed in the new version.

Sat Sep 30 01:31:32 2023 -0400

  • Updated the current_version in bumpver.toml from 0.0.10 to 0.0.11.
  • In the Kubernetes resources.yaml, updated the image version of langchain-streamlit-demo from 0.0.10 to 0.0.11.
  • In the langchain-streamlit-demo/app.py, updated the version from 0.0.10 to 0.0.11.

Sat Sep 30 01:29:08 2023 -0400

  • This commit includes changes to the README.md file. The authorship of the README has been clarified to indicate that it was originally written by Claude 2. The Features section has been updated to include a new model from Anyscale Endpoints, and to mention the addition of various forms of document chat. The Code Overview section was removed. A minor formatting change was made to the Docker run command. The Docker Compose instructions were simplified by removing a redundant command.

Sat Sep 30 01:24:47 2023 -0400

  • This commit includes changes to improve the user interface labels for better readability. The labels 'chunk_size' and 'chunk_overlap' have been changed to 'Number of Tokens per Chunk' and 'Chunk Overlap' respectively.
  • Additionally, the code for handling the full response and the initialization of the st.session_state.chain has been refactored for better readability and maintainability. The code now clearly distinguishes between the cases when use_document_chat is true or false, and the initialization of st.session_state.chain is more streamlined.

Sat Sep 30 01:10:43 2023 -0400

  • In app.py, removed the StreamlitCallbackHandler import and simplified the logic for handling chat inputs. Removed the document chat condition in the if statement, and directly implemented the regular chat functionality. Simplified the condition for using document chat, and refactored the way rag_runnable is retrieved based on the document chat chain type.
  • In qagen.py, removed the unnecessary import of reduce from functools and the combine_qa_pair_lists function. Simplified the get_rag_qa_gen_chain function by directly converting the parsed_output to a string.

Fri Sep 29 23:12:56 2023 -0400

  • This commit includes changes in the 'app.py' and 'qagen.py' files. In 'app.py', the code has been refactored to improve readability and efficiency. The configuration dictionary has been moved outside the if-conditions to avoid redundancy. Also, the condition checking for 'Summarization' and 'Q&A Generation' has been combined to reduce nested if-statements.
  • In the 'qagen.py' file, two new methods 'to_str' have been added to the 'QuestionAnswerPair' and 'QuestionAnswerPairList' classes. These methods convert the question and answer pairs into a string format. This change has moved the responsibility of string formatting from 'app.py' to 'qagen.py', making the code more modular and easier to maintain.

Fri Sep 29 22:43:24 2023 -0400

  • Replaced the existing get_summarization_chain function with get_rag_summarization_chain in the Streamlit app.
  • The get_rag_summarization_chain function now takes in the prompt, retriever and the language model as parameters.
  • Refactored the way the summarization chain is invoked and the full response is generated.
  • Updated the get_rag_summarization_chain function in the summarize module to return a RunnableSequence.

Fri Sep 29 18:38:23 2023 -0400

  • Replaced hardcoded 'test' value for model_name parameter with a variable named 'model'. This change allows the model name to be dynamically set when the ChatOpenAI class is instantiated.

Fri Sep 29 18:38:01 2023 -0400

  • Updated the instantiation of ChatOpenAI, ChatAnthropic, and ChatAnyscale classes by swapping the model and model_name parameters to match their class definitions.
  • Removed the commented out get_qa_gen_chain function in qagen.py.
  • Removed commented out code related to raw_results and results in app.py, simplifying the logic.

Fri Sep 29 18:31:46 2023 -0400

  • Removed the 'combine_qa_pair_lists' function from the data processing pipeline in 'app.py'.
  • Directly accessed 'QuestionAnswerPairs' from 'raw_results' instead of using 'combine_qa_pair_lists' function.
  • Commented out the print statement for 'raw_results'.

Fri Sep 29 18:19:58 2023 -0400

  • This commit includes a change in the variable name from 'input' to 'context' in both app.py and qagen.py files. The change was made in the section where the document page content is being processed. This change is likely aimed at improving code readability and consistency.

Fri Sep 29 18:16:51 2023 -0400

  • This commit introduces a slider in the UI allowing the user to select the number of chunks that will be used for context in the retriever. The 'get_texts_and_retriever' function was updated to include a new parameter 'k' that defaults to the newly introduced constant 'DEFAULT_RETRIEVER_K'. This 'k' value is then used in the creation of both the 'bm25_retriever' and 'faiss_retriever'.

Fri Sep 29 18:13:30 2023 -0400

  • Replaced the get_qa_gen_chain method with get_rag_qa_gen_chain in app.py and qagen.py. This change updates the Q&A Generation method used in the Document Chat feature.
  • Changed the way the Q&A Generation method is invoked. Instead of using the batch method, we now use the invoke method. This change is expected to improve the efficiency of the Document Chat feature.

Fri Sep 29 18:04:08 2023 -0400

  • Added a new function 'get_rag_qa_gen_chain' in 'qagen.py' to set up a RAG-based Q&A generation chain using a retriever and a language model.
  • Adjusted the 'app.py' to include a commented-out option to use the new RAG-based Q&A generation chain.

Fri Sep 29 13:17:34 2023 -0400

  • Updated the version number in the bumpver.toml, kubernetes/resources.yaml, and langchain-streamlit-demo/app.py files. The new version is 0.0.10.

Fri Sep 29 11:17:45 2023 -0400

  • In the 'langchain-streamlit-demo/app.py' file, the logic to retrieve texts has been updated. The FAISS retriever has been replaced with an ensemble retriever that uses both the BM25 and FAISS retrievers. The BM25 retriever's 'k' parameter has been set to 4, and the FAISS retriever has been updated to use a vector store.
  • In the 'langchain-streamlit-demo/qagen.py' file, the field validator for the 'question' field in the 'QuestionAnswerPair' class has been removed. This means that questions no longer need to end with a question mark to be valid.
  • The 'requirements.txt' file has been updated to include the 'rank_bm25==0.2.2' package, and the 'streamlit' package has been updated to version '1.27.1'.

Thu Sep 28 20:55:25 2023 -0400

  • The refine_template string in the summarize.py file has been updated. A newline character has been added after the 'User input: {query}' part of the string for better readability.

Thu Sep 28 20:41:33 2023 -0400

  • The version number in the bumpver.toml file has been updated from 0.0.8 to 0.0.9.
  • The Docker image version for the langchain-streamlit-demo app in the Kubernetes resources.yaml file has been updated from 0.0.8 to 0.0.9.
  • The version variable in the app.py file of the langchain-streamlit-demo app has been updated from 0.0.8 to 0.0.9.

Thu Sep 28 20:39:28 2023 -0400

  • This commit adjusts the formatting of the Q&A response in the langchain-streamlit-demo app. It adds an extra newline between the question and answer parts, and another newline between each Q&A pair for better readability.

Thu Sep 28 20:36:46 2023 -0400

  • The application's version number has been updated from 0.0.7 to 0.0.8 in the following files: bumpver.toml, resources.yaml, and app.py.
  • In bumpver.toml, the current_version field was updated to reflect the new version.
  • In resources.yaml, the image tag for the langchain-streamlit-demo container was updated to use the new version.
  • In app.py, the version variable was updated to the new version.

Thu Sep 28 20:33:17 2023 -0400

  • The variable 'output_text' was renamed to 'full_response' in the Streamlit application to better reflect its purpose. This change improves code readability and understanding.

Thu Sep 28 19:56:12 2023 -0400

  • Updated the version number in bumpver.toml, resources.yaml, and app.py.
  • This commit includes changes to the version number in the bumpver configuration, the Docker image tag in the Kubernetes resources, and the version variable in the app.py file.

Thu Sep 28 19:53:59 2023 -0400

  • This commit introduces a summarization feature to the Streamlit application. It does so by creating a new 'summarize.py' file and integrating it into the 'app.py' file.
  • In 'app.py', the 'LLMChain' import has been moved and the 'get_summarization_chain' function has been imported from 'summarize.py'.
  • A new option 'Summarization' has been added to the 'Document Chat Chain Type' dropdown menu.
  • When 'Summarization' is selected from the dropdown, the 'get_summarization_chain' function is called to create a summarization chain.
  • The summarization chain is then used to generate a summary of the document, which is displayed in the Streamlit app.
  • In the 'summarize.py' file, a new summarization chain is defined using the 'load_summarize_chain' function from the 'langchain.chains.summarize' module. The chain uses two custom prompt templates for summarizing and refining the document text.

Thu Sep 28 16:55:16 2023 -0400

  • This commit includes enhancements to the document chat functionality in the langchain-streamlit-demo application. It introduces a new document chat chain type 'Q&A Generation' and updates the provider variable to be stored in the session state. The commit also adds a new file 'qagen.py' which contains code for generating question and answer pairs from a given text.

Thu Sep 28 14:42:31 2023 -0400

  • The version number in the 'bumpver.toml', 'kubernetes/resources.yaml', and 'langchain-streamlit-demo/app.py' files has been updated from 0.0.5 to 0.0.6. This indicates a new iteration of the software with potential minor changes or bug fixes.

Wed Sep 27 20:58:22 2023 -0400

  • The ruff-pre-commit version in the pre-commit configuration file was updated from v0.0.290 to v0.0.291.

Wed Sep 27 20:57:54 2023 -0400

  • The pre-commit configuration has been updated to exclude the AI_CHANGELOG.md file. Previously, the configuration was set to exclude .idea and docs directories. The repository and hook details remain unchanged.

Wed Sep 27 20:56:47 2023 -0400

  • In app.py, the chain_type_help dictionary was refactored to directly generate a string with the help links for each chain_type_name, removing the need for a separate dictionary.
  • In AI_CHANGELOG.md, a newline was added at the end of the file and entries were made for the addition of numpy and tornado to requirements.txt and the update of the token used for code checkout in the GitHub workflow.

Wed Sep 27 17:05:25 2023 +0000

  • This commit modifies the triggering conditions for the GitHub Action workflow that pushes updates to HuggingFace Space. Previously, the workflow was triggered on each push with any tag. Now, it is triggered upon completion of the 'Update AI Changelog on Push to Main' workflow on the 'main' branch.
  • Additionally, the 'push-to-huggingface' job has been updated to depend on the completion of the 'update-changelog' job.

Wed Sep 27 10:56:40 2023 -0400

  • The version number in the bumpver configuration file has been updated from 0.0.2 to 0.0.5.
  • The image version in the Kubernetes resources file has been updated to match the new version number.
  • The version variable in the langchain-streamlit-demo app has been updated to reflect the new version number.

Wed Sep 27 10:46:57 2023 -0400

  • The page title of the Streamlit application was previously just the name of the application. The change now includes the version number in the title, which will make it easier to track and verify the version of the application in use.

Wed Sep 27 10:46:24 2023 -0400

  • The commit introduces a new model 'codellama/CodeLlama-34b-Instruct-hf' into the MODEL_DICT dictionary. This update extends the list of models supported by the 'Anyscale Endpoints'.

Wed Sep 27 00:03:38 2023 -0400

  • Updated the version number in bumpver.toml, Kubernetes resources.yaml, and the app.py file of the langchain-streamlit-demo application. The new version is 0.0.2.

Wed Sep 27 00:00:28 2023 -0400

  • The version number in langchain-streamlit-demo/app.py was updated from 0.0.0 to 0.0.1.

Tue Sep 26 23:59:47 2023 -0400

  • In the 'bumpver.toml' file, the image version placeholder in 'kubernetes/resources.yaml' was corrected by removing the unnecessary quotes.
  • In the 'kubernetes/resources.yaml' file, the image version for 'langchain-streamlit-demo' was updated from 'latest' to '0.0.1'.

Tue Sep 26 23:58:24 2023 -0400

  • Introduced semantic versioning using bumpver. The current version is now tracked in a new file 'bumpver.toml' and also reflected in 'app.py' and the Docker image tag in 'kubernetes/resources.yaml'.
  • Modified GitHub workflows 'docker-hub.yml' and 'hf-space.yml' to trigger on new tags instead of pushes to the main branch. The Docker image tag is now the release version instead of the git SHA.
  • Removed the step to store the git SHA in 'docker-hub.yml'.
  • No functional changes were made to 'langchain-streamlit-demo/app.py' or 'kubernetes/resources.yaml'. The imagePullPolicy remains as 'Always'.

Tue Sep 26 23:14:05 2023 -0400

  • Rolled back langchain package from version 0.0.301 to 0.0.300 to avoid a bug in langchain's chatanthropic.
  • Pinned numpy to version 1.22.2 as suggested by Snyk to avoid a vulnerability.
  • Reordered the packages for better readability.

Tue Sep 26 12:56:59 2023 +0000

  • The numpy and tornado packages were added to the requirements.txt file. These packages are not directly required by our application but were added to avoid potential vulnerabilities as suggested by Snyk.

Tue Sep 26 08:56:55 2023 -0400

  • In the GitHub Actions workflow file 'ai_changelog.yml', the personal access token used for checking out code has been updated. The token has been changed from 'PAT' to 'WORKFLOW_GIT_ACCESS_TOKEN'.