# AKIOS V1.0 Core Runtime Dependencies
# ======================================
# These MUST match pyproject.toml [project.dependencies]

# Core functionality
pydantic[email]>=2.0.0
pydantic-settings>=2.0.0
pyyaml>=6.0
jsonschema>=4.21.0

# Agent integrations
httpx>=0.25.0
requests>=2.25.0

# Security and compliance
cryptography>=42.0.0
psutil>=5.9.0

# LLM providers
openai>=1.0.0
anthropic>=0.30.0
google-generativeai>=0.8.0
tiktoken>=0.5.0

# Stability
protobuf>=5.29.5

# Document processing
pypdf>=4.0.0
pdfminer.six>=20231228
python-docx>=1.1.0

# Terminal UI
rich>=13.7.0

# Interactive wizards
questionary>=1.10.0
fuzzywuzzy>=0.18.0
python-Levenshtein>=0.21.0

# Optional deps (fastapi, uvicorn, prometheus-client) live in
# pyproject.toml [project.optional-dependencies] — install via:
#   pip install akios[api]        → fastapi + uvicorn
#   pip install akios[monitoring] → prometheus-client
