From 66ab6bcc32d01b52cacc38ec3ef363ecba881438 Mon Sep 17 00:00:00 2001 From: NineOceans <44770303+LyuLumos@users.noreply.github.com> Date: Sun, 18 Feb 2024 14:50:47 +0000 Subject: [PATCH] Release v0.1.10 --- .gitignore | 1 + README.md | 6 ++++++ pyproject.toml | 5 ++++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c61426d..bfe9ed6 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ build/ **/__pycache__ info.sh tests/test.py +tests/debug/* claude.sh *.txt debug/ \ No newline at end of file diff --git a/README.md b/README.md index d0e5b0d..e132c30 100644 --- a/README.md +++ b/README.md @@ -135,4 +135,10 @@ Please execute it or not at your own discretion. I am not responsible for the co - Refactor: Change the name of environment variable from `openai_key` to `tax_key`. And some options are also changed. Please check the help message for more details. - Fix: Fix the bug of `--code` option when generating code to file. +### 0.1.10 + +- Feat: Add support for Google Gemini Pro for single chat. +- Feat: Add support for Google Gemini Pro Vision (Beta feature). +- Feat: Add support for stream mode of OpenAI. + \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 0e32389..c2c694a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "terminal-agent-x" -version = "0.1.9" +version = "0.1.10" authors = [ { name="LyuLumos", email="lyujiuyang0@gmail.com" }, ] @@ -23,6 +23,9 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ] +dependencies = [ + 'psutil' +] [project.scripts] tax = "terminal_agent_x.tax:main"