GitHub - iteebz/cogency: Cognitive Architecture for AI Agents
Cogency
3-line AI agents that just work
Cogency is a multistep reasoning framework that makes building AI agents stupidly simple. Auto-detects providers, intelligently routes tools, streams transparent reasoning.
Installation
# Current broken until next release v0.3.1 (pending)
# Recommended: Fork and install from source
pip install cogency
Quick Start
import asyncio
from cogency import Agent
async def main():
# That's it. Auto-detects LLM from .env
agent = Agent("assistant")
result = await agen...
Read more at github.com