diff --git a/docs/docs/API-Reference/api-files.mdx b/docs/docs/API-Reference/api-files.mdx index 996fd141e0..31d4508a87 100644 --- a/docs/docs/API-Reference/api-files.mdx +++ b/docs/docs/API-Reference/api-files.mdx @@ -235,7 +235,7 @@ To send image files to your flows through the API, see [Upload image files (v1)] ::: This endpoint uploads files to your Langflow server's file management system. -To use an uploaded file in a flow, send the file path to a flow with a [**Read File** component](/components-data#file). +To use an uploaded file in a flow, send the file path to a flow with a [**Read File** component](/read-file). The default file limit is 1024 MB. To configure this value, change the `LANGFLOW_MAX_FILE_SIZE_UPLOAD` [environment variable](/environment-variables). diff --git a/docs/docs/API-Reference/api-flows-run.mdx b/docs/docs/API-Reference/api-flows-run.mdx index 2cc6646aa5..fbc78631be 100644 --- a/docs/docs/API-Reference/api-flows-run.mdx +++ b/docs/docs/API-Reference/api-flows-run.mdx @@ -175,7 +175,7 @@ curl -X POST \ Use the `/webhook` endpoint to start a flow by sending an HTTP `POST` request. :::tip -After you add a [**Webhook** component](/components-data#webhook) to a flow, open the [**API access** pane](/concepts-publish), and then click the **Webhook curl** tab to get an automatically generated `POST /webhook` request for your flow. +After you add a [**Webhook** component](/webhook) to a flow, open the [**API access** pane](/concepts-publish), and then click the **Webhook curl** tab to get an automatically generated `POST /webhook` request for your flow. For more information, see [Trigger flows with webhooks](/webhook). ::: diff --git a/docs/docs/Agents/agents-tools.mdx b/docs/docs/Agents/agents-tools.mdx index 7007acd120..d3c269ab27 100644 --- a/docs/docs/Agents/agents-tools.mdx +++ b/docs/docs/Agents/agents-tools.mdx @@ -198,7 +198,7 @@ inputs = [ ## Use flows as tools -An agent can use your other flows as tools with the [**Run Flow** component](/components-logic#run-flow). +An agent can use your other flows as tools with the [**Run Flow** component](/run-flow). 1. Add a **Run Flow** component to your flow. 2. Select the flow you want the agent to use as a tool. diff --git a/docs/docs/Agents/agents.mdx b/docs/docs/Agents/agents.mdx index a3796f7b40..09a6776551 100644 --- a/docs/docs/Agents/agents.mdx +++ b/docs/docs/Agents/agents.mdx @@ -32,7 +32,7 @@ For more information, see [Agent component parameters](#agent-component-paramete 4. Enter a valid credential for your selected model provider. Make sure that the credential has permission to call the selected model. -5. Add [**Chat Input** and **Chat Output** components](/components-io) to your flow, and then connect them to the **Agent** component. +5. Add [**Chat Input** and **Chat Output** components](/chat-input-and-output) to your flow, and then connect them to the **Agent** component. At this point, you have created a basic LLM-based chat flow that you can test in the