1- # Agentic- DSPy 🚀
1+ # Agenspy ( Agentic DSPy) 🚀
22
3- [ ![ PyPI Version] ( https://img.shields.io/pypi/v/agentic-dspy .svg )] ( https://pypi.org/project/agentic-dspy / )
4- [ ![ Python Version] ( https://img.shields.io/pypi/pyversions/agentic-dspy .svg )] ( https://pypi.org/project/agentic-dspy / )
3+ [ ![ PyPI Version] ( https://img.shields.io/pypi/v/agenspy .svg )] ( https://pypi.org/project/agenspy / )
4+ [ ![ Python Version] ( https://img.shields.io/pypi/pyversions/agenspy .svg )] ( https://pypi.org/project/agenspy / )
55[ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://opensource.org/licenses/MIT )
66[ ![ Code Style: Black] ( https://img.shields.io/badge/code%20style-black-000000.svg )] ( https://github.com/psf/black )
77[ ![ Ruff] ( https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json )] ( https://github.com/astral-sh/ruff )
88
9- ** Agentic-DSPy ** is a protocol-first AI agent framework built on top of DSPy, designed to create sophisticated, production-ready AI agents with support for multiple communication protocols including MCP (Model Context Protocol) and Agent2Agent.
9+ ** Agenspy ** (Agentic DSPy) is a protocol-first AI agent framework built on top of DSPy, designed to create sophisticated, production-ready AI agents with support for multiple communication protocols including MCP (Model Context Protocol) and Agent2Agent.
1010
1111## 🌟 Features
1212
2121
2222### Basic Installation
2323``` bash
24- pip install agentic-dspy
24+ pip install agenspy
2525```
2626
2727### With MCP Support
2828``` bash
29- pip install " agentic-dspy [mcp]"
29+ pip install " agenspy [mcp]"
3030```
3131
3232### Development Installation
3333``` bash
34- git clone https://github.com/Shashikant86/Agentic-DSPy .git
35- cd Agentic-DSPy
34+ git clone https://github.com/superagenticai/Agenspy .git
35+ cd Agenspy
3636pip install -e " .[dev]"
3737```
3838
@@ -42,14 +42,14 @@ pip install -e ".[dev]"
4242
4343``` python
4444import dspy
45- from agentic_dspy import create_mcp_agent
45+ from agenspy import create_mcp_pr_review_agent
4646
4747# Configure DSPy with your preferred language model
4848lm = dspy.LM(' openai/gpt-4o-mini' )
4949dspy.configure(lm = lm)
5050
5151# Create an MCP agent
52- agent = create_mcp_agent (" mcp://github-server:8080" )
52+ agent = create_mcp_pr_review_agent (" mcp://github-server:8080" )
5353
5454# Use the agent to review a pull request
5555result = agent(
@@ -64,7 +64,7 @@ print(f"Status: {result.approval_status}")
6464### Multi-Protocol Agent (Experimental)
6565
6666``` python
67- from agentic_dspy import MultiProtocolAgent, MCPClient, Agent2AgentClient
67+ from agenspy import MultiProtocolAgent, MCPClient, Agent2AgentClient
6868
6969# Create a multi-protocol agent
7070agent = MultiProtocolAgent(" my-agent" )
@@ -83,7 +83,7 @@ result = agent("Analyze this repository for security issues")
8383### Custom Agent with Tools
8484
8585``` python
86- from agentic_dspy import BaseAgent
86+ from agenspy import BaseAgent
8787from typing import Dict, Any
8888
8989class CodeReviewAgent (BaseAgent ):
@@ -107,7 +107,7 @@ result = await agent.review_code("def add(a, b): return a + b", "python")
107107
108108# 🏗️ Architecture
109109
110- Agentic-DSPy provides a protocol-first approach to building AI agents:
110+ Agenspy provides a protocol-first approach to building AI agents:
111111
112112```
113113┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
@@ -140,7 +140,7 @@ Agentic-DSPy provides a protocol-first approach to building AI agents:
140140### Advanced Usage Example: Custom MCP Server
141141
142142``` python
143- from agentic_dspy .servers import BaseMCPServer
143+ from agenspy .servers import BaseMCPServer
144144import asyncio
145145
146146class CustomMCPServer (BaseMCPServer ):
@@ -160,39 +160,39 @@ server.start()
160160
161161## 🖥️ Command Line Interface
162162
163- Agentic-DSPy provides a command-line interface for managing agents and protocols:
163+ Agenspy provides a command-line interface for managing agents and protocols:
164164
165165### Basic Commands
166166``` bash
167167# Show help and available commands
168- adspy --help
168+ agenspy --help
169169
170170# Show version information
171- adspy --version
171+ agenspy --version
172172```
173173
174174### Agent Management
175175``` bash
176176# List available agents
177- adspy agent --help
177+ agenspy agent --help
178178```
179179
180180### Protocol Management
181181``` bash
182182# List available protocols
183- adspy protocol --help
183+ agenspy protocol --help
184184
185185# Test protocol connection
186- adspy protocol test [PROTOCOL] [--server SERVER]
186+ agenspy protocol test [PROTOCOL] [--server SERVER]
187187
188188# Get detailed information about a protocol
189- adspy protocol info [PROTOCOL_NAME]
189+ agenspy protocol info [PROTOCOL_NAME]
190190```
191191
192192### Server Management
193193``` bash
194194# Start the server
195- adspy server --help
195+ agenspy server --help
196196```
197197
198198## 📚 Documentation
@@ -238,11 +238,11 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
238238- [ DSPy Documentation] ( https://dspy.ai/ )
239239- [ Model Context Protocol] ( https://modelcontextprotocol.io/ )
240240- [ Agent2Agent Protocol] ( https://google.github.io/A2A/ )
241- - [ GitHub Repository] ( https://github.com/Shashikant86/Agentic-DSPy )
241+ - [ GitHub Repository] ( https://github.com/superagenticai/Agenspy )
242242
243243## 📬 Contact
244244
245- For questions and support, please open an issue on our [ GitHub repository] ( https://github.com/Shashikant86/Agentic-DSPy /issues ) .
245+ For questions and support, please open an issue on our [ GitHub repository] ( https://github.com/superagenticai/Agenspy /issues ) .
246246
247247## 🙏 Acknowledgments
248248
0 commit comments