Skip to main content

Customizable AI Agent Communication Framework with pluggable message improvement logic

Project description

NANDA Adapter

Bring your local agent. Make it persistent, discoverable and interoperable on the global internet with NANDA.

Help us build an Open and Vibrant Internet of Agents

Features

  • Multiple AI Frameworks: Support for LangChain, CrewAI, and any custom logic.
  • Multi-protocol Communication: Built-in protocol that allows universal communication
  • Global Index: Automatic agent discovery via MIT NANDA Index
  • SSL Support: Production-ready with Let's Encrypt certificates
Screenshot 2025-07-15 at 8 41 36 PM

Installation

Basic Installation

pip install nanda-agent

Steps to create a test example using this repo

1. Clone this repository

git clone github.com/projnanda/adapter

2. Setup dependencies

cd nanda_agent/examples

pip install -r requirements.txt

3. Configure your Domain and SSL Certificates (move certificates into current path)

sudo certbot certonly --standalone -d <YOUR_DOMAIN_NAME.COM>

sudo cp -L /etc/letsencrypt/live/<YOUR_DOMAIN_NAME.COM>/fullchain.pem .

sudo cp -L /etc/letsencrypt/live/<YOUR_DOMAIN_NAME.COM>/privkey.pem .

sudo chown $USER:$USER fullchain.pem privkey.pem

