-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (29 loc) · 858 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (29 loc) · 858 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
[project]
name = "helppilot"
version = "0.1.0"
description = "An AI customer-support agent (LangGraph + Groq + Chroma) built for a clean LangSmith trace."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# Orchestration
"langgraph>=0.2.60",
"langgraph-checkpoint-sqlite>=2.0.0",
# LLM (Groq)
"langchain-groq>=0.2.0",
"langchain-core>=0.3.0",
# RAG: vector store + embeddings + reranker
"chromadb>=0.5.0",
"sentence-transformers>=3.0.0",
# transformers>=5 lazy-imports a vision module during model load; torchvision
# must be present (matched to the installed torch) for that import to succeed.
"torchvision>=0.20.0",
# Tracing / eval
"langsmith>=0.1.140",
# UI
"streamlit>=1.38.0",
# Utilities
"python-dotenv>=1.0.0",
"tabulate>=0.9.0",
]
[tool.uv]
package = false