Drag & drop UI to build your customized LLM flow
Build LLM flows easily with our intuitive drag & drop interface. No coding required!
Integrate with popular LLMs like OpenAI, Hugging Face, and more.
Free and open-source platform for building your AI applications.
// Create a new chatflow
const chatflow = new ChatFlow();
// Add OpenAI node
chatflow.addNode({
type: "llm",
model: "gpt-3.5-turbo",
temperature: 0.7
});
// Add conversation memory
chatflow.addNode({
type: "memory",
chatHistory: true
});
// Connect to API endpoint
chatflow.deploy({
endpoint: "/api/chat"
});
Use our visual editor to design your chatbot's conversation flow with drag-and-drop nodes.
Choose and configure your preferred AI model (OpenAI, HuggingFace, etc.).
Implement conversation memory to maintain context throughout the chat.
Deploy your chatbot and integrate it into your website or application.