utilitas 1999.1.99 → 2000.1.2
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/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/alan.mjs +1 -1
- package/lib/manifest.mjs +1 -1
- package/package.json +1 -1
package/lib/alan.mjs
CHANGED
|
@@ -831,7 +831,7 @@ const promptOpenAI = async (aiId, content, options = {}) => {
|
|
|
831
831
|
), ...model?.tools && !googleImageMode ? {
|
|
832
832
|
tools: options.tools ?? packedTools, tool_choice: 'auto',
|
|
833
833
|
} : {}, store: true, stream: true,
|
|
834
|
-
|
|
834
|
+
reasoning: { effort: options.reasoning_effort },
|
|
835
835
|
});
|
|
836
836
|
for await (event of resp) {
|
|
837
837
|
// print(JSON.stringify(event, null, 2));
|
package/lib/manifest.mjs
CHANGED