Skip to content

Commit

Permalink
Tie dependencies to specific versions in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonWehrhahn committed Sep 12, 2024
1 parent 1f531b7 commit 742b6ed
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions modules/modeling/module_modeling_llm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ license = "MIT"
[tool.poetry.dependencies]
python = "3.11.*"
athena = { git = "https://github.com/ls1intum/Athena.git", rev = "ccd00cf8346e76738a66e7f4cf04c84aa4cb4378", subdirectory = "athena"}
openai = "^1.42.0"
langchain = "^0.2.15"
python-dotenv = "^1.0.0"
nltk = "^3.8.1"
gitpython = "^3.1.41"
replicate = "^0.11.0"
tiktoken = "^0.7.0"
langsmith = "^0.1.106"
langchain-openai = "^0.1.23"
openai = "1.42.0"
langchain = "0.2.15"
python-dotenv = "1.0.0"
nltk = "3.8.1"
gitpython = "3.1.41"
replicate = "0.11.0"
tiktoken = "0.7.0"
langsmith = "0.1.106"
langchain-openai = "0.1.23"

[tool.poetry.group.dev.dependencies]
pydantic = "1.10.17"
prospector = "^1.10.2"
types-requests = "^2.31.0.8"
prospector = "1.10.2"
types-requests = "2.31.0.8"

[tool.poetry.scripts]
module = "athena:run_module"
Expand Down

0 comments on commit 742b6ed

Please sign in to comment.