We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd9d66d commit c7d68f7Copy full SHA for c7d68f7
1 file changed
components/PromptForm.tsx
@@ -17,7 +17,7 @@ export function PromptForm({ onDirtyChange }: PromptFormProps) {
17
const { prompts, addOptimistic, refresh } = usePrompts();
18
const [title, setTitle] = useState("");
19
const [content, setContent] = useState("");
20
- const [model, setModel] = useState<PromptModel>("");
+ const [model, setModel] = useState<PromptModel>("gpt-4o");
21
const [collection, setCollection] = useState("");
22
const [tags, setTags] = useState<string[]>([]);
23
const [tagInput, setTagInput] = useState("");
0 commit comments