A minimal RAG/agent orchestration framework
A minimal framework for building distributed AI pipelines. Write async functions, compose them with .go(), and scale them across clusters.
.go() and let the scheduler handle parallelism automatically@service marks classes for distributed executionpip install thinkagain
# or with uv
uv add thinkagain
import thinkagain as ta
@ta.op
async def add_one(x: int) -> int:
return x + 1
@ta.op
async def multiply(x: int, factor: int) -> int:
return x * factor
async def pipeline(x: int) -> int:
# Submit tasks immediately (non-blocking)
x_ref = add_one.go(x)
result_ref = multiply.go(x_ref, 3)
# Wait for result
return await result_ref
result = await pipeline(5) # Returns 18
import thinkagain as ta
# CPU-only service
@ta.service()
class Retriever:
async def retrieve(self, query: str) -> list[str]:
return ["doc1", "doc2", "doc3"]
# GPU service
@ta.service(gpus=4)
class Generator:
def __init__(self):
self.model = load_llm()
async def generate(self, que
Open-source AI coding agent for the terminal. Claude Code-grade accuracy with smart model routing — uses the right AI model for each task, cutting costs 10x. Supports Claude, GPT, Gemini, DeepSeek & more.
A general-purpose Python framework for building LLM agents and multi-agent systems. "Four lines of code, an agent with memory."
Ultimate LLM API Integration Cookbook 2026 for Cursor & AI Agents
Ultimate Multi-Agent OS for Autonomous AI NPCs 2026
PrivateAgent is an open-source Android automation agent built with Flutter. It utilizes the DeepSeek API and native Android Accessibility Services to interpret screen layouts and execute multi-step tasks across any installed application via natural language commands.
把一队分工 Agent 织成一条写小说的流水线,做成桌面客户端;写作指纹让它越写越像你(BYO DeepSeek key,纯本地)。
Workflows from the Neura Market marketplace related to this DeepSeek resource