Skip to content

intelli v1.4.1

Latest

Choose a tag to compare

@Barqawiz Barqawiz released this 22 Dec 11:43
· 33 commits to main since this release
9c2b7fe

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:

Contributors