The Operating System for the AI Economy

Turn any AI model into a node in a global network. Provide services. Consume services. Earn credits.

Get Started View on GitHub
pip install gemmanet
🖥

Provide AI Services

10 lines of Python to turn your model into a service on the network.

Consume AI Services

5 lines of Python to access any AI capability on the network.

🪙

Earn Credits

Your node earns GemmaCredits for every request it processes.

Create a Node in 10 Lines

from gemmanet import Node

def my_handler(content, **params):
    return my_model.generate(content)  # Any model

node = Node(
    name='my-service',
    capabilities=['translate', 'summarize'],
)
node.register_handler('translate', my_handler)
node.start()  # Join the global network

Why GemmaNet

Model Agnostic

Works with Gemma, Llama, Qwen, OpenAI, or any model. Bring whatever you have.

Open Source

Apache 2.0 licensed. Run it, modify it, deploy it. No vendor lock-in.

Built for Developers

SDK, API docs, examples. Start building in 10 minutes.

Ready to build?

Read the Quick Start View on GitHub