File size: 958 Bytes
140731d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f32a4be
140731d
 
f32a4be
63d67f0
f32a4be
140731d
 
 
 
 
f32a4be
 
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"

[project]
name = "self-improving-sql-agent"
version = "1.0.0"
description = "A SQL generation environment that learns from its own mistakes — LinUCB contextual bandit + GEPA prompt evolution + self-debug loop."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }

dependencies = [
    "fastapi>=0.115.0",
    "uvicorn[standard]>=0.30.0",
    "openai>=1.40.0",
    "pydantic>=2.8.0",
    "numpy>=1.26.0",
    "aiofiles>=24.0.0",
    "python-multipart>=0.0.9",
    "sse-starlette>=2.1.0",
    "aiosqlite>=0.20.0",
    "psycopg2-binary>=2.9.0",
    "openenv-core>=0.2.0",
]

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

[project.urls]
Homepage = "https://huggingface.co/spaces/ar9av/sql-agent-openenv"
Repository = "https://github.com/Ar9av/sql-agent-openenv"

[tool.setuptools.packages.find]
where = ["."]
include = ["server*"]