Socket
Socket
Sign inDemoInstall

@axflow/models

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@axflow/models - npm Package Compare versions

Comparing version 0.0.21 to 0.0.22

19

dist/openai/chat.d.ts

@@ -54,2 +54,10 @@ type SharedRequestOptions = {

tool_call_id?: string;
tool_calls?: Array<{
id: string;
type: 'function';
function: {
name: string;
arguments: string;
};
}>;
};

@@ -81,3 +89,3 @@ type Response = {

delta: Delta;
finish_reason: 'stop' | 'length' | 'function_call' | null;
finish_reason: 'stop' | 'length' | 'function_call' | 'tool_calls' | null;
}>;

@@ -92,2 +100,11 @@ };

};
tool_calls?: Array<{
index: number;
id?: string;
type?: 'function';
function: {
name?: string;
arguments: string;
};
}>;
};

@@ -94,0 +111,0 @@ }

4

package.json
{
"name": "@axflow/models",
"version": "0.0.21",
"version": "0.0.22",
"description": "Zero-dependency, modular SDK for building robust natural language applications",

@@ -199,3 +199,3 @@ "author": "Axflow (https://axflow.dev)",

},
"gitHead": "03f48e81ef0e01fbbcdc2c82b2e8841e7a2bcc86"
"gitHead": "fe68d6e2f3cf2eab0f18808f95dd31ddfd4cd9d6"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc