@scoopika/scoopika
Advanced tools
Comparing version 2.1.4 to 2.1.5
@@ -739,7 +739,7 @@ import { Store, SavedProvider, ProvidersName, VoiceResponse, Audio, StoreSession, RunHistory, RunInputs, RunOptions, Hooks, ToolSchema, ModelTextResponse, ModelObjectResponse, CoreTool, HooksHub } from '@scoopika/types'; | ||
}) => Promise<{ | ||
error: string; | ||
data: null; | ||
error: string; | ||
} | { | ||
data: DATA; | ||
error: null; | ||
data: NonNullable<Awaited<DATA>>; | ||
}>; | ||
@@ -762,7 +762,7 @@ generateObjectWithSchema<DATA>({ inputs, prompt, schema, options, max_tries, }: { | ||
}): Promise<{ | ||
error: string; | ||
data: null; | ||
error: string; | ||
} | { | ||
data: DATA; | ||
error: null; | ||
data: NonNullable<Awaited<DATA>>; | ||
}>; | ||
@@ -769,0 +769,0 @@ addTool<PARAMETERS extends ZodTypeAny, RESULT = any>(tool_schema: CoreTool<PARAMETERS, RESULT>): void; |
{ | ||
"name": "@scoopika/scoopika", | ||
"version": "2.1.4", | ||
"version": "2.1.5", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
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
157032