update commnet

This commit is contained in:
Andrew Pareles 2025-05-05 17:06:06 -07:00
parent afacd32407
commit 4570068fa9
2 changed files with 2 additions and 2 deletions

View file

@ -276,7 +276,7 @@ const SimpleModelSettingsDialog = ({
onClose();
};
const sourcecodeOverridesLink = `https://github.com/voideditor/void/blob/fa782243c981faf4a0f7742d59271d6b0615982b/src/vs/workbench/contrib/void/common/modelCapabilities.ts#L144-L170`
const sourcecodeOverridesLink = `https://github.com/voideditor/void/blob/afacd324077c2a5759d16a79ff9c075add3759e9/src/vs/workbench/contrib/void/common/modelCapabilities.ts#L144-L168`
return (
<div // Backdrop

View file

@ -149,7 +149,7 @@ export type VoidStaticModelInfo = { // not stateful
supportsSystemMessage: false | 'system-role' | 'developer-role' | 'separated'; // typically you should use 'system-role'. 'separated' means the system message is passed as a separate field (e.g. anthropic)
specialToolFormat?: 'openai-style' | 'anthropic-style' | 'gemini-style', // typically you should use 'openai-style'. null means "can't call tools by default", and asks the LLM to output XML in agent mode
supportsFIM: boolean;
supportsFIM: boolean; // whether the model was specifically designed for autocomplete or "FIM" ("fill-in-middle" format)
// reasoning options
reasoningCapabilities: false | {