From 72e52e5a0aa82aaf41e6422561705ab95bfeff94 Mon Sep 17 00:00:00 2001 From: elmadani Date: Wed, 25 Feb 2026 00:53:36 +0000 Subject: [PATCH] Initial commit --- README.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a3692ce --- /dev/null +++ b/README.md @@ -0,0 +1,45 @@ +# Organ Store +*Part of the Inference-X Ecosystem* + +[![License: BSL-1.1](https://img.shields.io/badge/License-BSL_1.1-orange.svg)](LICENSE) + +**Extract, share and transplant AI model components.** + +Neural networks have anatomy: attention heads, FFN blocks, expert layers, embeddings. +The Organ Store is the community marketplace for these components. + +``` +Source Model → Extract Organ → Publish → Transplant into Target + 🧠 ⚗️ 📦 💉 +``` + +## Deploy +```bash +pip install fastapi uvicorn +python organ_store.py +# → API at http://localhost:7939 +``` + +## Organ Types +| Type | Description | +|------|-------------| +| `attention_head` | Specialized attention mechanisms | +| `ffn_block` | Feed-forward network layers | +| `expert_block` | MoE expert blocks (Mixtral, DeepSeek) | +| `embedding` | Domain-specific embedding layers | +| `lm_head` | Language model heads | +| `custom` | Any other component | + +## API +``` +GET /catalog — Browse organs (filter by type) +POST /publish — Publish organ to community +GET /organ/{id} — Get organ details + download +GET /health — Service status +``` + +Built in Morocco for the world. 🇲🇦 + +## License +[Business Source License 1.1](LICENSE) +**Author:** Salka Elmadani