-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use OpenAI package `v1.30.1` or higher * Include the v1.1.7 patch * Refactoring to add/use _disabled attribute on tools --------- Co-authored-by: Matthew Printz <[email protected]>
- Loading branch information
1 parent
f21145a
commit fb197fd
Showing
4 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "archytas" | ||
version = "1.1.6" | ||
version = "1.1.7" | ||
description = "A library for pairing LLM agents with tools so they perform open ended tasks" | ||
authors = ["David Andrew Samson <[email protected]>", "Matthew Printz <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -15,7 +15,7 @@ chat-repl = "archytas.repl:start_repl" | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
openai = "^1.3.9" | ||
openai = "^1.30.1" | ||
tenacity = "^8.2.2" | ||
rich = "^13.3.4" | ||
docstring-parser = "^0.15" | ||
|