MCPcopy Create free account
hub / github.com/admineral/OpenAI-Assistant-API-Chat / WelcomeFormProps

Interface WelcomeFormProps

app/components/WelcomeForm.tsx:8–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6const statusToProgress: Record<string, number> = statusToProgressRecord;
7
8interface WelcomeFormProps {
9 assistantName: string;
10 setAssistantName: (name: string) => void;
11 assistantDescription: string;
12 setAssistantDescription: (description: string) => void;
13 assistantModel: string;
14 setAssistantModel: (model: string) => void;
15 startChatAssistant: () => void;
16 isButtonDisabled: boolean;
17 isStartLoading: boolean;
18 statusMessage: string;
19 fileIds: string[];
20 setFileIds: React.Dispatch<React.SetStateAction<string[]>>;
21}
22
23const WelcomeForm: React.FC<WelcomeFormProps> = ({
24 assistantName,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected