-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.31 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
[project]
name = "agents-demo"
version = "0.1.0"
description = "LaunchDarkly AI Configs tutorial with LangGraph agents"
requires-python = ">=3.11"
dependencies = [
# Agent Framework
"langchain>=0.1.0",
"langgraph>=0.0.40",
"langchain-anthropic>=0.1.0",
# Web Framework
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
# LaunchDarkly
"launchdarkly-server-sdk>=9.0.0",
"launchdarkly-server-sdk-ai>=0.1.0",
# AWS Bedrock Integration
"langchain-aws>=0.2.0",
"boto3>=1.35.0",
# Vector Search
"numpy>=1.24.0",
"openai>=1.0.0",
"faiss-cpu>=1.7.0",
# PDF Processing
"PyMuPDF>=1.23.0",
"tiktoken>=0.5.0",
# UI Framework
"streamlit>=1.28.0",
"requests>=2.31.0",
# Development
"python-dotenv>=1.0.0",
"PyYAML>=6.0",
"langchain-openai>=0.3.31",
# MCP Integration
"langchain-mcp-adapters>=0.1.9",
"beautifulsoup4>=4.13.5",
"mcp>=1.13.1",
"semanticscholar>=0.10.0",
"rank-bm25>=0.2.2",
"langchain-mistralai>=0.2.12",
]
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"ruff>=0.14.1",
]
# Note: ld-aic-cicd is installed separately in CI via GitHub
# See .github/workflows/ai-config-validation.yml for installation
[tool.setuptools]
packages = ["api", "agents"]