@tryhamster/gerbil 1.3.0 → 1.3.1

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.
@@ -387,8 +387,8 @@ declare const extract: Skill<{
387
387
  declare const ExtractFromImageInput: z.ZodObject<{
388
388
  image: z.ZodString;
389
389
  extract: z.ZodDefault<z.ZodEnum<{
390
- code: "code";
391
390
  text: "text";
391
+ code: "code";
392
392
  data: "data";
393
393
  table: "table";
394
394
  diagram: "diagram";
@@ -406,7 +406,7 @@ declare const ExtractFromImageInput: z.ZodObject<{
406
406
  type ExtractFromImageInput = z.infer<typeof ExtractFromImageInput>;
407
407
  declare const extractFromImage: Skill<{
408
408
  image: string;
409
- extract: "code" | "text" | "data" | "table" | "diagram" | "form" | "receipt";
409
+ extract: "text" | "code" | "data" | "table" | "diagram" | "form" | "receipt";
410
410
  outputFormat: "raw" | "json" | "markdown" | "csv";
411
411
  language?: string | undefined;
412
412
  }, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryhamster/gerbil",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "On-device LLM inference for the browser and Node.js — text, vision, speech (TTS/STT), and embeddings on a native WebGPU engine. Offline, private, no API keys. React hooks, MCP, and Vercel AI SDK included.",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",