-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (102 loc) · 2.69 KB
/
Copy pathpyproject.toml
File metadata and controls
118 lines (102 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[build-system]
requires = ["setuptools>=75.0.0", "wheel>=0.44.0"]
build-backend = "setuptools.build_meta"
[project]
name = "local-ai-agent"
version = "2.0.0"
description = "Локальный ИИ-агент с памятью, инструментами и безопасностью"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Local Agent Team"}
]
keywords = ["ai", "agent", "llm", "local", "tools", "memory"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
# Ядро
"numpy>=1.26.0,<2.0.0",
"pyyaml>=6.0",
"tqdm>=4.65.0",
"colorama>=0.4.6",
"rich>=13.0.0",
"pydantic>=2.0.0",
# LLM
"llama-cpp-python>=0.3.0",
"tiktoken>=0.7.0",
# Веб
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"lxml>=5.0.0",
"readability-lxml>=0.8.1",
# Память (опционально)
"chromadb>=0.5.0",
"sentence-transformers>=3.0.0",
# Граф (опционально)
"networkx>=3.3",
# Веб-интерфейс (опционально)
"flask>=3.0.0",
"flask-cors>=4.0.0",
"flask-socketio>=5.3.0",
# Системные
"psutil>=5.9.0",
"watchdog>=4.0.0",
]
[project.optional-dependencies]
full = [
"chromadb>=0.5.0",
"sentence-transformers>=3.0.0",
"networkx>=3.3",
"flask>=3.0.0",
"flask-cors>=4.0.0",
"flask-socketio>=5.3.0",
"psutil>=5.9.0",
]
web = [
"flask>=3.0.0",
"flask-cors>=4.0.0",
"flask-socketio>=5.3.0",
]
memory = [
"chromadb>=0.5.0",
"sentence-transformers>=3.0.0",
"networkx>=3.3",
]
minimal = [
# Только самое необходимое
"numpy>=1.26.0,<2.0.0",
"llama-cpp-python>=0.3.0",
"tiktoken>=0.7.0",
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"colorama>=0.4.6",
]
[project.scripts]
local-agent = "main:main"
local-agent-web = "web_ui:main"
[project.urls]
Homepage = "https://github.com/user/local-agent"
Documentation = "https://github.com/user/local-agent/wiki"
Repository = "https://github.com/user/local-agent.git"
Issues = "https://github.com/user/local-agent/issues"
[tool.setuptools]
packages = [
"memory",
"tools",
"safety",
"llm",
"core",
"config",
]
[tool.setuptools.package-data]
"*" = ["*.json", "*.yaml", "*.yml", "*.txt", "*.md"]