From 04c37472f74414ca238b261627787aa172d0b54f Mon Sep 17 00:00:00 2001 From: Industry_expert Date: Thu, 11 Sep 2025 18:49:10 +0100 Subject: [PATCH 1/6] feat: Add configuration for silly-v0.2 --- silly-v0.2/Readme.md | 31 +++++++++++++++++++++++++++++++ silly-v0.2/config.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 silly-v0.2/Readme.md create mode 100644 silly-v0.2/config.json diff --git a/silly-v0.2/Readme.md b/silly-v0.2/Readme.md new file mode 100644 index 0000000..392b850 --- /dev/null +++ b/silly-v0.2/Readme.md @@ -0,0 +1,31 @@ +# silly-v0.2 Node + +This configuration sets up a GaiaNet node to run `silly-v0.2`, a highly capable fine-tuned model designed for creative, conversational, and role-playing interactions. + +## Step 1: Install GaiaNet node + +The GaiaNet node software version should be 0.5.4 or higher. + +```bash +curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/install.sh' | bash +``` + +## Step 2: Init with the silly-v0.2 model + +```bash +gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/silly-v0.2/config.json +``` + +## Step 3: Start the node + +```bash +gaianet start +``` + +Now you can use the node as a web-based chatbot or as an OpenAI API drop-in replacement. + +## References + +* **Official Base Model:** [wave-on-discord/silly-v0.2](https://huggingface.co/wave-on-discord/silly-v0.2) +* **GGUF Formatted Model:** [Tobivictor/silly-v0.2-GGUF](https://huggingface.co/Tobivictor/silly-v0.2-GGUF) +* **GaiaNet Node Quick Start Guide:** https://github.com/GaiaNet-AI/gaianet-node \ No newline at end of file diff --git a/silly-v0.2/config.json b/silly-v0.2/config.json new file mode 100644 index 0000000..06e8cf0 --- /dev/null +++ b/silly-v0.2/config.json @@ -0,0 +1,28 @@ +{ + "address": "0x3d221e1350edabdf023148a1be678617e148f35c", + "chat": "https://huggingface.co/Tobivictor/silly-v0.2-GGUF/resolve/main/silly-v0.2-Q4_K_M.gguf", + "chat_batch_size": "128", + "chat_ctx_size": "8192", + "chat_name": "silly-v0.2", + "chat_ubatch_size": "128", + "context_window": "1", + "description": "GaiaNet node config with silly-v0.2 model, for creative and conversational tasks.", + "domain": "gaia.domains", + "embedding": "https://huggingface.co/gaianet/Nomic-embed-text-v1.5-Embedding-GGUF/resolve/main/nomic-embed-text-v1.5.f16.gguf", + "embedding_batch_size": "8192", + "embedding_collection_name": "default", + "embedding_ctx_size": "8192", + "embedding_name": "Nomic-embed-text-v1.5", + "embedding_ubatch_size": "8192", + "llamaedge_chat_port": "9068", + "llamaedge_embedding_port": "9069", + "llamaedge_port": "8080", + "prompt_template": "chatml", + "qdrant_limit": "1", + "qdrant_score_threshold": "0.5", + "rag_policy": "system-message", + "rag_prompt": "Use the following information to answer the question.\n----------------\n", + "reverse_prompt": "", + "snapshot": "", + "system_prompt": "You are a helpful AI assistant. Please answer questions as clearly and concisely as possible." +} \ No newline at end of file From 84ed06197623fd77bc5708a111f4eb4d7858c173 Mon Sep 17 00:00:00 2001 From: Industry_expert Date: Thu, 11 Sep 2025 19:14:53 +0100 Subject: [PATCH 2/6] feat: Add configuration for ERNIE-4.5-21B --- ernie-4.5-21b/Readme.md | 31 +++++++++++++++++++++++++++++++ ernie-4.5-21b/config.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 ernie-4.5-21b/Readme.md create mode 100644 ernie-4.5-21b/config.json diff --git a/ernie-4.5-21b/Readme.md b/ernie-4.5-21b/Readme.md new file mode 100644 index 0000000..cf1eb9e --- /dev/null +++ b/ernie-4.5-21b/Readme.md @@ -0,0 +1,31 @@ +# ERNIE-4.5-21B-A3B-Thinking Node + +This configuration sets up a GaiaNet node to run `ERNIE-4.5-21B-A3B-Thinking`, a powerful large language model developed by Baidu, known for its advanced reasoning and conversational abilities. + +## Step 1: Install GaiaNet node + +The GaiaNet node software version should be 0.5.4 or higher. + +```bash +curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/install.sh' | bash +``` + +## Step 2: Init with the ERNIE-4.5-21B-A3B-Thinking model + +```bash +gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/ernie-4.5-21b/config.json +``` + +## Step 3: Start the node + +```bash +gaianet start +``` + +Now you can use the node as a web-based chatbot or as an OpenAI API drop-in replacement. + +## References + +* **Official Base Model:** [baidu/ERNIE-4.5-21B-A3B-Thinking](https://huggingface.co/baidu/ERNIE-4.5-21B-A3B-Thinking) +* **GGUF Formatted Model:** [Tobivictor/ERNIE-4.5-21B-A3B-Thinking-GGUF](https://huggingface.co/Tobivictor/ERNIE-4.5-21B-A3B-Thinking-GGUF) +* **GaiaNet Node Quick Start Guide:** https://github.com/GaiaNet-AI/gaianet-node \ No newline at end of file diff --git a/ernie-4.5-21b/config.json b/ernie-4.5-21b/config.json new file mode 100644 index 0000000..6021c2b --- /dev/null +++ b/ernie-4.5-21b/config.json @@ -0,0 +1,28 @@ +{ + "address": "", + "chat": "https://huggingface.co/Tobivictor/ERNIE-4.5-21B-A3B-Thinking-GGUF/resolve/main/ERNIE-4.5-21B-A3B-Thinking-Q2_K.gguf", + "chat_batch_size": "128", + "chat_ctx_size": "8192", + "chat_name": "ERNIE-4.5-21B-A3B-Thinking", + "chat_ubatch_size": "128", + "context_window": "1", + "description": "GaiaNet node config with the ERNIE-4.5-21B-A3B-Thinking model, a powerful model from Baidu.", + "domain": "gaia.domains", + "embedding": "https://huggingface.co/gaianet/Nomic-embed-text-v1.5-Embedding-GGUF/resolve/main/nomic-embed-text-v1.5.f16.gguf", + "embedding_batch_size": "8192", + "embedding_collection_name": "default", + "embedding_ctx_size": "8192", + "embedding_name": "Nomic-embed-text-v1.5", + "embedding_ubatch_size": "8192", + "llamaedge_chat_port": "9068", + "llamaedge_embedding_port": "9069", + "llamaedge_port": "8080", + "prompt_template": "chatml", + "qdrant_limit": "1", + "qdrant_score_threshold": "0.5", + "rag_policy": "system-message", + "rag_prompt": "Use the following information to answer the question.\n----------------\n", + "reverse_prompt": "", + "snapshot": "", + "system_prompt": "You are a helpful AI assistant. Please answer questions as clearly and concisely as possible." +} \ No newline at end of file From 05666b98b13abff49cf979117b5a860b3e3a8a07 Mon Sep 17 00:00:00 2001 From: Industry_expert Date: Fri, 12 Sep 2025 05:07:02 +0100 Subject: [PATCH 3/6] feat: Add configuration for Neeto-1.0-8b --- neeto-1.0-8b/Readme.md | 31 +++++++++++++++++++++++++++++++ neeto-1.0-8b/config.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 neeto-1.0-8b/Readme.md create mode 100644 neeto-1.0-8b/config.json diff --git a/neeto-1.0-8b/Readme.md b/neeto-1.0-8b/Readme.md new file mode 100644 index 0000000..81f645b --- /dev/null +++ b/neeto-1.0-8b/Readme.md @@ -0,0 +1,31 @@ +# Neeto-1.0-8b Node + +This configuration sets up a GaiaNet node to run `Neeto-1.0-8b`, a versatile 8B parameter model fine-tuned for a wide range of instructional and conversational tasks. + +## Step 1: Install GaiaNet node + +The GaiaNet node software version should be 0.5.4 or higher. + +```bash +curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/install.sh' | bash +``` + +## Step 2: Init with the Neeto-1.0-8b model + +```bash +gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/neeto-1.0-8b/config.json +``` + +## Step 3: Start the node + +```bash +gaianet start +``` + +Now you can use the node as a web-based chatbot or as an OpenAI API drop-in replacement. + +## References + +* **Official Base Model:** [S4nfs/Neeto-1.0-8b](https://huggingface.co/S4nfs/Neeto-1.0-8b) +* **GGUF Formatted Model:** [Tobivictor/Neeto-1.0-8b-GGUF](https://huggingface.co/Tobivictor/Neeto-1.0-8b-GGUF) +* **GaiaNet Node Quick Start Guide:** https://github.com/GaiaNet-AI/gaianet-node \ No newline at end of file diff --git a/neeto-1.0-8b/config.json b/neeto-1.0-8b/config.json new file mode 100644 index 0000000..5a810d8 --- /dev/null +++ b/neeto-1.0-8b/config.json @@ -0,0 +1,28 @@ +{ + "address": "", + "chat": "https://huggingface.co/Tobivictor/Neeto-1.0-8b-GGUF/resolve/main/Neeto-1.0-8b-Q4_K_M.gguf", + "chat_batch_size": "128", + "chat_ctx_size": "8192", + "chat_name": "Neeto-1.0-8b", + "chat_ubatch_size": "128", + "context_window": "1", + "description": "GaiaNet node config with the Neeto-1.0-8b model, a versatile instruction-tuned model.", + "domain": "gaia.domains", + "embedding": "https://huggingface.co/gaianet/Nomic-embed-text-v1.5-Embedding-GGUF/resolve/main/nomic-embed-text-v1.5.f16.gguf", + "embedding_batch_size": "8192", + "embedding_collection_name": "default", + "embedding_ctx_size": "8192", + "embedding_name": "Nomic-embed-text-v1.5", + "embedding_ubatch_size": "8192", + "llamaedge_chat_port": "9068", + "llamaedge_embedding_port": "9069", + "llamaedge_port": "8080", + "prompt_template": "chatml", + "qdrant_limit": "1", + "qdrant_score_threshold": "0.5", + "rag_policy": "system-message", + "rag_prompt": "Use the following information to answer the question.\n----------------\n", + "reverse_prompt": "", + "snapshot": "", + "system_prompt": "You are a helpful AI assistant. Please answer questions as clearly and concisely as possible." +} \ No newline at end of file From 50d656969c507ba935be5cedb8e6dd520295a6ac Mon Sep 17 00:00:00 2001 From: Industry_expert Date: Mon, 15 Sep 2025 14:51:34 +0100 Subject: [PATCH 4/6] feat: Add configuration for MachineLearningLM-7B-v1 --- machinelearninglm-7b-v1/Readme.md | 31 +++++++++++++++++++++++++++++ machinelearninglm-7b-v1/config.json | 28 ++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 machinelearninglm-7b-v1/Readme.md create mode 100644 machinelearninglm-7b-v1/config.json diff --git a/machinelearninglm-7b-v1/Readme.md b/machinelearninglm-7b-v1/Readme.md new file mode 100644 index 0000000..c7829b1 --- /dev/null +++ b/machinelearninglm-7b-v1/Readme.md @@ -0,0 +1,31 @@ +# MachineLearningLM-7B-v1 Node + +This configuration sets up a GaiaNet node to run `MachineLearningLM-7B-v1`, a powerful 7B parameter model fine-tuned for questions related to machine learning, data science, and other technical topics. + +## Step 1: Install GaiaNet node + +The GaiaNet node software version should be 0.5.4 or higher. + +```bash +curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/install.sh' | bash +``` + +## Step 2: Init with the MachineLearningLM-7B-v1 model + +```bash +gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/machinelearninglm-7b-v1/config.json +``` + +## Step 3: Start the node + +```bash +gaianet start +``` + +Now you can use the node as a web-based chatbot or as an OpenAI API drop-in replacement. + +## References + +* **Official Base Model:** [MachineLearningLM/MachineLearningLM-7B-v1](https://huggingface.co/MachineLearningLM/MachineLearningLM-7B-v1) +* **GGUF Formatted Model:** [Tobivictor/MachineLearningLM-7B-v1-GGUF](https://huggingface.co/Tobivictor/MachineLearningLM-7B-v1-GGUF) +* **GaiaNet Node Quick Start Guide:** https://github.com/GaiaNet-AI/gaianet-node \ No newline at end of file diff --git a/machinelearninglm-7b-v1/config.json b/machinelearninglm-7b-v1/config.json new file mode 100644 index 0000000..09f9ab5 --- /dev/null +++ b/machinelearninglm-7b-v1/config.json @@ -0,0 +1,28 @@ +{ + "address": "", + "chat": "https://huggingface.co/Tobivictor/MachineLearningLM-7B-v1-GGUF/resolve/main/MachineLearningLM-7B-v1-Q4_K_M.gguf", + "chat_batch_size": "128", + "chat_ctx_size": "8192", + "chat_name": "MachineLearningLM-7B-v1", + "chat_ubatch_size": "128", + "context_window": "1", + "description": "GaiaNet node config with MachineLearningLM-7B-v1, a model fine-tuned for machine learning and technical topics.", + "domain": "gaia.domains", + "embedding": "https://huggingface.co/gaianet/Nomic-embed-text-v1.5-Embedding-GGUF/resolve/main/nomic-embed-text-v1.5.f16.gguf", + "embedding_batch_size": "8192", + "embedding_collection_name": "default", + "embedding_ctx_size": "8192", + "embedding_name": "Nomic-embed-text-v1.5", + "embedding_ubatch_size": "8192", + "llamaedge_chat_port": "9068", + "llamaedge_embedding_port": "9069", + "llamaedge_port": "8080", + "prompt_template": "chatml", + "qdrant_limit": "1", + "qdrant_score_threshold": "0.5", + "rag_policy": "system-message", + "rag_prompt": "Use the following information to answer the question.\n----------------\n", + "reverse_prompt": "", + "snapshot": "", + "system_prompt": "You are a helpful AI assistant. Please answer questions as clearly and concisely as possible." +} \ No newline at end of file From 264df97eb20426bc828fc412caa2463220d3e349 Mon Sep 17 00:00:00 2001 From: Industry_expert Date: Mon, 15 Sep 2025 15:16:11 +0100 Subject: [PATCH 5/6] feat: Add configuration for jan-v1-edge --- jan-v1-edge/Readme.md | 31 +++++++++++++++++++++++++++++++ jan-v1-edge/config.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 jan-v1-edge/Readme.md create mode 100644 jan-v1-edge/config.json diff --git a/jan-v1-edge/Readme.md b/jan-v1-edge/Readme.md new file mode 100644 index 0000000..49b409e --- /dev/null +++ b/jan-v1-edge/Readme.md @@ -0,0 +1,31 @@ +# jan-v1-edge Node + +This configuration sets up a GaiaNet node to run `jan-v1-edge`, an efficient model optimized for edge devices. + +## Step 1: Install GaiaNet node + +The GaiaNet node software version should be 0.5.4 or higher. + +```bash +curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/install.sh' | bash +``` + +## Step 2: Init with the jan-v1-edge model + +```bash +gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/jan-v1-edge/config.json +``` + +## Step 3: Start the node + +```bash +gaianet start +``` + +Now you can use the node as a web-based chatbot or as an OpenAI API drop-in replacement. + +## References + +* **Official Base Model:** [janhq/Jan-v1-edge](https://huggingface.co/janhq/Jan-v1-edge) +* **GGUF Formatted Model:** [Tobivictor/jan-v1-edge-GGUF](https://huggingface.co/Tobivictor/jan-v1-edge-GGUF) +* **GaiaNet Node Quick Start Guide:** https://github.com/GaiaNet-AI/gaianet-node \ No newline at end of file diff --git a/jan-v1-edge/config.json b/jan-v1-edge/config.json new file mode 100644 index 0000000..568a56c --- /dev/null +++ b/jan-v1-edge/config.json @@ -0,0 +1,28 @@ +{ + "address": "", + "chat": "https://huggingface.co/Tobivictor/Jan-v1-edge-GGUF/resolve/main/Jan-v1-edge-Q4_K_M.gguf", + "chat_batch_size": "128", + "chat_ctx_size": "4096", + "chat_name": "Jan-v1-edge", + "chat_ubatch_size": "128", + "context_window": "1", + "description": "GaiaNet node config with the jan-v1-2509 model.", + "domain": "gaia.domains", + "embedding": "https://huggingface.co/gaianet/Nomic-embed-text-v1.5-Embedding-GGUF/resolve/main/nomic-embed-text-v1.5.f16.gguf", + "embedding_batch_size": "8192", + "embedding_collection_name": "default", + "embedding_ctx_size": "8192", + "embedding_name": "Nomic-embed-text-v1.5", + "embedding_ubatch_size": "8192", + "llamaedge_chat_port": "9068", + "llamaedge_embedding_port": "9069", + "llamaedge_port": "8080", + "prompt_template": "chatml", + "qdrant_limit": "1", + "qdrant_score_threshold": "0.5", + "rag_policy": "system-message", + "rag_prompt": "Use the following information to answer the question.\n----------------\n", + "reverse_prompt": "", + "snapshot": "", + "system_prompt": "You are a helpful AI assistant. Please answer questions as clearly and concisely as possible." +} \ No newline at end of file From b4e7fa0ad878a41822ba8122a40d6b27ac0b3aaa Mon Sep 17 00:00:00 2001 From: Industry_expert Date: Mon, 15 Sep 2025 15:29:49 +0100 Subject: [PATCH 6/6] feat: Add configuration for jan-v1-2509 --- jan-v1-2509/Readme.md | 31 +++++++++++++++++++++++++++++++ jan-v1-2509/config.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 jan-v1-2509/Readme.md create mode 100644 jan-v1-2509/config.json diff --git a/jan-v1-2509/Readme.md b/jan-v1-2509/Readme.md new file mode 100644 index 0000000..44bbce7 --- /dev/null +++ b/jan-v1-2509/Readme.md @@ -0,0 +1,31 @@ +# jan-v1-2509 Node + +This configuration sets up a GaiaNet node to run `jan-v1-2509`, a powerful instruction-tuned model. + +## Step 1: Install GaiaNet node + +The GaiaNet node software version should be 0.5.4 or higher. + +```bash +curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/install.sh' | bash +``` + +## Step 2: Init with the jan-v1-2509 model + +```bash +gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/jan-v1-2509/config.json +``` + +## Step 3: Start the node + +```bash +gaianet start +``` + +Now you can use the node as a web-based chatbot or as an OpenAI API drop-in replacement. + +## References + +* **Official Base Model:** [janhq/Jan-v1-2509](https://huggingface.co/janhq/Jan-v1-2509) +* **GGUF Formatted Model:** [Tobivictor/jan-v1-2509-GGUF](https://huggingface.co/Tobivictor/jan-v1-2509-GGUF) +* **GaiaNet Node Quick Start Guide:** https://github.com/GaiaNet-AI/gaianet-node \ No newline at end of file diff --git a/jan-v1-2509/config.json b/jan-v1-2509/config.json new file mode 100644 index 0000000..5b0861f --- /dev/null +++ b/jan-v1-2509/config.json @@ -0,0 +1,28 @@ +{ + "address": "", + "chat": "https://huggingface.co/Tobivictor/Jan-v1-2509-GGUF/resolve/main/Jan-v1-2509-Q4_K_M.gguf", + "chat_batch_size": "128", + "chat_ctx_size": "4096", + "chat_name": "Jan-v1-2509", + "chat_ubatch_size": "128", + "context_window": "1", + "description": "GaiaNet node config with the jan-v1-2509 model.", + "domain": "gaia.domains", + "embedding": "https://huggingface.co/gaianet/Nomic-embed-text-v1.5-Embedding-GGUF/resolve/main/nomic-embed-text-v1.5.f16.gguf", + "embedding_batch_size": "8192", + "embedding_collection_name": "default", + "embedding_ctx_size": "8192", + "embedding_name": "Nomic-embed-text-v1.5", + "embedding_ubatch_size": "8192", + "llamaedge_chat_port": "9068", + "llamaedge_embedding_port": "9069", + "llamaedge_port": "8080", + "prompt_template": "chatml", + "qdrant_limit": "1", + "qdrant_score_threshold": "0.5", + "rag_policy": "system-message", + "rag_prompt": "Use the following information to answer the question.\n----------------\n", + "reverse_prompt": "", + "snapshot": "", + "system_prompt": "You are a helpful AI assistant. Please answer questions as clearly and concisely as possible." +} \ No newline at end of file