openai-api
Advanced tools
Comparing version 1.0.6 to 1.0.7
{ | ||
"name": "openai-api", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "A tiny client module for the openAI API", | ||
@@ -12,2 +12,4 @@ "main": "index.js", | ||
"gpt-3", | ||
"gpt3", | ||
"openaiapi", | ||
"open", | ||
@@ -14,0 +16,0 @@ "ai", |
@@ -33,3 +33,3 @@ # openai-api | ||
stream: false, | ||
stop: '\n' | ||
stop: ['\n', "testing"] | ||
}); | ||
@@ -36,0 +36,0 @@ |
@@ -18,3 +18,4 @@ const api_key = process.env.OPENAI_TEST_API_KEY; | ||
maxTokens: 5, | ||
temperature: 0.9 | ||
temperature: 0.9, | ||
stop: ["\n", "lol"] | ||
}).then((result) => { | ||
@@ -21,0 +22,0 @@ assert.ok(result); |
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
4649
99