Spaces:
Sleeping
Sleeping
File size: 4,034 Bytes
3c665d2 63cbec3 3c665d2 63cbec3 3c665d2 9f7dd14 3c665d2 9f7dd14 3c665d2 719c147 3c665d2 63cbec3 92cc088 63cbec3 3c665d2 | 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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | """
SQL Agent OpenEnv β FastAPI entry point.
Start with:
uvicorn main:app --reload --port 8000
Environment variables:
API_BASE_URL β OpenAI-compatible base URL
MODEL_NAME β model name
HF_TOKEN β API key / bearer token
DATA_DIR β override data directory (default: ./data)
"""
from __future__ import annotations
import logging
import os
from pathlib import Path
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(name)s: %(message)s")
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
from api.demo import router as demo_router
from api.openenv import router as openenv_router, ResetRequest, StepRequest, env_reset, env_step, env_state
from env.database import ensure_seeded
app = FastAPI(
title="Self-Improving SQL Agent",
description=(
"A SQL generation environment that learns from its own mistakes. "
"Powered by a LinUCB contextual bandit for repair strategy selection "
"and GEPA prompt evolution for continuous self-improvement."
),
version="1.0.0",
)
# βββ CORS ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# βββ Routers βββββββββββββββββββββββββββββββββββββββββββββββββββββ
app.include_router(demo_router, prefix="/api", tags=["demo"])
app.include_router(openenv_router, prefix="/env", tags=["openenv"])
# βββ Top-level OpenEnv aliases (required by openenv validate + pre-validation) β
# The validator pings POST <url>/reset β these mirror /env/* without the prefix.
@app.post("/reset", tags=["openenv"])
async def root_reset(req: ResetRequest = None):
return await env_reset(req or ResetRequest())
@app.post("/step", tags=["openenv"])
async def root_step(req: StepRequest = None):
return await env_step(req or StepRequest())
@app.get("/state", tags=["openenv"])
async def root_state():
return await env_state()
# βββ Health check ββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/health", tags=["system"])
async def health():
return {"status": "healthy", "service": "sql-agent-openenv"}
# βββ Startup βββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.on_event("startup")
async def startup_event():
"""Seed the database on first startup."""
try:
ensure_seeded()
except Exception as e:
print(f"Warning: database seed failed: {e}")
# Log LLM config so it's visible in container logs
token = os.environ.get("HF_TOKEN") # no default
api_base = os.environ.get("API_BASE_URL", "https://router.huggingface.co/v1")
model = os.environ.get("MODEL_NAME", "Qwen/Qwen2.5-72B-Instruct")
token_status = f"set ({len(token)} chars)" if token else "NOT SET"
print(f"[startup] LLM config: base_url={api_base} model={model} HF_TOKEN={token_status}", flush=True)
# βββ Static files (frontend) β mount last βββββββββββββββββββββββββ
_frontend_dist = Path(__file__).parent.parent / "frontend" / "dist"
if _frontend_dist.exists():
app.mount(
"/",
StaticFiles(directory=str(_frontend_dist), html=True),
name="frontend",
)
else:
@app.get("/", tags=["system"])
async def root():
return {
"message": "SQL Agent OpenEnv API",
"docs": "/docs",
"health": "/health",
"env_info": "/env/info",
}
|