Update requirements.txt
Browse files- requirements.txt +41 -27
requirements.txt
CHANGED
|
@@ -1,28 +1,42 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
#
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
cdata-stripe # Finance pack
|
| 23 |
-
cdata-quickbooks
|
| 24 |
-
cdata-googleads # Marketing pack
|
| 25 |
-
cdata-sharepoint # Files pack
|
| 26 |
-
# Airbyte alternative (optional self-host)
|
| 27 |
-
airbyte-client==0.60.0
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core LLM clients
|
| 2 |
+
openai # OpenAI API client
|
| 3 |
+
google-genai # Google Gemini client
|
| 4 |
+
|
| 5 |
+
# UI
|
| 6 |
+
gradio>=4.29 # Gradio for the web UI
|
| 7 |
+
|
| 8 |
+
# MCP & agents
|
| 9 |
+
mcp # Model Context Protocol server
|
| 10 |
+
smolagents[mcp,litellm] # Agent framework + LiteLLM support
|
| 11 |
+
litellm # LiteLLM provider SDKs
|
| 12 |
+
|
| 13 |
+
# Authentication / JWT
|
| 14 |
+
python-jose[cryptography] # JWT verification
|
| 15 |
+
jwcrypto # JWKS parsing
|
| 16 |
+
|
| 17 |
+
# Observability (OpenTelemetry)
|
| 18 |
+
opentelemetry-api # Core OpenTelemetry API
|
| 19 |
+
opentelemetry-sdk # SDK implementation
|
| 20 |
+
opentelemetry-instrumentation # Auto-instrumentation helpers
|
| 21 |
+
opentelemetry-exporter-otlp-proto-grpc # OTLP/gRPC exporter
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
+
# Caching
|
| 24 |
+
redis # Redis client for semantic cache
|
| 25 |
+
|
| 26 |
+
# SQL database toolkit
|
| 27 |
+
langchain_community # LangChain’s SQLDatabaseToolkit
|
| 28 |
+
sqlalchemy # SQLAlchemy core for DB connections
|
| 29 |
+
|
| 30 |
+
# HTTP helpers
|
| 31 |
+
requests # Raw REST fallback for connectors
|
| 32 |
+
|
| 33 |
+
# CData “premium” connector drivers
|
| 34 |
+
cdata-salesforce # Salesforce CRM
|
| 35 |
+
cdata-hubspot # HubSpot CRM
|
| 36 |
+
cdata-stripe # Stripe billing
|
| 37 |
+
cdata-quickbooks # QuickBooks finance
|
| 38 |
+
cdata-googleads # Google Ads marketing
|
| 39 |
+
cdata-sharepoint # SharePoint file store
|
| 40 |
+
|
| 41 |
+
# (Optional) Airbyte self-hosted integration client
|
| 42 |
+
airbyte-client==0.60.0
|