chore: remove internal framework references

This commit is contained in:
Salka Elmadani 2026-02-25 02:56:55 +00:00
parent 16ab3e51b0
commit 44664bcc5f
2 changed files with 1 additions and 5 deletions

View File

@ -5,7 +5,6 @@
**Federated inference network. Your idle hardware earns you compute credits.** **Federated inference network. Your idle hardware earns you compute credits.**
IX Relay is the khettara for AI power: ancient Moroccan underground canals that
deliver water using only gravity. IX Relay delivers inference using idle community compute. deliver water using only gravity. IX Relay delivers inference using idle community compute.
``` ```
@ -37,7 +36,6 @@ GET /health — Service status
- New accounts start with 10 free credits - New accounts start with 10 free credits
## Philosophy ## Philosophy
The khettara: built by many, maintained by many, flowing to anyone who needs it.
Built in Morocco for the world. 🇲🇦 Built in Morocco for the world. 🇲🇦

View File

@ -2,11 +2,10 @@
""" """
IX Relay Federated Inference Network IX Relay Federated Inference Network
Part of the Inference-X Ecosystem Part of the Inference-X Ecosystem
# SALKA ELMADANI | inference-x.com | BSL-1.1 # SALKA ELMADANI | inference-x.com | BSL-1.1
Copyright (C) 2024-2026 Salka Elmadani. BSL-1.1. Copyright (C) 2024-2026 Salka Elmadani. BSL-1.1.
https://git.inference-x.com/inference-x-community/ix-relay https://git.inference-x.com/inference-x-community/ix-relay
The khettara for AI power.
Your idle hardware earns you compute credits. Your idle hardware earns you compute credits.
Share compute. Earn credits. Use when you need it. Share compute. Earn credits. Use when you need it.
""" """
@ -95,6 +94,5 @@ async def health():
if __name__ == "__main__": if __name__ == "__main__":
import uvicorn import uvicorn
print("IX Relay — Federated Inference Network") print("IX Relay — Federated Inference Network")
print("The khettara for AI power.")
print("Built in Morocco for the world.") print("Built in Morocco for the world.")
uvicorn.run(app, host="0.0.0.0", port=int(os.environ.get("PORT","7938"))) uvicorn.run(app, host="0.0.0.0", port=int(os.environ.get("PORT","7938")))