utilitas 1999.1.3 → 1999.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/alan.mjs +2 -2
- package/lib/manifest.mjs +1 -1
- package/package.json +1 -1
package/lib/alan.mjs
CHANGED
|
@@ -69,7 +69,7 @@ const [
|
|
|
69
69
|
'medium', 'think', '<think>', '</think>', 'AZURE', '<tools>',
|
|
70
70
|
'</tools>', 'tools', 'text', 'thinking', 'OK', 'function',
|
|
71
71
|
'gpt-4.5-preview', 'redacted_thinking', 'gemma-3-27b-it',
|
|
72
|
-
'
|
|
72
|
+
'Azure Openai', 'Anthropic', 'Vertex Anthropic', 'gemma3:27b',
|
|
73
73
|
7680 * 4320, [], 10, { log: true }, 'Alan', 'user', 'system',
|
|
74
74
|
'assistant', 'model', 'json_object', 'tool', true,
|
|
75
75
|
'AI engine has not been initialized.', 'Invalid file data.', 1.1, 100,
|
|
@@ -1360,7 +1360,7 @@ const initChat = async (options = {}) => {
|
|
|
1360
1360
|
assert(spTokens < mxPmpt,
|
|
1361
1361
|
`System prompt is too long: ${spTokens} / ${mxPmpt} tokens.`);
|
|
1362
1362
|
}
|
|
1363
|
-
return chatConfig;
|
|
1363
|
+
return { chatConfig, ais };
|
|
1364
1364
|
};
|
|
1365
1365
|
|
|
1366
1366
|
const defaultSession = session => ({
|
package/lib/manifest.mjs
CHANGED