Update malik/inflect.toml

This commit is contained in:
2025-12-15 21:54:21 +00:00
parent 3fafd3ab72
commit 8d8ef18bf3

View File

@@ -0,0 +1,42 @@
# Inflectfile
version = 1
[package]
name = "Malik"
version = "1.0.0"
description = "A basic inflection system based on two research papers"
license = "MIT"
publisher = "QRK labs <https://labs.qrk.ng>"
maintainer = "QRK labs <https://labs.qrk.ng>"
contact = "contact@qrk.ng"
published_at = "2025-09-23"
[models]
qwen3-1.7b = "https://huggingface.co/unsloth/Qwen3-1.7B-GGUF/resolve/main/Qwen3-1.7B-BF16.gguf?download=true"
qwen3-4b = "https://huggingface.co/unsloth/Qwen3-4B-GGUF/resolve/main/Qwen3-4B-Q8_0.gguf?download=true"
qwen3-8b = "https://huggingface.co/unsloth/Qwen3-8B-GGUF/resolve/main/Qwen3-8B-Q8_0.gguf?download=true"
bge-m3 = "https://huggingface.co/gpustack/bge-m3-GGUF/resolve/main/bge-m3-FP16.gguf?download=true"
[knowledge_files]
papers = "https://git.mainasara.dev/qrk/knowledge/raw/branch/main/malik/all_insights.json"
[kernel]
file = "https://git.mainasara.dev/qrk/knowledge/raw/branch/main/kernel.js"
runtime = "js"
runtime_version = "1.0.0"
[systems.qrk-gamma]
language_model = "qwen3-8b"
embedding_model = "bge-m3"
knowledge_files = ["papers"]
[systems.qrk-gamma-mini]
language_model = "qwen3-4b"
embedding_model = "bge-m3"
knowledge_files = ["papers"]
[systems.qrk-gamma-nano]
language_model = "qwen3-1.7b"
embedding_model = "bge-m3"
knowledge_files = ["papers"]