-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.48 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
[project]
name = "beacon"
version = "0.0.1"
description = "Voice-first edge ingestion node for CJADC2 — built on AMD GAIA."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Kalin Ovtcharov" }]
dependencies = [
"amd-gaia @ git+https://github.com/amd/gaia.git@feat/lemonade-audio-endpoints",
"pydantic>=2.0",
"fastapi>=0.110",
"uvicorn>=0.27",
"sse-starlette>=2.0",
"typer>=0.12",
"httpx>=0.27",
"pyyaml>=6.0",
"python-multipart>=0.0.9",
# RAG dependencies — GAIA's RAGSDK / RAGToolsMixin needs these.
# GAIA declares them as extras; we pull them in directly because the
# doctrine-corpus feature is core to Beacon, not optional.
"pypdf>=4.0",
"faiss-cpu>=1.7",
"sentence-transformers>=2.0",
]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-asyncio>=0.23", "ruff>=0.4", "httpx>=0.27"]
lora = ["meshtastic>=2.3"]
[project.scripts]
beacon = "beacon.cli:app"
beacon-eval = "beacon.eval.__main__:main"
# Stub runners — validate YAMLs today, end-to-end execution still TODO.
# See src/beacon/eval/{insight,confirm}_runner.py for the wire-up plan.
beacon-eval-insight = "beacon.eval.insight_runner:main"
beacon-eval-confirm = "beacon.eval.confirm_runner:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"