Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/Tutorials/chat-with-files.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ This example uses a local Langflow instance, and it asks the LLM to evaluate a s
If you don't have a resume on hand, you can download [fake-resume.txt](/files/fake-resume.txt).

:::tip
For help with constructing file upload requests in Python, JavaScript, and curl, see the [Langflow File Upload Utility](https://langflow-file-upload-examples.onrender.com).
For help with constructing file upload requests in Python, JavaScript, and curl, see the [Langflow File Upload Utility](https://langflow-file-upload-examples.21cgwws14kdz.us-east.codeengine.appdomain.cloud/).
:::

1. To construct the request, gather the following information:
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/Tutorials/chat-with-rag.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ In situations where many users load data or you need to load data programmatical
To load data programmatically, use the `/v2/files/` and `/v1/run/$FLOW_ID` endpoints. The first endpoint loads a file to your Langflow server, and then returns an uploaded file path. The second endpoint runs the **Load Data Flow**, referencing the uploaded file path, to chunk, embed, and load the data into the vector store.

The following script demonstrates this process.
For help with creating this script, use the [Langflow File Upload Utility](https://langflow-file-upload-examples.onrender.com/).
For help with creating this script, use the [Langflow File Upload Utility](https://langflow-file-upload-examples.21cgwws14kdz.us-east.codeengine.appdomain.cloud/).

```js
// Node 18+ example using global fetch, FormData, and Blob
Expand Down
Loading