contential
Advanced tools
Comparing version 0.0.51 to 0.0.52
{ | ||
"name": "contential", | ||
"description": "Contential - JavaScript Client", | ||
"version": "0.0.51", | ||
"version": "0.0.52", | ||
"dependencies": {}, | ||
@@ -6,0 +6,0 @@ "typesVersions": { |
@@ -18,3 +18,17 @@ export type PromptClientOptions = { | ||
export interface PromptOptionsData { | ||
text: string; | ||
response: string; | ||
request?: PromptRequest; | ||
} | ||
export type PromptRequest = { | ||
id: string; | ||
created: string; | ||
userId: string; | ||
projectId: string; | ||
prompt: string; | ||
temperature: number; | ||
duration: number; | ||
durationText: string; | ||
error?: string; | ||
metadata?: unknown; | ||
response?: string; | ||
}; |
78217
1735