Getting Started
Last updated
Last updated
Welcome to BrainyFlow! This guide will help you get started with the framework.
First, make sure you have BrainyFlow installed. Follow the instructions in the .
BrainyFlow uses a simple yet powerful abstraction based on a Graph + Shared Store:
: Represents a single unit of work, often involving an LLM call or data processing.
: Connects Nodes together to define the sequence of operations.
: A dictionary-like object passed between nodes, allowing them to share data.
: Enables processing multiple data items in parallel or sequentially.
Let's imagine a simple Question-Answering flow:
GetQuestionNode: Takes user input.
AnswerNode: Uses an LLM to answer the question based on the input.
This flow would involve:
GetQuestionNode
writing the user's question to the shared
store.
AnswerNode
reading the question from the shared
store, calling an LLM utility, and writing the answer back to the shared
store.
BrainyFlow is designed for Agentic Coding, where humans focus on high-level design and AI agents handle the implementation details.
Defining Requirements
Designing the Flow (using diagrams like the one above)
Identifying and implementing necessary Utility Functions (like an LLM wrapper)
Designing Node interactions with the Shared Store
Implementing the Nodes and Flow
Optimizing the prompts and flow
Ensuring Reliability with testing and error handling
Before diving into complex code, review the to understand the recommended development process. This involves:
BrainyFlow supports various like Agents, RAG, and MapReduce. Explore these patterns to build more sophisticated applications.
While BrainyFlow doesn't include built-in utilities, check the examples for guidance on implementing common functionalities like LLM wrappers, web search, and vector database interactions.
Dive deeper into the documentation.
Explore the to see how BrainyFlow can be applied.
Start building your first application following the .