qualifire 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/types.d.ts +2 -2
  2. package/package.json +4 -3
package/lib/types.d.ts CHANGED
@@ -78,7 +78,7 @@ export declare const inputSchema: z.ZodObject<{
78
78
  }[];
79
79
  caller?: string | undefined;
80
80
  }>;
81
- export type Input = z.infer<typeof inputSchema>;
81
+ export type Input = z.infer<typeof inputSchema> | string;
82
82
  export declare const outputSchema: z.ZodObject<{
83
83
  id: z.ZodString;
84
84
  created: z.ZodOptional<z.ZodNumber>;
@@ -162,7 +162,7 @@ export declare const outputSchema: z.ZodObject<{
162
162
  } | undefined;
163
163
  system_fingerprint?: string | undefined;
164
164
  }>;
165
- export type Output = z.infer<typeof outputSchema>;
165
+ export type Output = z.infer<typeof outputSchema> | string;
166
166
  export declare const evaluationSchema: z.ZodObject<{
167
167
  async: z.ZodBoolean;
168
168
  input: z.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qualifire",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Qualifire client SDK",
5
5
  "main": "./lib/index.js",
6
6
  "files": [
@@ -24,8 +24,8 @@
24
24
  "license": "MIT",
25
25
  "author": {
26
26
  "name": "Qualifire",
27
- "email": "admin@qualifire.xyz",
28
- "url": "https://qualifire.xyz"
27
+ "email": "support@qualifire.ai",
28
+ "url": "https://qualifire.ai"
29
29
  },
30
30
  "engines": {
31
31
  "node": ">=12.0"
@@ -114,6 +114,7 @@
114
114
  ]
115
115
  },
116
116
  "dependencies": {
117
+ "openai": "^4.28.4",
117
118
  "zod": "^3.22.4"
118
119
  }
119
120
  }