mirror of
https://github.com/enricoros/big-AGI.git
synced 2026-05-11 14:10:15 -07:00
AIX/LLMs: bits
This commit is contained in:
@@ -642,7 +642,10 @@ export namespace AnthropicWire_Tools {
|
||||
name: z.literal('code_execution'),
|
||||
});
|
||||
|
||||
/** Requires beta header: "computer-use-2025-01-24" */
|
||||
/**
|
||||
* Requires beta header: "computer-use-2025-01-24"
|
||||
* NOTE: newer version available - computer_20251124 (beta header: "computer-use-2025-11-24") adds `enable_zoom: boolean`
|
||||
*/
|
||||
const _ComputerUseTool_20250124_schema = _ToolDefinitionBase_schema.extend({
|
||||
type: z.literal('computer_20250124'),
|
||||
name: z.literal('computer'),
|
||||
|
||||
@@ -398,5 +398,6 @@ export function llmOrtAntLookup_ThinkingVariants(orModelName: string): OrtVendor
|
||||
?.filter((spec) => _ORT_ANT_PARAM_ALLOWLIST.has(spec.paramId))
|
||||
.map((spec) => ({ ...spec }));
|
||||
|
||||
// initialTemperature: not set — Anthropic models use the global fallback (0.5)
|
||||
return { interfaces, parameterSpecs };
|
||||
}
|
||||
|
||||
@@ -1255,5 +1255,7 @@ export function llmOrtOaiLookup(orModelName: string): OrtVendorLookupResult | un
|
||||
?.filter(spec => _ORT_OAI_PARAM_ALLOWLIST.has(spec.paramId))
|
||||
.map(spec => ({ ...spec }));
|
||||
|
||||
// initialTemperature: not set — OpenAI models use the global fallback (0.5);
|
||||
// NoTemperature models are handled client-side via LLM_IF_HOTFIX_NoTemperature (not propagated to OR)
|
||||
return { interfaces, parameterSpecs };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user