From 52ce9940aad2c0ec5c6428cabca062d0a50c48c3 Mon Sep 17 00:00:00 2001 From: Salka Elmadani Date: Wed, 25 Feb 2026 02:56:52 +0000 Subject: [PATCH] chore: remove internal framework references --- README.md | 3 --- ix_voice.py | 6 ++---- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6bd6019..1ad5c26 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,6 @@ Same philosophy as IX Engine: **local, private, yours.** ## What it does -- Analyze voice characteristics from a WAV sample (Z-equation based) - Synthesize speech with cloned vocal profile - Zero cloud dependency — runs entirely on your hardware - Export and share voice models with the community @@ -28,10 +27,8 @@ GET /health — System status ## Philosophy Your voice is yours. No cloud upload. No subscription. -Signal processing on your own silicon, powered by the Z-equation. ``` -Z = dI/d(log s) * exp(i*theta) ``` Built in Morocco for the world. 🇲🇦 diff --git a/ix_voice.py b/ix_voice.py index ea1f9b0..bb91056 100644 --- a/ix_voice.py +++ b/ix_voice.py @@ -6,14 +6,12 @@ Part of the Inference-X Ecosystem Copyright (C) 2024-2026 Salka Elmadani. BSL-1.1. https://inference-x.com https://git.inference-x.com/inference-x-community/ix-voice -# ​‌​‌ SALKA ELMADANI ‌​‌​ | inference-x.com | BSL-1.1 +# SALKA ELMADANI | inference-x.com | BSL-1.1 Philosophy: Local. Private. Yours. Your voice stays on your hardware. Always. -Z = dI/d(log s) * exp(i*theta) """ -# ghostvoice_zero_dep.py — ZÉRO dépendance externe sauf numpy (que tu as déjà) # Marche même si tu uploades un WAV brut from fastapi import FastAPI, File, UploadFile, Form @@ -71,4 +69,4 @@ async def z(v: UploadFile = File(...), t: str = Form(...)): if __name__ == "__main__": print("GhostVoice ZÉRO DÉPENDANCE → http://localhost:8000") - uvicorn.run(app, port=8000) \ No newline at end of file + uvicorn.run(app, port=8000)