File size: 592 Bytes
d416acc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96939ad
d416acc
 
 
14abea0
d416acc
 
 
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "api-triage-agent"
version = "1.0.0"
description = "OpenEnv environment for API debugging with AI agents"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
    "pydantic>=2.0.0",
    "openai>=1.0.0",
    "numpy>=1.24.0",
    "pytest>=7.0.0",
    "fastapi>=0.100.0",
    "uvicorn>=0.23.0",
    "openenv-core>=0.2.0",
    "pyyaml>=6.0.0",
]

[project.scripts]
server = "server.app:main"

[tool.openenv]
environment-class = "environment.api_triage_env.APITriageEnv"