-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (64 loc) · 1.52 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
[project]
name = "dyor"
version = "0.1.0"
description = "AI-powered crypto research assistant with multi-agent collaboration"
requires-python = ">=3.11,<3.13"
dependencies = [
# LLM & Agent
"langchain>=0.3,<0.4",
"langgraph>=0.2,<0.4",
"langchain-anthropic>=0.3,<0.4",
"langchain-community>=0.3,<0.4",
# RAG
"chromadb>=0.5,<0.7",
"sentence-transformers>=3.0,<4.0",
"rank-bm25>=0.2,<0.3",
"flashrank>=0.2,<0.3",
"jieba>=0.42,<1.0",
"pyyaml>=6.0,<7.0",
# MCP
"mcp[cli]>=1.0,<2.0",
"httpx>=0.27,<1.0",
# Knowledge Graph
"networkx>=3.3,<4.0",
# API & Frontend
"fastapi[standard]>=0.115,<1.0",
"uvicorn>=0.32,<1.0",
"websockets>=13,<15",
"sse-starlette>=2.0,<3.0",
"streamlit>=1.39,<2.0",
"plotly>=5.24,<6.0",
# Data & Utils
"pydantic>=2.9,<3.0",
"pydantic-settings>=2.6,<3.0",
# Evaluation
"ragas>=0.2,<0.3",
# Logging
"structlog>=24.0,<26.0",
"posthog<3.0.0",
# Memory / Checkpointing
"redis>=5.0,<6.0",
"asyncpg>=0.30,<1.0",
]
[dependency-groups]
dev = [
"pytest>=8.0,<9.0",
"pytest-asyncio>=0.24,<1.0",
"pytest-cov>=5.0,<6.0",
"ruff>=0.8,<1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src", "api"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.fastapi]
entrypoint = "api.main:app"