diff --git a/docs/docs/components/embeddings.mdx b/docs/docs/components/embeddings.mdx index 015ba1ce1a..d4ad175426 100644 --- a/docs/docs/components/embeddings.mdx +++ b/docs/docs/components/embeddings.mdx @@ -98,9 +98,9 @@ Used to load [OpenAI’s](https://openai.com/) embedding models. Wrapper around [Google Vertex AI](https://cloud.google.com/vertex-ai) [Embeddings API](https://cloud.google.com/vertex-ai/docs/generative-ai/embeddings/get-text-embeddings). -:::info + Vertex AI is a cloud computing platform offered by Google Cloud Platform (GCP). It provides access, management, and development of applications and services through global data centers. To use Vertex AI PaLM, you need to have the [google-cloud-aiplatform](https://pypi.org/project/google-cloud-aiplatform/) Python package installed and credentials configured for your environment. -::: + - **credentials:** The default custom credentials (google.auth.credentials.Credentials) to use. - **location:** The default location to use when making API calls – defaults to `us-central1`. diff --git a/docs/docs/components/llms.mdx b/docs/docs/components/llms.mdx index 088556d2fa..d723643764 100644 --- a/docs/docs/components/llms.mdx +++ b/docs/docs/components/llms.mdx @@ -40,9 +40,10 @@ Wrapper around Anthropic's large language model used for chat-based interactions The `CTransformers` component provides access to the Transformer models implemented in C/C++ using the [GGML](https://github.com/ggerganov/ggml) library. -:::info + + Make sure to have the `ctransformers` python package installed. Learn more about installation, supported models, and usage [here](https://github.com/marella/ctransformers). -::: + **config:** Configuration for the Transformer models. Check out [config](https://github.com/marella/ctransformers#config). Defaults to: @@ -115,9 +116,9 @@ Wrapper around [Cohere's](https://cohere.com) large language models. Wrapper around [HuggingFace](https://www.huggingface.co/models) models. -:::info + The HuggingFace Hub is an online platform that hosts over 120k models, 20k datasets, and 50k demo apps, all of which are open-source and publicly available. Discover more at [HuggingFace](http://www.huggingface.co). -::: + - **huggingfacehub_api_token:** Token needed to authenticate the API. - **model_kwargs:** Keyword arguments to pass to the model. @@ -130,9 +131,9 @@ The HuggingFace Hub is an online platform that hosts over 120k models, 20k datas The `LlamaCpp` component provides access to the `llama.cpp` models. -:::info + Make sure to have the `llama.cpp` python package installed. Learn more about installation, supported models, and usage [here](https://github.com/ggerganov/llama.cpp). -::: + - **echo:** Whether to echo the prompt – defaults to `False`. - **f16_kv:** Use half-precision for key/value cache – defaults to `True`. @@ -181,9 +182,9 @@ Wrapper around [OpenAI's](https://openai.com) large language models. Wrapper around [Google Vertex AI](https://cloud.google.com/vertex-ai) large language models. -:::info + Vertex AI is a cloud computing platform offered by Google Cloud Platform (GCP). It provides access, management, and development of applications and services through global data centers. To use Vertex AI PaLM, you need to have the [google-cloud-aiplatform](https://pypi.org/project/google-cloud-aiplatform/) Python package installed and credentials configured for your environment. -::: + - **credentials:** The default custom credentials (google.auth.credentials.Credentials) to use. - **location:** The default location to use when making API calls – defaults to `us-central1`. @@ -203,9 +204,9 @@ Vertex AI is a cloud computing platform offered by Google Cloud Platform (GCP). Wrapper around [Google Vertex AI](https://cloud.google.com/vertex-ai) large language models. -:::info + Vertex AI is a cloud computing platform offered by Google Cloud Platform (GCP). It provides access, management, and development of applications and services through global data centers. To use Vertex AI PaLM, you need to have the [google-cloud-aiplatform](https://pypi.org/project/google-cloud-aiplatform/) Python package installed and credentials configured for your environment. -::: + - **credentials:** The default custom credentials (google.auth.credentials.Credentials) to use. - **location:** The default location to use when making API calls – defaults to `us-central1`. diff --git a/docs/docs/deployment/gcp-deployment.md b/docs/docs/deployment/gcp-deployment.md index 771550f248..032426d947 100644 --- a/docs/docs/deployment/gcp-deployment.md +++ b/docs/docs/deployment/gcp-deployment.md @@ -4,9 +4,8 @@ This guide will help you set up a Langflow development VM in a Google Cloud Platform project using Google Cloud Shell. -:::note -When Cloud Shell opens, be sure to select **Trust repo**. Some `gcloud` commands might not run in an ephemeral Cloud Shell environment. -::: +> Note: When Cloud Shell opens, be sure to select **Trust repo**. Some `gcloud` commands might not run in an ephemeral Cloud Shell environment. + ## Standard VM diff --git a/docs/docs/examples/buffer-memory.mdx b/docs/docs/examples/buffer-memory.mdx index 2b5b765861..3167081a50 100644 --- a/docs/docs/examples/buffer-memory.mdx +++ b/docs/docs/examples/buffer-memory.mdx @@ -14,6 +14,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; alt="Docusaurus themed image" sources={{ light: "img/buffer-memory.png", + dark: "img/buffer-memory.png", }} /> diff --git a/docs/docs/examples/conversation-chain.mdx b/docs/docs/examples/conversation-chain.mdx index db31818811..1cd59ca55a 100644 --- a/docs/docs/examples/conversation-chain.mdx +++ b/docs/docs/examples/conversation-chain.mdx @@ -20,6 +20,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; alt="Docusaurus themed image" sources={{ light: "img/basic-chat.png", + dark: "img/basic-chat.png", }} /> diff --git a/docs/docs/examples/csv-loader.mdx b/docs/docs/examples/csv-loader.mdx index c59dfc1e76..351e994405 100644 --- a/docs/docs/examples/csv-loader.mdx +++ b/docs/docs/examples/csv-loader.mdx @@ -32,6 +32,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; alt="Docusaurus themed image" sources={{ light: "img/csv-loader.png", + dark: "img/csv-loader.png", }} /> @@ -39,12 +40,12 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; -- [`CSVLoader`](https://python.langchain.com/docs/modules/data_connection/document_loaders/integrations/csv) +- [`CSVLoader`](https://python.langchain.com/docs/integrations/document_loaders/csv) - [`CharacterTextSplitter`](https://python.langchain.com/docs/modules/data_connection/document_transformers/text_splitters/character_text_splitter) -- [`OpenAIEmbedding`](https://python.langchain.com/docs/modules/data_connection/text_embedding/integrations/openai) -- [`Chroma`](https://python.langchain.com/docs/modules/data_connection/vectorstores/integrations/chroma) +- [`OpenAIEmbedding`](https://python.langchain.com/docs/integrations/text_embedding/openai) +- [`Chroma`](https://python.langchain.com/docs/integrations/vectorstores/chroma) - [`VectorStoreInfo`](https://python.langchain.com/docs/modules/data_connection/vectorstores/) - [`OpenAI`](https://python.langchain.com/docs/modules/model_io/models/llms/integrations/openai) -- [`VectorStoreAgent`](https://python.langchain.com/docs/modules/agents/toolkits/vectorstore) +- [`VectorStoreAgent`](https://js.langchain.com/docs/modules/agents/tools/how_to/agents_with_vectorstores) diff --git a/docs/docs/examples/flow-runner.mdx b/docs/docs/examples/flow-runner.mdx index c496cd7454..e20dc39f7e 100644 --- a/docs/docs/examples/flow-runner.mdx +++ b/docs/docs/examples/flow-runner.mdx @@ -14,6 +14,7 @@ The CustomComponent class allows us to create components that interact with Lang alt="Document Processor Component" sources={{ light: "img/flow_runner.png", + dark: "img/flow_runner.png", }} style={{ width: "30%", @@ -339,6 +340,7 @@ Done! This is what our script and custom component looks like: alt="Document Processor Code" sources={{ light: "img/flow_runner_code.png", + dark: "img/flow_runner_code.png", }} style={{ maxWidth: "100%", @@ -353,6 +355,7 @@ Done! This is what our script and custom component looks like: alt="Document Processor Component" sources={{ light: "img/flow_runner.png", + dark: "img/flow_runner.png", }} style={{ width: "40%", diff --git a/docs/docs/examples/how-upload-examples.mdx b/docs/docs/examples/how-upload-examples.mdx index 2b1a2b06c7..4f54558ebe 100644 --- a/docs/docs/examples/how-upload-examples.mdx +++ b/docs/docs/examples/how-upload-examples.mdx @@ -12,6 +12,7 @@ Langflow Examples is a repository on [GitHub](https://github.com/logspace-ai/lan alt="Docusaurus themed image" sources={{ light: "img/community-examples.png", + dark: "img/community-examples.png", }} style={{ width: "100%" }} /> diff --git a/docs/docs/examples/midjourney-prompt-chain.mdx b/docs/docs/examples/midjourney-prompt-chain.mdx index c79bb0b277..9df732026b 100644 --- a/docs/docs/examples/midjourney-prompt-chain.mdx +++ b/docs/docs/examples/midjourney-prompt-chain.mdx @@ -32,6 +32,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; alt="Docusaurus themed image" sources={{ light: "img/midjourney-prompt-chain.png", + dark: "img/midjourney-prompt-chain.png", }} /> @@ -40,6 +41,6 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; - [`OpenAI`](https://python.langchain.com/docs/modules/model_io/models/llms/integrations/openai) -- [`ConversationSummaryMemory`](https://python.langchain.com/docs/modules/memory/how_to/summary) +- [`ConversationSummaryMemory`](https://python.langchain.com/docs/modules/memory/types/summary) diff --git a/docs/docs/examples/multiple-vectorstores.mdx b/docs/docs/examples/multiple-vectorstores.mdx index 0c9f11c4c8..2e554bbf13 100644 --- a/docs/docs/examples/multiple-vectorstores.mdx +++ b/docs/docs/examples/multiple-vectorstores.mdx @@ -24,7 +24,7 @@ https://pt.wikipedia.org/wiki/Harry_Potter Learn more about Multiple Vector Stores - [here](https://python.langchain.com/docs/modules/agents/toolkits/vectorstore?highlight=Multiple%20Vector%20Stores#multiple-vectorstores). + [here](https://python.langchain.com/docs/modules/data_connection/vectorstores/). ## ⛓️ Langflow Example @@ -37,6 +37,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; alt="Docusaurus themed image" sources={{ light: "img/multiple-vectorstores.png", + dark: "img/multiple-vectorstores.png", }} /> @@ -44,14 +45,14 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; -- [`WebBaseLoader`](https://python.langchain.com/docs/modules/data_connection/document_loaders/integrations/web_base) -- [`TextLoader`](https://python.langchain.com/docs/modules/data_connection/document_loaders/integrations/unstructured_file) +- [`WebBaseLoader`](https://python.langchain.com/docs/integrations/document_loaders/web_base) +- [`TextLoader`](https://python.langchain.com/docs/modules/data_connection/document_loaders/) - [`CharacterTextSplitter`](https://python.langchain.com/docs/modules/data_connection/document_transformers/text_splitters/character_text_splitter) -- [`OpenAIEmbedding`](https://python.langchain.com/docs/modules/data_connection/text_embedding/integrations/openai) -- [`Chroma`](https://python.langchain.com/docs/modules/data_connection/vectorstores/integrations/chroma) +- [`OpenAIEmbedding`](https://python.langchain.com/docs/integrations/text_embedding/openai) +- [`Chroma`](https://python.langchain.com/docs/integrations/vectorstores/chroma) - [`VectorStoreInfo`](https://python.langchain.com/docs/modules/data_connection/vectorstores/) - [`OpenAI`](https://python.langchain.com/docs/modules/model_io/models/llms/integrations/openai) -- [`VectorStoreRouterToolkit`](https://python.langchain.com/docs/modules/agents/toolkits/vectorstore) -- [`VectorStoreRouterAgent`](https://python.langchain.com/docs/modules/agents/toolkits/vectorstore) +- [`VectorStoreRouterToolkit`](https://js.langchain.com/docs/modules/agents/tools/how_to/agents_with_vectorstores) +- [`VectorStoreRouterAgent`](https://js.langchain.com/docs/modules/agents/tools/how_to/agents_with_vectorstores) diff --git a/docs/docs/examples/python-function.mdx b/docs/docs/examples/python-function.mdx index f537075c6b..9eadd72734 100644 --- a/docs/docs/examples/python-function.mdx +++ b/docs/docs/examples/python-function.mdx @@ -28,7 +28,7 @@ The `AgentInitializer` component is a quick way to construct an agent from the m The `PythonFunction` is a custom component that uses the LangChain 🦜🔗 tool decorator. Learn more about it - [here](https://python.langchain.com/docs/modules/agents/tools/how_to/custom_tools). + [here](https://python.langchain.com/docs/modules/agents/tools/custom_tools). ## ⛓️ Langflow Example @@ -41,6 +41,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; alt="Docusaurus themed image" sources={{ light: "img/python-function.png", + dark: "img/python-function.png", }} /> @@ -48,7 +49,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; -- [`PythonFunctionTool`](https://python.langchain.com/docs/modules/agents/tools/how_to/custom_tools) +- [`PythonFunctionTool`](https://python.langchain.com/docs/modules/agents/tools/custom_tools) - [`ChatOpenAI`](https://python.langchain.com/docs/modules/model_io/models/chat/integrations/openai) - [`AgentInitializer`](https://python.langchain.com/docs/modules/agents/) diff --git a/docs/docs/examples/serp-api-tool.mdx b/docs/docs/examples/serp-api-tool.mdx index 60e55791a9..7e8d95936e 100644 --- a/docs/docs/examples/serp-api-tool.mdx +++ b/docs/docs/examples/serp-api-tool.mdx @@ -22,7 +22,7 @@ The `ZeroShotAgent` takes the `LLMChain` and the `Search` tool as inputs, using Learn more about the Serp API - [here](https://python.langchain.com/docs/modules/agents/tools/integrations/serpapi). + [here](https://python.langchain.com/docs/integrations/providers/serpapi ). ## ⛓️ Langflow Example @@ -35,6 +35,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; alt="Docusaurus themed image" sources={{ light: "img/serp-api-tool.png", + dark: "img/serp-api-tool.png", }} /> @@ -45,7 +46,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; - [`ZeroShotPrompt`](https://python.langchain.com/docs/modules/model_io/prompts/prompt_templates/) - [`OpenAI`](https://python.langchain.com/docs/modules/model_io/models/llms/integrations/openai) - [`LLMChain`](https://python.langchain.com/docs/modules/chains/foundational/llm_chain) -- [`Search`](https://python.langchain.com/docs/modules/agents/tools/integrations/serpapi) +- [`Search`](https://python.langchain.com/docs/integrations/providers/serpapi) - [`ZeroShotAgent`](https://python.langchain.com/docs/modules/agents/how_to/custom_mrkl_agent) diff --git a/docs/docs/getting-started/creating-flows.mdx b/docs/docs/getting-started/creating-flows.mdx index b09951f420..aecc3ea169 100644 --- a/docs/docs/getting-started/creating-flows.mdx +++ b/docs/docs/getting-started/creating-flows.mdx @@ -13,6 +13,7 @@ Creating flows with Langflow is easy. Drag sidebar components onto the canvas an alt="Docusaurus themed image" sources={{ light: "img/langflow_canvas.png", + dark: "img/langflow_canvas.png" }} /> diff --git a/docs/docs/getting-started/hugging-face-spaces.mdx b/docs/docs/getting-started/hugging-face-spaces.mdx index acc4bb8d52..4759ea398e 100644 --- a/docs/docs/getting-started/hugging-face-spaces.mdx +++ b/docs/docs/getting-started/hugging-face-spaces.mdx @@ -12,6 +12,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; alt="Docusaurus themed image" sources={{ light: "img/hugging-face.png", + dark: "img/hugging-face.png", }} style={{ width: "100%" }} /> diff --git a/docs/docs/guidelines/api.mdx b/docs/docs/guidelines/api.mdx index 97d2db76ec..8bba633fb4 100644 --- a/docs/docs/guidelines/api.mdx +++ b/docs/docs/guidelines/api.mdx @@ -17,6 +17,7 @@ Langflow offers an API Key functionality that allows users to access their indiv alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/api-key.png"), + dark: useBaseUrl("img/api-key.png"), }} style={{ width: "50%", maxWidth: "600px", margin: "0 auto" }} /> diff --git a/docs/docs/guidelines/chat-interface.mdx b/docs/docs/guidelines/chat-interface.mdx index 0ac23dc8aa..5da5d46473 100644 --- a/docs/docs/guidelines/chat-interface.mdx +++ b/docs/docs/guidelines/chat-interface.mdx @@ -13,6 +13,7 @@ Langflow’s chat interface provides a user-friendly experience and functionalit alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/chat_interface.png"), + dark: useBaseUrl("img/chat_interface.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> @@ -25,6 +26,7 @@ Notice that editing variables in the chat interface take place temporarily and w alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/chat_interface2.png"), + dark: useBaseUrl("img/chat_interface2.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> @@ -36,6 +38,7 @@ To view the complete prompt in its original, structured format, click the "Displ alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/chat_interface3.png"), + dark: useBaseUrl("img/chat_interface3.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> @@ -47,6 +50,7 @@ In the chat interface, you can redefine which variable should be interpreted as alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/chat_interface4.png"), + dark: useBaseUrl("img/chat_interface4.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> diff --git a/docs/docs/guidelines/chat-widget.mdx b/docs/docs/guidelines/chat-widget.mdx index 7f6737fea8..46ed974a8e 100644 --- a/docs/docs/guidelines/chat-widget.mdx +++ b/docs/docs/guidelines/chat-widget.mdx @@ -38,6 +38,7 @@ import Admonition from "@theme/Admonition"; alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/widget-sidebar.png"), + dark: useBaseUrl("img/widget-sidebar.png"), }} style={{ width: "50%", maxWidth: "600px", margin: "0 auto" }} /> @@ -53,6 +54,7 @@ import Admonition from "@theme/Admonition"; alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/widget-code.png"), + dark: useBaseUrl("img/widget-code.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> diff --git a/docs/docs/guidelines/components.mdx b/docs/docs/guidelines/components.mdx index 7188bf1e02..32ec006153 100644 --- a/docs/docs/guidelines/components.mdx +++ b/docs/docs/guidelines/components.mdx @@ -30,6 +30,7 @@ Components are the building blocks of the flows. They are made of inputs, output alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/single-compenent.png"), + dark: useBaseUrl("img/single-compenent.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> diff --git a/docs/docs/guidelines/custom-component.mdx b/docs/docs/guidelines/custom-component.mdx index 4f18d0375a..99106d4005 100644 --- a/docs/docs/guidelines/custom-component.mdx +++ b/docs/docs/guidelines/custom-component.mdx @@ -63,6 +63,7 @@ class DocumentProcessor(CustomComponent): alt="Document Processor Component" sources={{ light: "img/document_processor.png", + dark: "img/document_processor.png", }} style={{ margin: "0 auto", @@ -330,6 +331,7 @@ All done! This is what our script and brand-new custom component look like: alt="Document Processor Code" sources={{ light: "img/document_processor_code.png", + dark: "img/document_processor_code.png", }} style={{ maxWidth: "100%", @@ -344,6 +346,7 @@ All done! This is what our script and brand-new custom component look like: alt="Document Processor Component" sources={{ light: "img/document_processor.png", + dark: "img/document_processor.png", }} style={{ width: "40%", diff --git a/docs/docs/guidelines/features.mdx b/docs/docs/guidelines/features.mdx index 6235b68dbf..19837430df 100644 --- a/docs/docs/guidelines/features.mdx +++ b/docs/docs/guidelines/features.mdx @@ -18,6 +18,7 @@ import Admonition from "@theme/Admonition"; alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/features.png"), + dark: useBaseUrl("img/features.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> diff --git a/docs/docs/guidelines/login.mdx b/docs/docs/guidelines/login.mdx index 85ca1371f6..fde7cd09a2 100644 --- a/docs/docs/guidelines/login.mdx +++ b/docs/docs/guidelines/login.mdx @@ -86,6 +86,7 @@ With _`LANGFLOW_AUTO_LOGIN`_ set to _`False`_, Langflow requires users to sign u alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/sign-up.png"), + dark: useBaseUrl("img/sign-up.png"), }} style={{ width: "50%", maxWidth: "600px", margin: "0 auto" }} /> @@ -102,6 +103,7 @@ Users can change their profile settings by clicking on the profile icon in the t alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/my-account.png"), + dark: useBaseUrl("img/my-account.png"), }} style={{ width: "50%", maxWidth: "600px", margin: "0 auto" }} /> @@ -112,6 +114,7 @@ By clicking on **Profile Settings**, the user is taken to the profile settings p alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/profile-settings.png"), + dark: useBaseUrl("img/profile-settings.png"), }} style={{ maxWidth: "600px", margin: "0 auto" }} /> @@ -122,6 +125,7 @@ By clicking on **Admin Page**, the superuser is taken to the admin page, where t alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/admin-page.png"), + dark: useBaseUrl("img/admin-page.png"), }} style={{ maxWidth: "600px", margin: "0 auto" }} diff --git a/docs/docs/guidelines/prompt-customization.mdx b/docs/docs/guidelines/prompt-customization.mdx index efb5b3928a..2a1b1f2106 100644 --- a/docs/docs/guidelines/prompt-customization.mdx +++ b/docs/docs/guidelines/prompt-customization.mdx @@ -13,6 +13,7 @@ The prompt template allows users to create prompts and define variables that pro alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/prompt_customization.png"), + dark: useBaseUrl("img/prompt_customization.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> @@ -25,6 +26,7 @@ Variables can be used to define instructions, questions, context, inputs, or exa alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/prompt_customization2.png"), + dark: useBaseUrl("img/prompt_customization2.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> @@ -37,6 +39,7 @@ Once inserted, these variables are immediately recognized as new fields in the p alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/prompt_customization3.png"), + dark: useBaseUrl("img/prompt_customization3.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> @@ -49,6 +52,7 @@ You can also use documents or output parsers as prompt variables. By plugging th alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/prompt_customization4.png"), + dark: useBaseUrl("img/prompt_customization4.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> @@ -63,6 +67,7 @@ If working with an interactive (chat-like) flow, remember to keep one of the inp alt="Docusaurus themed image" sources={{ light: useBaseUrl("img/prompt_customization5.png"), + dark: useBaseUrl("img/prompt_customization5.png"), }} style={{ width: "100%", maxWidth: "800px", margin: "0 auto" }} /> diff --git a/docs/docs/index.mdx b/docs/docs/index.mdx index 512d2578bc..840f10f101 100644 --- a/docs/docs/index.mdx +++ b/docs/docs/index.mdx @@ -12,6 +12,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; alt="Docusaurus themed image" sources={{ light: "img/new_langflow_demo.gif", + dark: "img/new_langflow_demo.gif", }} style={{ width: "100%" }} /> diff --git a/docs/static/videos/langflow_api.mp4 b/docs/static/videos/langflow_api.mp4 index 7bb270f6bc..f0daa52663 100644 Binary files a/docs/static/videos/langflow_api.mp4 and b/docs/static/videos/langflow_api.mp4 differ diff --git a/docs/static/videos/langflow_build.mp4 b/docs/static/videos/langflow_build.mp4 index fffd21aec7..9d068fa01e 100644 Binary files a/docs/static/videos/langflow_build.mp4 and b/docs/static/videos/langflow_build.mp4 differ diff --git a/docs/static/videos/langflow_collection.mp4 b/docs/static/videos/langflow_collection.mp4 index f240d1be04..69d1727769 100644 Binary files a/docs/static/videos/langflow_collection.mp4 and b/docs/static/videos/langflow_collection.mp4 differ diff --git a/docs/static/videos/langflow_collection_example.mp4 b/docs/static/videos/langflow_collection_example.mp4 index 31cc949613..e58ea31e4a 100644 Binary files a/docs/static/videos/langflow_collection_example.mp4 and b/docs/static/videos/langflow_collection_example.mp4 differ diff --git a/docs/static/videos/langflow_fork.mp4 b/docs/static/videos/langflow_fork.mp4 index c9b75bc230..03c280c35d 100644 Binary files a/docs/static/videos/langflow_fork.mp4 and b/docs/static/videos/langflow_fork.mp4 differ diff --git a/docs/static/videos/langflow_parameters.mp4 b/docs/static/videos/langflow_parameters.mp4 index c7599e6493..370ca5f368 100644 Binary files a/docs/static/videos/langflow_parameters.mp4 and b/docs/static/videos/langflow_parameters.mp4 differ diff --git a/docs/static/videos/langflow_widget.mp4 b/docs/static/videos/langflow_widget.mp4 index d5514a9487..7894316f71 100644 Binary files a/docs/static/videos/langflow_widget.mp4 and b/docs/static/videos/langflow_widget.mp4 differ