This commit is contained in:
Timothy Jaeryang Baek
2025-05-16 22:17:47 +04:00
parent 50bc6d9b12
commit 363ac35c09
7 changed files with 39 additions and 36 deletions

View File

@@ -12,14 +12,16 @@
'Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.'
),
citations: $i18n.t('Displays citations in the response'),
switch_thinking: $i18n.t('Sends `enable_thinking: true` in the request. \nSupported toggle providers will return thinking content')
reasoning: $i18n.t(
'Sends `enable_thinking: true` in the request. \nSupported toggle providers will return thinking content'
)
};
export let capabilities: {
vision?: boolean;
usage?: boolean;
citations?: boolean;
switch_thinking?: boolean;
reasoning?: boolean;
} = {};
</script>

View File

@@ -77,9 +77,9 @@
};
let capabilities = {
vision: true,
usage: undefined,
citations: true,
switch_thinking: false,
usage: undefined,
reasoning: false
};
let knowledge = [];