chatgpt-jdasa
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -279,3 +279,3 @@ // src/chatgpt-api.ts | ||
const delta = response.choices[0].delta; | ||
result.delta = delta.content; | ||
result.delta = delta == null ? void 0 : delta.content; | ||
if (delta == null ? void 0 : delta.content) | ||
@@ -282,0 +282,0 @@ result.text += delta.content; |
{ | ||
"name": "chatgpt-jdasa", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Node.js client for the official ChatGPT API,support gpt-4o and image_url.", | ||
@@ -5,0 +5,0 @@ "author": "Travis Fischer <travis@transitivebullsh.it>", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
131208