-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 886 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gam"
version = "0.1.0"
description = "GAM - General Agentic Memory (Text & Video)"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"pydantic>=2.0",
"tiktoken>=0.5",
"openai>=1.0",
"tqdm>=4.60",
"docker>=7.0",
"requests>=2.28",
"python-dotenv>=1.0",
"json_repair>=0.58.0"
]
[project.optional-dependencies]
web = ["flask>=3.0", "rank_bm25>=0.2"]
api = ["fastapi>=0.115", "uvicorn>=0.34"]
pdf = ["PyPDF2>=3.0"]
sglang = ["sglang"]
all = ["flask>=3.0", "PyPDF2>=3.0", "rank_bm25>=0.2", "fastapi>=0.115", "uvicorn>=0.34"]
[project.scripts]
gam-add = "gam.cli:cli_add"
gam-request = "gam.cli:cli_request"
gam-skill-prompt = "gam.cli:cli_skill_prompt"
[tool.setuptools.packages.find]
where = ["src"]