| 6 | const statusToProgress: Record<string, number> = statusToProgressRecord; |
| 7 | |
| 8 | interface 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 | |
| 23 | const WelcomeForm: React.FC<WelcomeFormProps> = ({ |
| 24 | assistantName, |
nothing calls this directly
no outgoing calls
no test coverage detected