-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (78 loc) · 2.62 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (78 loc) · 2.62 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
[project]
name = "gois"
version = "0.1.0"
description = "gois-lite — lite QClaw monitor with dev skills, LLM recovery agent, and Hermes/OpenClaw dashboard"
license = { text = "MIT" }
requires-python = ">=3.11"
dependencies = [
"openai>=1.40",
"httpx>=0.27",
"pydantic>=2.6",
"pyyaml>=6.0",
"pywebview>=5.3",
"edge-tts>=6.1",
"prometheus-client>=0.20",
"chromadb>=0.5",
"qrcode>=7.4",
"croniter>=6.0.0",
"playwright>=1.40",
"boto3>=1.34",
"pymongo>=4.6",
"redis>=5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
# Fase 0 — gateway/observabilidade LLM (LiteLLM + Langfuse). Opcional: o
# llm_gateway funciona sem estes pacotes (ledger JSONL local), mas o proxy
# LiteLLM e o tracing Langfuse exigem-nos.
observability = [
"litellm>=1.40",
"langfuse>=2.0",
]
# Fase 1 — orquestração executável de swarms. Opcional: swarm_graph tem motor
# sequencial determinístico embutido; langgraph só é necessário para o motor
# baseado em grafo com checkpointing nativo.
orchestration = [
"langgraph>=0.2",
]
# Fase 2 — memória compartilhada (blackboard). Opcional: o backend local (JSONL
# por swarm) funciona sem dependências; mem0 habilita recuperação semântica.
memory = [
"mem0ai>=0.1",
]
# Fase 3 — avaliação de qualidade/regressão de swarms. Opcional: o backend local
# (heurístico) funciona sem deps; deepeval habilita avaliação semântica via LLM.
eval = [
"deepeval>=1.0",
]
# Fase 4 — roteamento custo/qualidade aprendido. Opcional: o cost_router tem
# backend heurístico embutido (offline); routellm habilita o router aprendido.
routing = [
"routellm>=0.2",
]
[project.scripts]
gois = "gois.__main__:main"
gois-webapp = "gois.webapp:main"
qclaw-cards-mcp = "gois.mcp_cards_server:run_stdio_server"
qclaw-skills-mcp = "gois.mcp_skills_server:run_stdio_server"
qclaw-swarm-mcp = "gois.mcp_swarm_server:run_stdio_server"
qclaw-cards-sse = "gois.mcp_sse_server:start_sse_server"
kdp-publish = "gois.kdp.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/gois", "src/qclawmonitor"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"mongo_kanban: tests that require MongoDB-backed kanban (not YAML fallback)",
"mongo_production: opt out of isolated MONGODB_DB (tests production-db guards)",
"runtime_redis: tests that require Redis-backed runtime state",
"runtime_mongo: tests that require MongoDB-backed runtime blobs",
"wa_business_hours: tests that enforce WhatsApp business-hours policy",
]