chmod 600 fullchain.pem privkey.pem`

4. Set Your enviroment variables ANTHROPIC_API_KEY (For running your personal hosted agents, need API key and your own domain)

export ANTHROPIC_API_KEY="your-api-key-here

export DOMAIN_NAME="<YOUR_DOMAIN_NAME.COM>

5. Run an example agent (langchain_pirate.py)

nohup python3 langchain_pirate.py > out.log 2>&1 &

6. Get your enrollment link from Log File

cat out.log

Examples for How to create your own agent

You can create an agent using your custom ReACT framework or any agent package like LangChain, CrewAI etc.

Then, you can deploy to internet of Agents using one line of code via NANDA.

1. Custom Agent

2.1 Write your improvement logic using the framework you like. Here it is a simple moduule without any llm call.
2.4 Move this file into your server(the domain should match to the IP address) and run this python file in background 
#!/usr/bin/env python3
from nanda_agent import NANDA
import os

def create_custom_improvement():
    """Create your custom improvement function"""
    
    def custom_improvement_logic(message_text: str) -> str:
        """Transform messages according to your logic"""
        try:
            # Your custom transformation logic here
            improved_text = message_text.replace("hello", "greetings")
            improved_text = improved_text.replace("goodbye", "farewell")
            
            return improved_text
        except Exception as e:
            print(f"Error in improvement: {e}")
            return message_text  # Fallback to original
    
    return custom_improvement_logic

def main():
    # Create your improvement function
    my_improvement = create_custom_improvement()
    
    # Initialize NANDA with your custom logic
    nanda = NANDA(my_improvement)
    
    # Start the server
    anthropic_key = os.getenv("ANTHROPIC_API_KEY")
    domain = os.getenv("DOMAIN_NAME")
    
    nanda.start_server_api(anthropic_key, domain)

if __name__ == "__main__":
    main()

Deploy a LangChain Agent

from nanda_agent import NANDA
from langchain_core.prompts import PromptTemplate
from langchain_core.output_parsers import StrOutputParser
from langchain_anthropic import ChatAnthropic

def create_langchain_improvement():
    llm = ChatAnthropic(
        api_key=os.getenv("ANTHROPIC_API_KEY"),
        model="claude-3-haiku-20240307"
    )
    
    prompt = PromptTemplate(
        input_variables=["message"],
        template="Make this message more professional: {message}"
    )
    
    chain = prompt | llm | StrOutputParser()
    
    def langchain_improvement(message_text: str) -> str:
        return chain.invoke({"message": message_text})
    
    return langchain_improvement

# Use it
nanda = NANDA(create_langchain_improvement())
# Start the server
anthropic_key = os.getenv("ANTHROPIC_API_KEY")
domain = os.getenv("DOMAIN_NAME")

nanda.start_server_api(anthropic_key, domain)

Deploy a CrewAI Agent

from nanda_agent import NANDA
from crewai import Agent, Task, Crew
from langchain_anthropic import ChatAnthropic

def create_crewai_improvement():
    llm = ChatAnthropic(
        api_key=os.getenv("ANTHROPIC_API_KEY"),
        model="claude-3-haiku-20240307"
    )
    
    improvement_agent = Agent(
        role="Message Improver",
        goal="Improve message clarity and professionalism",
        backstory="You are an expert communicator.",
        llm=llm
    )
    
    def crewai_improvement(message_text: str) -> str:
        task = Task(
            description=f"Improve this message: {message_text}",
            agent=improvement_agent,
            expected_output="An improved version of the message"
        )
        
        crew = Crew(agents=[improvement_agent], tasks=[task])
        result = crew.kickoff()
        return str(result)
    
    return crewai_improvement

# Use it
nanda = NANDA(create_crewai_improvement())
# Start the server
anthropic_key = os.getenv("ANTHROPIC_API_KEY")
domain = os.getenv("DOMAIN_NAME")

nanda.start_server_api(anthropic_key, domain)

Deploy from Scratch on a barebones machine (Ubuntu on Linode or Amazon Linux on EC2)

Assuming your customized improvement logic is in langchain_pirate.py

2. ssh into the server, ensure the latest software is in the system
Ubuntu Command : ssh root@<IP>
      sudo apt update  && sudo apt install python3 python3-pip python3-venv certbot

EC2 cmd : ssh -i <YOUR_PEM_KEY> ec2-user@<IP>
      sudo dnf update -y && sudo dnf install -y python3.11 python3.11-pip certbot

3. Move to the respective folder and create and Activate a virtual env in the folder where files are moved in step 1
cmd : cd /opt/test-agents && python3 -m venv <YOUR_ENV_NAME> && source <YOUR_ENV_NAME>/bin/activate

EC2 cmd: cd /home/ec2-user/test-agents && python3.11 -m <YOUR_ENV_NAME> jinoos && source <YOUR_ENV_NAME>/bin/activate

4. Generate SSL certificates on this machine for your domain.
(For ex: You should ensure in  DNS an A record is mapping this domain <DOMAIN_NAME> to IP address <YOUR_IP>). Ensure the domain has to be changed
   
cmd : sudo certbot certonly --standalone -d <YOUR_DOMAIN_NAME> 

5. Move certificates to current folder for access and provide required access
Ensure the domain has to be changed

    sudo cp -L /etc/letsencrypt/live/<YOUR_DOMAIN_NAME>/fullchain.pem .
    sudo cp -L /etc/letsencrypt/live/<YOUR_DOMAIN_NAME>/privkey.pem .
    sudo chown $USER:$USER fullchain.pem privkey.pem
    chmod 600 fullchain.pem privkey.pem

6. Install the requirements file 
cmd : python -m pip install --upgrade pip && pip3 install -r requirements.txt 

7. Ensure the env variables are available either through .env or you can provide export 
cmd : export ANTHROPIC_API_KEY=my-anthropic-key && export DOMAIN_NAME=my-domain

8. Run the new improvement logic as a batch process 
cmd : nohup python3 langchain_pirate.py > out.log 2>&1 &

9. Open the log file and you could find the agent enrollment link
cmd : cat out.log

10. Take the link and go to browser for registration

The framework will automatically:

  • Generate SSL certificates using Let's Encrypt
  • Set up proper agent registration
  • Configure production-ready logging

Appendix: Configuration Details

Environment Variables

You need the following environment details ()

  • ANTHROPIC_API_KEY: Your Anthropic API key (required)
  • DOMAIN_NAME: Domain name for SSL certificates (required)
  • AGENT_ID: Custom agent ID (optional, auto-generated if not provided)
  • PORT: Agent bridge port (optional, default: 6000)
  • IMPROVE_MESSAGES: Enable/disable message improvement (optional, default: true)

Production Deployment

For production deployment with SSL:

export ANTHROPIC_API_KEY="your-api-key"
export DOMAIN_NAME="your-domain.com"
nanda-pirate

API Endpoints

When running with start_server_api(), the following endpoints are available:

  • GET /api/health - Health check
  • POST /api/send - Send message to agent
  • GET /api/agents/list - List registered agents
  • POST /api/receive_message - Receive message from agent
  • GET /api/render - Get latest message

Agent Communication

Agents can communicate with each other using the @agent_id syntax:

@agent123 Hello there!

The message will be improved using your custom logic before being sent.

Command Line Tools

# Show help
nanda-agent --help

# List available examples
nanda-agent --list-examples

# Run specific examples
nanda-pirate              # Simple pirate agent
nanda-pirate-langchain    # LangChain pirate agent
nanda-sarcastic           # CrewAI sarcastic agent

Architecture

The NANDA framework consists of:

  1. AgentBridge: Core communication handler
  2. Message Improvement System: Pluggable improvement logic
  3. Registry System: Agent discovery and registration
  4. A2A Communication: Agent-to-agent messaging
  5. Flask API: External communication interface

Support

For issues and questions:

Changelog

v1.0.0

  • Initial release
  • Basic NANDA framework
  • LangChain integration
  • CrewAI integration
  • Example agents
  • Production deployment support

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nanda_agent-1.0.5.tar.gz (28.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nanda_agent-1.0.5-py3-none-any.whl (29.2 kB view details)

Uploaded Python 3

File details

Details for the file nanda_agent-1.0.5.tar.gz.

File metadata

  • Download URL: nanda_agent-1.0.5.tar.gz
  • Upload date:
  • Size: 28.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.0

File hashes

Hashes for nanda_agent-1.0.5.tar.gz
Algorithm Hash digest
SHA256 7d09990471b0165f16b4d8156ff615f40321d5f51c00cbc55e070123dffb09eb
MD5 352be2ba374cd953798b2581a1cc2827
BLAKE2b-256 704e6acaa5bbb57f603d5ae1fcabc9aabb6917dd2067becc9799b8830ce557bd

See more details on using hashes here.

File details

Details for the file nanda_agent-1.0.5-py3-none-any.whl.

File metadata

  • Download URL: nanda_agent-1.0.5-py3-none-any.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.0

File hashes

Hashes for nanda_agent-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 0caaa34b0e0e8c6415918dfe899b82bcde067826a461a410ebb6bbf7ad8823d2
MD5 702774a2ccb548a84639a102a77dec79
BLAKE2b-256 8c5ffc343913a3f56613c9ca74816750da5ac0535d8f1b7cfb0058198dcd2755

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page