init: llm-wiki-haness 하네스 설계

This commit is contained in:
DongHyeonka
2026-07-24 14:21:35 +09:00
parent 42bf3db4fd
commit 6c53ded9cb
2436 changed files with 194486 additions and 1 deletions
@@ -0,0 +1,11 @@
from abc import ABC, abstractmethod
from pydantic import BaseModel
class AgentBackend(ABC):
"""run_agent: 프롬프트를 1개 CLI headless 에이전트로 실행, schema 로 검증된 객체 반환.
실패/사용자-skip -> None (원본 .filter(Boolean) 의미)."""
@abstractmethod
async def run_agent(self, prompt: str, schema: type[BaseModel], *, label: str) -> BaseModel | None:
...