-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
78 lines (64 loc) · 1.59 KB
/
requirements.txt
File metadata and controls
78 lines (64 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# AI & Agentic Network Automation - Python Dependencies
# Core Framework
python-dotenv==1.0.0
pydantic==2.5.3
pydantic-settings==2.1.0
# Web Framework
fastapi==0.109.0
uvicorn[standard]==0.27.0
# LLM Integrations
google-generativeai==0.3.2 # Google Gemini
anthropic==0.18.1 # Anthropic Claude
openai==1.12.0 # OpenAI GPT-4
langchain==0.1.6 # LangChain orchestration
langchain-google-genai==0.0.6
langchain-anthropic==0.1.1
langchain-openai==0.0.5
# Vector Database & RAG
chromadb==0.4.22 # Vector store
langchain-chroma==0.0.1
sentence-transformers==2.3.1 # Embeddings
llama-index==0.9.45 # Alternative RAG framework
# Network Automation
nornir==3.4.1 # Automation framework
nornir-napalm==0.4.0
nornir-netmiko==1.0.1
nornir-jinja2==0.2.0
napalm==4.1.0 # Multi-vendor library
netmiko==4.3.0 # SSH automation
pyats==23.12 # Cisco testing framework
genie==23.12
# Configuration Templates
jinja2==3.1.3
pyyaml==6.0.1
# Data Processing
pandas==2.1.4
numpy==1.26.3
# HTTP Clients
httpx==0.26.0
requests==2.31.0
# Database
sqlalchemy==2.0.25
asyncpg==0.29.0
redis==5.0.1
# Task Queue
celery==5.3.6
# Monitoring & Logging
prometheus-client==0.19.0
python-json-logger==2.0.7
structlog==24.1.0
# Testing
pytest==7.4.4
pytest-asyncio==0.23.3
pytest-cov==4.1.0
pytest-mock==3.12.0
# Code Quality
black==24.1.1
flake8==7.0.0
mypy==1.8.0
pylint==3.0.3
isort==5.13.2
# Utilities
click==8.1.7
rich==13.7.0 # Terminal formatting
python-dateutil==2.8.2