New Features π
- Vibe Flow (Beta): Build and execute multi-modal AI flows from natural language descriptions.
- LoopTask: Iterate steps (refine β critique β improve) without introducing cycles in the main DAG.
- Web Search Support: Search Agent now supports Google Custom Search alongside Intellicloud semantic search.
- CustomAgent: Base class to plug in proprietary logic or local models into any Flow.
Code Example
Describe your workflow in plain English and let VibeFlow build it:
from intelli.flow.vibe import VibeFlow
import asyncio
async def run_vibe():
vf = VibeFlow(
planner_provider="openai",
planner_api_key="YOUR_KEY",
text_model="openai gpt-5.2"
)
flow = await vf.build("Summarize the input text and then translate the summary into French.")
results = await flow.start(initial_input="IntelliNode is an open-source library...")
print(results)
asyncio.run(run_vibe())More docs:
- Vibe Agents: https://docs.intellinode.ai/docs/python/vibe-agents
- Search Agent: https://docs.intellinode.ai/docs/python/flows/search-agent