4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
84 lines
2.7 KiB
Python
84 lines
2.7 KiB
Python
"""Structured-output wrapper shared by hosted and CLI-backed LLM clients."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import logging
|
|
import re
|
|
from typing import Any
|
|
|
|
from pydantic import BaseModel, ValidationError
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class StructuredOutputClient:
|
|
"""Wrap any LLM client with ``invoke`` for Pydantic JSON parsing."""
|
|
|
|
def __init__(self, base: Any, model: type[BaseModel]) -> None:
|
|
self._base = base
|
|
self._model = model
|
|
|
|
def with_config(self, **_kwargs: Any) -> StructuredOutputClient:
|
|
return self
|
|
|
|
def invoke(self, prompt: str) -> Any:
|
|
schema = self._model.model_json_schema()
|
|
schema_json = json.dumps(schema, indent=2)
|
|
wrapped_prompt = (
|
|
f"{prompt}\n\nReturn ONLY valid JSON that matches this schema:\n{schema_json}\n"
|
|
)
|
|
response = self._base.invoke(wrapped_prompt)
|
|
payload = extract_json_payload(response.content)
|
|
try:
|
|
return self._model.model_validate(payload)
|
|
except ValidationError:
|
|
if isinstance(payload, list) and "actions" in self._model.model_fields:
|
|
fallback = {"actions": payload, "rationale": "LLM returned actions only."}
|
|
return self._model.model_validate(fallback)
|
|
raise
|
|
|
|
|
|
def safe_json_loads(payload: str) -> Any:
|
|
try:
|
|
return json.loads(payload)
|
|
except json.JSONDecodeError:
|
|
return json.loads(payload, strict=False)
|
|
|
|
|
|
def extract_json_payload(text: str) -> Any:
|
|
cleaned = text.strip()
|
|
if cleaned.startswith("```"):
|
|
cleaned = re.sub(r"^```(?:json)?\s*", "", cleaned)
|
|
cleaned = re.sub(r"\s*```$", "", cleaned)
|
|
cleaned = cleaned.strip()
|
|
else:
|
|
fence_match = re.search(r"```(?:json)?\s*([\s\S]*?)\s*```", cleaned)
|
|
if fence_match:
|
|
candidate = fence_match.group(1).strip()
|
|
try:
|
|
return safe_json_loads(candidate)
|
|
except json.JSONDecodeError:
|
|
pass
|
|
|
|
try:
|
|
return safe_json_loads(cleaned)
|
|
except json.JSONDecodeError:
|
|
logger.debug("Direct JSON parse failed, trying regex extraction")
|
|
|
|
obj_match = re.search(r"\{.*\}", cleaned, re.DOTALL)
|
|
if obj_match:
|
|
try:
|
|
return safe_json_loads(obj_match.group(0))
|
|
except json.JSONDecodeError:
|
|
logger.debug("Object regex JSON parse failed, trying array extraction")
|
|
|
|
list_match = re.search(r"\[.*\]", cleaned, re.DOTALL)
|
|
if list_match:
|
|
try:
|
|
return safe_json_loads(list_match.group(0))
|
|
except json.JSONDecodeError:
|
|
logger.debug("Array regex JSON parse also failed")
|
|
|
|
raise ValueError("LLM did not return valid JSON payload")
|