mgbam commited on
Commit
19ea3d2
·
verified ·
1 Parent(s): 7bc9e4c

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +41 -27
requirements.txt CHANGED
@@ -1,28 +1,42 @@
1
- openai # (or your local-LLM deps)
2
- google-genai
3
- gradio>=4.29
4
- mcp
5
- smolagents[mcp,litellm] # agent + LiteLLM
6
- litellm # provider SDKs
7
- python-jose[cryptography] # JWT verification
8
- jwcrypto # JWKS parsing
9
- openllmetry # telemetry wrapper
10
- opentelemetry-sdk
11
- opentelemetry-exporter-otlp
12
- redis # cache
13
- langchain_community # SQLDatabaseToolkit
14
- sqlalchemy
15
-
16
-
17
- requests # if you prefer raw REST
18
-
19
- # CData
20
- cdata-salesforce # CRM pack
21
- cdata-hubspot
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