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/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
- reasoning_effort: options.reasoning_effort,
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
@@ -1,7 +1,7 @@
1
1
  const manifest = {
2
2
  "name": "utilitas",
3
3
  "description": "Just another common utility for JavaScript.",
4
- "version": "1999.1.99",
4
+ "version": "2000.1.2",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/utilitas",
7
7
  "main": "index.mjs",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "utilitas",
3
3
  "description": "Just another common utility for JavaScript.",
4
- "version": "1999.1.99",
4
+ "version": "2000.1.2",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/utilitas",
7
7
  "main": "index.mjs",