Skip to content

Commit

Permalink
fix: Increase max prompt length to 500 chars instead of 100
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedBassem committed Nov 9, 2024
1 parent 2b6eb7c commit 8ce272d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/types/prompts.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { z } from "zod";

const MAX_PROMPT_TEXT_LENGTH = 100;
const MAX_PROMPT_TEXT_LENGTH = 500;

export const zAppliesToEnumSchema = z.enum(["all", "text", "images"]);

Expand Down

0 comments on commit 8ce272d

Please sign in to comment.