gabykim commited on
Commit
8d7e3f4
·
1 Parent(s): 793cea5

poetry initialization

Browse files
Files changed (5) hide show
  1. README.md +8 -0
  2. full_requirements.txt +0 -58
  3. poetry.lock +0 -0
  4. pyproject.toml +32 -0
  5. simple_requirements.txt +0 -4
README.md ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # Know Lang Bot
2
+ A tool for exploring and understanding complex codebases using LLMs.
3
+ Features
4
+
5
+ # Code parsing and analysis
6
+ - Semantic search across repositories
7
+ - Automatic documentation maintenance
8
+ - LLM-powered code understanding
full_requirements.txt DELETED
@@ -1,58 +0,0 @@
1
- annotated-types==0.7.0
2
- anthropic==0.45.0
3
- anyio==4.8.0
4
- cachetools==5.5.1
5
- certifi==2024.12.14
6
- charset-normalizer==3.4.1
7
- cohere==5.13.11
8
- colorama==0.4.6
9
- distro==1.9.0
10
- eval_type_backport==0.2.2
11
- exceptiongroup==1.2.2
12
- fastavro==1.10.0
13
- filelock==3.17.0
14
- fsspec==2024.12.0
15
- gitdb==4.0.12
16
- GitPython==3.1.44
17
- google-auth==2.38.0
18
- griffe==1.5.5
19
- groq==0.15.0
20
- h11==0.14.0
21
- httpcore==1.0.7
22
- httpx==0.28.1
23
- httpx-sse==0.4.0
24
- huggingface-hub==0.27.1
25
- idna==3.10
26
- iniconfig==2.0.0
27
- jiter==0.8.2
28
- jsonpath-python==1.0.6
29
- logfire-api==3.3.0
30
- mistralai==1.4.0
31
- mypy-extensions==1.0.0
32
- openai==1.60.1
33
- packaging==24.2
34
- pluggy==1.5.0
35
- pyasn1==0.6.1
36
- pyasn1_modules==0.4.1
37
- pydantic==2.10.6
38
- pydantic-ai==0.0.20
39
- pydantic-ai-slim==0.0.20
40
- pydantic-graph==0.0.20
41
- pydantic_core==2.27.2
42
- pytest==8.3.4
43
- python-dateutil==2.9.0.post0
44
- PyYAML==6.0.2
45
- requests==2.32.3
46
- rsa==4.9
47
- six==1.17.0
48
- smmap==5.0.2
49
- sniffio==1.3.1
50
- tokenizers==0.21.0
51
- tomli==2.2.1
52
- tqdm==4.67.1
53
- tree-sitter==0.24.0
54
- tree-sitter-languages==1.10.2
55
- types-requests==2.32.0.20241016
56
- typing-inspect==0.9.0
57
- typing_extensions==4.12.2
58
- urllib3==2.3.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.pytest.ini_options]
2
+ addopts = [
3
+ "--import-mode=importlib",
4
+ ]
5
+ [project]
6
+ name = "know-lang-bot"
7
+ version = "0.1.0"
8
+ description = ""
9
+ authors = [
10
+ {name = "gabhyun kim",email = "[email protected]"}
11
+ ]
12
+ readme = "README.md"
13
+ requires-python = ">=3.10, <4.0"
14
+ dependencies = [
15
+ "pydantic-ai (>=0.0.20,<0.0.21)",
16
+ "tree-sitter-languages (>=1.10.2,<2.0.0)",
17
+ "gitpython (>=3.1.44,<4.0.0)"
18
+ ]
19
+
20
+ [tool.poetry]
21
+ packages = [
22
+ { include = "src" },
23
+ ]
24
+
25
+
26
+ [tool.poetry.group.dev.dependencies]
27
+ pytest = "^8.3.4"
28
+
29
+ [build-system]
30
+ requires = ["poetry-core>=2.0.0,<3.0.0"]
31
+ build-backend = "poetry.core.masonry.api"
32
+
simple_requirements.txt DELETED
@@ -1,4 +0,0 @@
1
- pydantic-ai==0.0.20
2
- tree-sitter-languages==1.10.2
3
- pytest==8.3.4
4
- GitPython==3.1.44