init: llm-wiki-haness 하네스 설계
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
"""원본 deep-research-wf JS 와 동일한 상수. 변경 금지(충실도)."""
|
||||
from dataclasses import dataclass
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class Config:
|
||||
VOTES_PER_CLAIM: int = 3
|
||||
REFUTATIONS_REQUIRED: int = 2
|
||||
MAX_FETCH: int = 15
|
||||
MAX_VERIFY_CLAIMS: int = 25
|
||||
CONCURRENCY: int = 10 # asyncio.Semaphore (원본 Workflow cap 대응)
|
||||
ANTIGRAVITY_RETRIES: int = 2 # 스키마 검증 실패 시 재프롬프트 횟수
|
||||
|
||||
|
||||
DEFAULT = Config()
|
||||
Reference in New Issue
Block a user