- runner.py: multi-turn tool-call loop (LLM -> tool -> observe -> respond) - runner.py: max 5 iterations guard against runaway tool chains - runner.py: confirmation gate — returns confirmation msg, stops loop - runner.py: audit logging for every LLM call via audit_logger - tasks.py: AuditLogger initialized at task start with session factory - tasks.py: tool registry built from agent.tool_assignments - tasks.py: pending tool confirmation flow via Redis (10 min TTL) - tasks.py: memory persistence skipped for confirmation request responses - llm-pool/router.py: LLMResponse model with content + tool_calls fields - llm-pool/router.py: tools parameter forwarded to litellm.acompletion() - llm-pool/main.py: CompleteRequest accepts optional tools list - llm-pool/main.py: CompleteResponse includes tool_calls field - Migration renamed to 004 (003 was already taken by escalation migration) - [Rule 1 - Bug] Renamed 003_phase2_audit_kb.py -> 004 to fix duplicate revision ID
126 lines
3.6 KiB
Python
126 lines
3.6 KiB
Python
"""
|
|
LLM Backend Pool — FastAPI service on port 8004.
|
|
|
|
Endpoints:
|
|
POST /complete — route a completion request through the LiteLLM Router.
|
|
GET /health — liveness probe.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Any
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
from llm_pool.router import complete as router_complete
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
app = FastAPI(
|
|
title="Konstruct LLM Pool",
|
|
description="LiteLLM Router — Ollama + Anthropic + OpenAI with automatic fallback",
|
|
version="0.1.0",
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Request / Response schemas
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class CompleteRequest(BaseModel):
|
|
"""Body for POST /complete."""
|
|
|
|
model: str
|
|
"""Model group name: "quality" or "fast"."""
|
|
|
|
messages: list[dict]
|
|
"""OpenAI-format message list."""
|
|
|
|
tenant_id: str
|
|
"""Konstruct tenant UUID for cost tracking."""
|
|
|
|
tools: list[dict] | None = None
|
|
"""
|
|
Optional OpenAI function-calling tool definitions.
|
|
When provided, the LLM may return tool_calls instead of text content.
|
|
"""
|
|
|
|
|
|
class UsageInfo(BaseModel):
|
|
prompt_tokens: int = 0
|
|
completion_tokens: int = 0
|
|
|
|
|
|
class CompleteResponse(BaseModel):
|
|
content: str
|
|
model: str
|
|
usage: UsageInfo
|
|
tool_calls: list[dict[str, Any]] = []
|
|
"""
|
|
Tool calls returned by the LLM, in OpenAI format.
|
|
Non-empty when the LLM decided to use a tool instead of responding with text.
|
|
"""
|
|
|
|
|
|
class HealthResponse(BaseModel):
|
|
status: str
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Routes
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@app.get("/health", response_model=HealthResponse)
|
|
async def health() -> HealthResponse:
|
|
"""Liveness probe — returns immediately."""
|
|
return HealthResponse(status="ok")
|
|
|
|
|
|
@app.post("/complete", response_model=CompleteResponse)
|
|
async def complete_endpoint(request: CompleteRequest) -> CompleteResponse:
|
|
"""
|
|
Route a completion request through the LiteLLM Router.
|
|
|
|
The `model` field selects the provider group ("quality" or "fast").
|
|
LiteLLM handles provider selection, retries, and cross-group fallback
|
|
automatically.
|
|
|
|
When `tools` are provided, the LLM may return tool_calls instead of text.
|
|
The response includes both `content` and `tool_calls` fields — exactly one
|
|
will be populated depending on whether the LLM chose to use a tool.
|
|
|
|
Returns 503 JSON if all providers (including fallbacks) are unavailable.
|
|
"""
|
|
from fastapi.responses import JSONResponse
|
|
|
|
try:
|
|
llm_response = await router_complete(
|
|
model_group=request.model,
|
|
messages=request.messages,
|
|
tenant_id=request.tenant_id,
|
|
tools=request.tools,
|
|
)
|
|
# LiteLLM Router doesn't expose per-call usage easily via acompletion
|
|
# on all provider paths; we return zeroed usage for now and will wire
|
|
# real token counts in a follow-up plan when cost tracking is added.
|
|
return CompleteResponse(
|
|
content=llm_response.content,
|
|
model=request.model,
|
|
usage=UsageInfo(),
|
|
tool_calls=llm_response.tool_calls,
|
|
)
|
|
except Exception:
|
|
logger.exception(
|
|
"All LLM providers unavailable for tenant=%s model=%s",
|
|
request.tenant_id,
|
|
request.model,
|
|
)
|
|
return JSONResponse( # type: ignore[return-value]
|
|
status_code=503,
|
|
content={"error": "All providers unavailable"},
|
|
)
|