CRAIG_Graph-2024-10-01-035038.svg
0 → 100644
+1
−0
File added.
Preview size limit exceeded, changes collapsed.
CRAIG_Graph-2024-10-01-035044.mmd
0 → 100644
+36
−0
requirements.txt
0 → 100644
+28
−0
| Original line number | Diff line number | Diff line |
|---|---|---|
# Core Libraries
|
||
langgraph==0.0.13 # Latest version as of Sept 30, 2024
|
||
sentence-transformers==2.2.2
|
||
spacy==3.6.1
|
||
langdetect==1.0.9
|
||
transformers==4.31.0
|
||
# Database (SQLite3 is usually included by default)
|
||
# sqlite3
|
||
# Caching (Choose one based on your preference)
|
||
# - In-memory cache (no additional library needed)
|
||
# - Redis:
|
||
# redis
|
||
# Email Handling (If implementing Outlook 365 integration in the future)
|
||
requests_oauthlib==1.3.1
|
||
microsoft-graph==0.60.0
|
||
# Offline LLM (Vicuna-7B)
|
||
torch==2.1.0
|
||
accelerate==0.23.0
|
||
bitsandbytes==0.41.0
|
||
# Other potential dependencies (add as needed)
|
||
numpy==1.26.0
|
||
pandas==2.1.1
|
||
# ... any other libraries used in your custom tool implementations |
||
No newline at end of file |
tools/chat_input_tool.py
0 → 100644
+79
−0
Loading