2023-05-26 01:15:30 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "talk-codebase"
|
2023-11-06 11:36:30 +00:00
|
|
|
version = "0.1.50"
|
2023-05-26 01:15:30 +00:00
|
|
|
description = "talk-codebase is a powerful tool for querying and analyzing codebases."
|
|
|
|
authors = ["Saryev Rustam <rustam1997@gmail.com>"]
|
|
|
|
readme = "README.md"
|
2023-05-27 02:37:31 +00:00
|
|
|
packages = [{ include = "talk_codebase" }]
|
2023-05-26 01:15:30 +00:00
|
|
|
keywords = ["chatgpt", "openai", "cli"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-06-14 10:58:22 +00:00
|
|
|
python = ">=3.8.1,<4.0"
|
2023-05-26 01:15:30 +00:00
|
|
|
fire = "^0.5.0"
|
|
|
|
openai = "^0.27.7"
|
|
|
|
tiktoken = "^0.4.0"
|
|
|
|
faiss-cpu = "^1.7.4"
|
2023-05-26 18:38:24 +00:00
|
|
|
halo = "^0.0.31"
|
2023-10-18 02:21:51 +00:00
|
|
|
urllib3 = "1.26.18"
|
2023-05-27 01:13:34 +00:00
|
|
|
gitpython = "^3.1.31"
|
2023-05-27 14:13:39 +00:00
|
|
|
questionary = "^1.10.0"
|
2023-05-29 21:48:41 +00:00
|
|
|
sentence-transformers = "^2.2.2"
|
2023-05-30 07:19:28 +00:00
|
|
|
unstructured = "^0.6.10"
|
2023-07-05 01:54:25 +00:00
|
|
|
gpt4all = "^1.0.1"
|
2024-03-06 16:30:55 +00:00
|
|
|
langchain = ">=0.0.223,<0.1.12"
|
2023-07-05 10:59:22 +00:00
|
|
|
llama-cpp-python = "0.1.68"
|
2023-05-26 01:15:30 +00:00
|
|
|
|
2023-06-30 14:34:02 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
setuptools = "^68.0.0"
|
|
|
|
|
2023-05-26 01:15:30 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Source" = "https://github.com/rsaryev/talk-codebase"
|
|
|
|
"Bug Tracker" = "https://github.com/rsaryev/talk-codebase/issues"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
talk-codebase = "talk_codebase.cli:main"
|
|
|
|
|
|
|
|
|