mtxuilib 0.1.161 → 0.1.162
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import DEFAULT_RETRIEVAL_TEXT from "mtxlib/DefaultRetrievalText";
|
|
3
2
|
import { useState } from "react";
|
|
4
3
|
export function UploadDocumentsForm() {
|
|
5
4
|
const [isLoading, setIsLoading] = useState(false);
|
|
6
|
-
const [document, setDocument] = useState(
|
|
5
|
+
const [document, setDocument] = useState("fack document123");
|
|
7
6
|
const ingest = async (e) => {
|
|
8
7
|
e.preventDefault();
|
|
9
8
|
setIsLoading(true);
|