-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmodel_catalog.json
More file actions
164 lines (164 loc) · 6.18 KB
/
Copy pathmodel_catalog.json
File metadata and controls
164 lines (164 loc) · 6.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"_requirements": {
"_description": "All models in this catalog must support the following SOP AI integration features",
"_note_ollama": "Ollama local models do not support tool calling and are excluded from LLM options. Use Ollama for embeddings only (nomic-embed-text, mxbai-embed-large, all-minilm) or for simple text transformation tasks outside the agent architecture.",
"required": {
"tool_calling": "Must support function calling with tool definitions (JSON schemas) and return structured ToolCalls with function name and arguments. Used via GenOptions.Tools and GenOutput.ToolCalls.",
"system_prompts": "Must accept system-level instructions separate from user prompts. Used via GenOptions.SystemPrompt.",
"multi_turn_conversations": "Must support multi-turn conversations with tool call continuations, preserving tool_use/tool_result pairs across turns. Used via GenOptions.ToolCallContinuations (provider-neutral format)."
},
"optional": {
"thinking_controls": "Optional support for reasoning/thinking level controls (e.g., Gemini ThinkingLevel: low/medium/high). Used via GenOptions.ThinkingLevel.",
"structured_output_schemas": "Optional support for strict output structure enforcement via JSON schema (e.g., Gemini ResponseSchema). Used via GenOptions.ResponseSchema."
},
"carryover_modes": {
"compact": "Budget-based carryover with MRU enrichment when live carryover budget exceeded",
"live": "Provider-native continuation using ToolCallContinuations array (Gemini), PreviousResponseID (ChatGPT), or message history (Claude)"
}
},
"llm": [
{
"label": "Google",
"options": [
{
"value": "gemini:gemini-3.5-flash",
"label": "Gemini 3.5 Flash"
},
{
"value": "gemini:gemini-3.1-pro-preview",
"label": "Gemini 3.1 Pro Preview"
},
{
"value": "gemini:gemini-2.5-pro",
"label": "Gemini 2.5 Pro"
},
{
"value": "gemini:gemini-3.1-flash-lite",
"label": "Gemini 3.1 Flash Lite"
},
{
"value": "gemini:gemma-4-it",
"label": "Gemma 4 Instruct"
},
{
"value": "gemini:gemma-4",
"label": "Gemma 4"
},
{
"value": "gemini:gemini-1.5-pro",
"label": "Gemini 1.5 Pro"
},
{
"value": "gemini:gemini-1.5-flash",
"label": "Gemini 1.5 Flash"
}
]
},
{
"label": "Anthropic",
"options": [
{
"value": "anthropic:claude-opus-4-8",
"label": "Claude Opus 4.8"
},
{
"value": "anthropic:claude-opus-4-7",
"label": "Claude Opus 4.7"
},
{
"value": "anthropic:claude-opus-4-6",
"label": "Claude Opus 4.6"
},
{
"value": "anthropic:claude-sonnet-4-6",
"label": "Claude Sonnet 4.6"
},
{
"value": "anthropic:claude-sonnet-4-5",
"label": "Claude Sonnet 4.5"
},
{
"value": "anthropic:claude-haiku-4-5",
"label": "Claude Haiku 4.5"
},
{
"value": "anthropic:claude-opus-4-5",
"label": "Claude Opus 4.5"
},
{
"value": "anthropic:claude-opus-4-1",
"label": "Claude Opus 4.1"
},
{
"value": "anthropic:claude-3-5-sonnet-20241022",
"label": "Claude 3.5 Sonnet (Oct 2024)"
},
{
"value": "anthropic:claude-3-5-haiku",
"label": "Claude 3.5 Haiku"
}
]
},
{
"label": "OpenAI",
"options": [
{
"value": "openai:gpt-5.5",
"label": "GPT-5.5"
},
{
"value": "openai:gpt-5.4",
"label": "GPT-5.4"
},
{
"value": "openai:gpt-5.4-mini",
"label": "GPT-5.4 Mini"
},
{
"value": "openai:gpt-5.2",
"label": "GPT-5.2"
},
{
"value": "openai:gpt-5.5-pro",
"label": "GPT-5.5 Pro"
},
{
"value": "openai:gpt-5.4-pro",
"label": "GPT-5.4 Pro"
},
{
"value": "openai:gpt-5.4-nano",
"label": "GPT-5.4 Nano"
},
{
"value": "openai:gpt-5.2-pro",
"label": "GPT-5.2 Pro"
}
]
}
],
"embedder": [
{
"label": "Google",
"options": [
{
"value": "gemini:gemini-embedding-2",
"label": "Gemini (gemini-embedding-2)"
}
]
},
{
"label": "Local",
"options": [
{
"value": "kelindar:nomic-embed-text-v1.5-q8_0",
"label": "Embedded library (Nomic Embed Text v1.5 (Q8))"
},
{
"value": "kelindar:bge-small-en-v1.5-q8_0",
"label": "Embedded library (BAAI General Embedding Small v1.5 (Q8))"
}
]
}
]
}