Spaces:
Sleeping
Sleeping
File size: 4,552 Bytes
4150329 7744a07 4150329 2791a14 4150329 95baaf3 4150329 2791a14 718ff47 4accbc4 2791a14 4accbc4 4150329 | 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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | [project]
name = "agents"
version = "0.1.0"
description = "Agentic AI project"
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
# =======================
# LLM PROVIDERS / SDKs
# =======================
"openai>=2.8.1",
"openai-agents>=0.5.1",
"anthropic>=0.49.0",
"langchain-openai>=1.0.3",
"langchain-anthropic>=1.1.0",
"langchain_huggingface>=1.1.0",
"langchain_ollama>=1.0.0",
"langchain_google_genai>=3.0.3",
"langchain_groq>=1.0.1",
# =======================
# LANGCHAIN / LANGGRAPH
# =======================
"langchain>=1.0.7",
"langchain-community>=0.4.1",
"langgraph>=1.0.3",
"langgraph-checkpoint-sqlite>=3.0.0",
"langsmith>=0.4.43",
"langchain-text-splitters>=1.0.0",
"langchain-chroma>=1.0.0",
"html2text>=2025.4.15",
"traceloop-sdk>=0.33.0",
# =======================
# VECTOR DB / INDEXING
# =======================
"faiss-cpu>=1.13.0",
"chromadb==1.3.5",
"sentence-transformers>=5.1.2",
"pymupdf",
"pypdf>=6.3.0",
"pypdf2>=3.0.1",
"arxiv>=2.3.1",
"wikipedia>=1.4.0",
# =======================
# AUTOGEN
# =======================
"autogen-agentchat>=0.7.5",
"autogen-ext[grpc,mcp,ollama,openai]>=0.7.5",
"asyncio",
# =======================
# MCP
# =======================
"mcp-server-fetch>=2025.1.17",
"mcp[cli]>=1.21.2",
# =======================
# NETWORKING / UTILITIES
# =======================
"psutil>=7.0.0",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
"aiohttp>=3.8.5",
"httpx>=0.28.1",
"speedtest-cli>=2.1.3",
"logfire",
"google-search-results",
"smithery>=0.4.4",
"sendgrid",
# =======================
# WEB SCRAPING
# =======================
"playwright>=1.51.0",
"beautifulsoup4>=4.12.3",
"lxml>=5.3.1",
# =======================
# FINANCE / NLP
# =======================
"yfinance>=0.2.66",
"textblob>=0.17.1",
"polygon-api-client>=1.16.3",
# =======================
# VISUAL / UI / PDF
# =======================
"plotly>=6.5.0",
"streamlit>=1.51.0",
"reportlab>=4.4.5",
"fastapi",
# =======================
# AUDIO / VIDEO
# =======================
"yt_dlp>=2025.11.12",
"openai-whisper>=1.0.0",
# =======================
# MACHINE LEARNING
# =======================
"scikit-learn>=1.7.2",
"huggingface_hub<=1.1.4",
"datasets>=4.4.1",
# =======================
# IPYNB SUPPORT
# =======================
"ipykernel>=7.1.0",
# =======================
# TOOLS
# =======================
"ddgs>=9.9.2",
"duckduckgo_search",
"azure-identity>=1.25.1",
# =======================
# OBSERVABILITY
# =======================
"openinference-instrumentation-autogen>=0.1.0",
"openinference-instrumentation-openai>=0.1.15",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp>=1.20.0",
"opentelemetry-api>=1.20.0",
]
[dependency-groups]
dev = [
"pytest>=8.3.3",
"ipykernel>=7.1.0",
"pytest-asyncio",
]
# ============================================================
# BUILD SYSTEM
# ============================================================
# Defines how to build the project.
# We use setuptools as the build backend, ensuring consistent packaging.
[build-system]
requires = ["setuptools>=80.9.0"]
build-backend = "setuptools.build_meta"
# ============================================================
# PACKAGING & DISCOVERY
# ============================================================
# Tells setuptools where to find the source code.
# This makes 'common' and 'src' importable when installed (pip install -e .).
[tool.setuptools.packages.find]
where = ["."] # Look in the project root
include = ["common*", "src*"] # Treat 'common' and 'src' folders as packages
# ============================================================
# PYTEST SETTINGS
# ============================================================
# Configures the test runner to automatically find code.
[tool.pytest.ini_options]
# Adds 'src' and 'common' to the python path during tests.
# This allows tests to import modules (e.g., 'import travel_agent')
# just like the apps do locally, preventing ModuleNotFoundError.
pythonpath = ["src", "common"]
testpaths = ["tests"] # Only look for tests in the 'tests' directory
addopts = "-q" # Run in quiet mode (less verbose output)
|