Replies: 3 comments
-
🤖 Hey @junaid33, great to see you back in the LangFlow community! I hope everything is going well for you. Let's dive into your question. Yes, you can add collections to your self-hosted version of LangFlow without an API key. The LangFlow code includes an endpoint for uploading files that contain flows. This endpoint is defined in the function The collections that you upload should be in the format of a list of flows. Each flow in the list should be a dictionary that matches the FlowCreate schema. Here is a sample format: [
{
"key1": "value1",
"key2": "value2",
...
},
{
"key1": "value1",
"key2": "value2",
...
},
...
] Each dictionary in the list represents a flow and should contain keys and values that match the FlowCreate schema. The exact keys and values would depend on the specifics of the FlowCreate schema. The
This schema is used when creating a new flow. The I hope this helps! If you have any other questions, feel free to ask. Best, SourcesThis response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research. Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant. If you want to continue the conversation, start your reply with @dosu-bot. |
Beta Was this translation helpful? Give feedback.
-
For example flows you can clone this repo and import the json flows from this repos examples directory as projects: https://github.com/langflow-ai/langflow_examples. You can also google search: site:github.com "langflow" flow json examples |
Beta Was this translation helpful? Give feedback.
-
Hi! 👋 We are using other channels as our official means of communication with users. We apologize for the delayed response. Thank you for your understanding. Best regards, |
Beta Was this translation helpful? Give feedback.
-
Hello, I recently upgraded my self-hosted version of LangFlow, but the example collections are gone. I see a store now, but I need a key to add any of those examples? Can I upload those collections without a key? I'd like to use LangFlow without any external APIs.
Beta Was this translation helpful? Give feedback.
All reactions