langchain-streamlit-demo / AI_CHANGELOG.md
joshuasundance-swca
Update AI Changelog
b3a0f4e
|
raw
history blame
6.43 kB

AI CHANGELOG

Updated ruff-pre-commit version

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.

Updated file exclusions in pre-commit config

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.

Refactored chain_type_help in app.py and updated AI_CHANGELOG.md

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.

Updated GitHub Action to Push to HuggingFace Space

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.

Updated version number from 0.0.2 to 0.0.5

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.

Updated page title to include 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.

Added 'codellama/CodeLlama-34b-Instruct-hf' to Model Dictionary

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'.

Bumped version from 0.0.1 to 0.0.2

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.

Updated app version

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.

Updated image version in Kubernetes resources and bumpver file

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'.

Implement versioning and modify GitHub workflows

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'.

Updated requirements.txt for better package management

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.

Added numpy and tornado to requirements.txt to avoid vulnerabilities

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.

Updated token used for code checkout in GitHub workflow

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'.