Turn any AI model into a node in a global network. Provide services. Consume services. Earn credits.
pip install gemmanet
10 lines of Python to turn your model into a service on the network.
5 lines of Python to access any AI capability on the network.
Your node earns GemmaCredits for every request it processes.
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
Works with Gemma, Llama, Qwen, OpenAI, or any model. Bring whatever you have.
Apache 2.0 licensed. Run it, modify it, deploy it. No vendor lock-in.
SDK, API docs, examples. Start building in 10 minutes.