From 44664bcc5fdee8463c4ae1a672b4329c3d20f51b Mon Sep 17 00:00:00 2001 From: Salka Elmadani Date: Wed, 25 Feb 2026 02:56:55 +0000 Subject: [PATCH] chore: remove internal framework references --- README.md | 2 -- ix_relay.py | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index fca7f3a..faf3917 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ **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. ``` @@ -37,7 +36,6 @@ GET /health — Service status - New accounts start with 10 free credits ## Philosophy -The khettara: built by many, maintained by many, flowing to anyone who needs it. Built in Morocco for the world. 🇲🇦 diff --git a/ix_relay.py b/ix_relay.py index 6928d28..6cb04dd 100644 --- a/ix_relay.py +++ b/ix_relay.py @@ -2,11 +2,10 @@ """ IX Relay — Federated Inference Network 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. https://git.inference-x.com/inference-x-community/ix-relay -The khettara for AI power. Your idle hardware earns you compute credits. Share compute. Earn credits. Use when you need it. """ @@ -95,6 +94,5 @@ async def health(): if __name__ == "__main__": import uvicorn print("IX Relay — Federated Inference Network") - print("The khettara for AI power.") print("Built in Morocco for the world.") uvicorn.run(app, host="0.0.0.0", port=int(os.environ.get("PORT","7938")))