Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions api_endpoints.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"ova-debate": {
"model_name": "ova-debate",
"api_type": "openai",
"api_base": "https://ovamind-production.up.railway.app/api/v1",
"api_key": "sk_ova_arena_lmarena2026",
"anony_only": false,
"recommended_config": {
"temperature": 0.3,
"top_p": 1.0
},
"text-arena": true,
"vision-arena": false
}
}
11 changes: 11 additions & 0 deletions fastchat/model/model_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -1000,3 +1000,14 @@ def get_model_info(name: str) -> ModelInfo:
"https://huggingface.co/cllm",
"consistency-llm is a new generation of parallel decoder LLMs with fast generation speed.",
)

# ── OVA (Multi-Model Debate) ─────────────────────────────────────────────────
register_model_info(
["ova-debate", "ova-arena"],
"OVA (Multi-Model Debate)",
"https://ovamind.ai",
"OVA is a meta-reasoning system that runs structured multi-agent debate "
"across Claude, GPT, Grok, Gemini, and Perplexity before synthesizing a "
"final answer. Confidence-adaptive: 3 rounds for standard queries, up to 9 "
"rounds with axiom decomposition and frame-breaking for hard problems.",
)