()
| 57 | const [toasts, addToast] = useToasts(); |
| 58 | |
| 59 | const handleSubmit = async () => { |
| 60 | setIsSubmitting(true); |
| 61 | |
| 62 | try { |
| 63 | const selectedDocumentsList = Array.from(selectedDocuments.values()).flat(); |
| 64 | |
| 65 | const chatType: ChatType = |
| 66 | selectedDocumentsList.length === 0 |
| 67 | ? ChatType.CHAT_WITH_LLM |
| 68 | : ChatType.CHAT_WITH_DOCS; |
| 69 | |
| 70 | let documentCollectionId: Id<DocumentCollectionResponse> | undefined = |
| 71 | undefined; |
| 72 | if (chatType === ChatType.CHAT_WITH_DOCS) { |
| 73 | const documentCollection = await createDocumentCollection(orgSlug, {}); |
| 74 | documentCollectionId = Id.from(documentCollection.id); |
| 75 | await createDocuments(documentCollectionId, selectedDocumentsList); |
| 76 | } |
| 77 | |
| 78 | const chatResponse = await postChat(orgSlug, { |
| 79 | type: chatType, |
| 80 | documentCollectionId: documentCollectionId?.toString(), |
| 81 | }); |
| 82 | const chatId = Id.from(chatResponse.id); |
| 83 | |
| 84 | const chatMessageResponse = await postChatMessage(chatId, { |
| 85 | message: { |
| 86 | content: input, |
| 87 | role: "user", |
| 88 | }, |
| 89 | }); |
| 90 | |
| 91 | router.push( |
| 92 | `${FrontendRoutes.getChatRoute(orgSlug, chatId)}?src=new-chat`, |
| 93 | ); |
| 94 | } catch (e) { |
| 95 | console.log("couldn't create chat/chat-message", e); |
| 96 | addToast({ |
| 97 | type: "failure", |
| 98 | children: <p>Something went wrong. Please try again later.</p>, |
| 99 | }); |
| 100 | setIsSubmitting(false); |
| 101 | } |
| 102 | }; |
| 103 | |
| 104 | // Fetch organization |
| 105 | const { data: organizationResponse, error: fetchOrganizationError } = useSWR( |
no test coverage detected