-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
60 additions
and
58 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 = "chainfury" | ||
version = "1.6.3" | ||
version = "1.6.4" | ||
description = "ChainFury is a powerful tool that simplifies the creation and management of chains of prompts, making it easier to build complex chat applications using LLMs." | ||
authors = ["NimbleBox Engineering <[email protected]>"] | ||
license = "Apache 2.0" | ||
|
@@ -16,6 +16,7 @@ pydantic = "^1.10.7" | |
requests = "^2.31.0" | ||
python-dotenv = "1.0.0" | ||
urllib3 = ">=1.26.18" | ||
"cryptography" = ">=41.0.6" | ||
stability-sdk = { version = "0.8.3", optional = true } | ||
qdrant-client = { version = "1.5.4", optional = true } | ||
boto3 = { version = "1.29.6", optional = true } | ||
|
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 = "chainfury_server" | ||
version = "2.0.1" | ||
version = "2.0.2" | ||
description = "ChainFury Server is the open source server for running ChainFury Engine!" | ||
authors = ["NimbleBox Engineering <[email protected]>"] | ||
license = "Apache 2.0" | ||
|
@@ -21,6 +21,7 @@ SQLAlchemy = "1.4.47" | |
uvicorn = "0.20.0" | ||
PyMySQL = "1.0.3" | ||
urllib3 = ">=1.26.18" | ||
"cryptography" = ">=41.0.6" | ||
|
||
[tool.poetry.scripts] | ||
chainfury_server = "chainfury_server.server:main" | ||
|