🐍 – framework to build vertical AI agent
Upsonic Framework - A Reliability-Focused Framework for Production-Ready AI Agents
pip install upsonic
export OPENAI_API_KEY=sk-***
from upsonic import Task, Agent task = Task("Who developed you?") agent = Agent("Coder") agent.print_do(task)
web_agent = Agent("Web Content Analyzer", model="openai/gpt-4o") task = Task(description="Fetch and analyze content from a URL.", context=["https://upsonic.ai"]) result = web_agent.print_do(task)
researcher = Agent("Company Researcher", company_url="https://redis.io/")
🐍 – an openAI middleware proxy to use mcp in any existing openAI compatible client
📇 – Use MCP provided tools in LangChain.js
A CLI host application that enables Large Language Models (LLMs) to interact with external tools through the Model Context Protocol (MCP).
🐍 ☁️ MCP server for Claude to talk to ChatGPT and use its web search capability.