File size: 1,210 Bytes
7e9a520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "atlasops"
version = "1.0.0"
description = "AtlasOps — Multi-agent incident response on real GCP/GKE with AMD MI300X"
requires-python = ">=3.11"
dependencies = [
    # Agent runtime
    "openai>=1.30.0",
    "anthropic>=0.28.0",
    "httpx>=0.27.0",
    "pydantic>=2.7.0",
    # GCP clients
    "google-cloud-monitoring>=2.20.0",
    "google-cloud-logging>=3.10.0",
    "google-cloud-pubsub>=2.21.0",
    "google-auth>=2.29.0",
    # Kubernetes
    "kubernetes>=30.1.0",
    # Observability clients
    "requests>=2.32.0",
    # Dashboard
    "gradio>=4.36.0",
    # Utils
    "rich>=13.7.0",
    "typer>=0.12.0",
    "python-dotenv>=1.0.0",
    "jinja2>=3.1.4",
]

[project.optional-dependencies]
train = [
    "torch>=2.3.0",
    "transformers>=4.41.0",
    "trl>=0.9.0",
    "peft>=0.11.0",
    "datasets>=2.19.0",
    "accelerate>=0.30.0",
    "vllm>=0.5.0",
    "bitsandbytes>=0.43.0",
]
dev = [
    "pytest>=8.2.0",
    "pytest-asyncio>=0.23.0",
    "ruff>=0.4.0",
]

[tool.hatch.build.targets.wheel]
packages = ["agents", "bench", "config", "training"]

[tool.ruff]
line-length = 100
target-version = "py311"