Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions ernie-4.5-21b/Readme.md
Original file line number Diff line number Diff line change
@@ -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
28 changes: 28 additions & 0 deletions ernie-4.5-21b/config.json
Original file line number Diff line number Diff line change
@@ -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."
}
31 changes: 31 additions & 0 deletions jan-v1-4b/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Jan-v1-4B Node

This configuration sets up a GaiaNet node to run the `Jan-v1-4B` model, a versatile and efficient model suitable for a wide range of 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 Jan-v1-4B model

```bash
gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/jan-v1-4b/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-4b](https://huggingface.co/janhq/jan-v1-4b)
* **GGUF Formatted Model:** [Tobivictor/Jan-v1-4B-GGUF](https://huggingface.co/Tobivictor/Jan-v1-4B-GGUF)
* **GaiaNet Node Quick Start Guide:** https://github.com/GaiaNet-AI/gaianet-node
28 changes: 28 additions & 0 deletions jan-v1-4b/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"address": "",
"chat": "https://huggingface.co/Tobivictor/Jan-v1-4B-GGUF/resolve/main/Jan-v1-4B-Q4_K_M.gguf",
"chat_batch_size": "128",
"chat_ctx_size": "8192",
"chat_name": "Jan-v1-4B",
"chat_ubatch_size": "128",
"context_window": "1",
"description": "GaiaNet node config with Jan-v1-4B model for local brunch recommendations and general chat.",
"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."
}
31 changes: 31 additions & 0 deletions neeto-1.0-8b/Readme.md
Original file line number Diff line number Diff line change
@@ -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
28 changes: 28 additions & 0 deletions neeto-1.0-8b/config.json
Original file line number Diff line number Diff line change
@@ -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."
}
31 changes: 31 additions & 0 deletions qwen2.5-omni-7b/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Qwen2.5-Omni-7B Node

This configuration sets up a GaiaNet node to run the `Qwen2.5-Omni-7B` model, a powerful and versatile language model suitable for general chat and specialized 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 Qwen2.5-Omni-7B model

```bash
gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/qwen2.5-omni-7b/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:** [Qwen/Qwen2.5-Omni-7B](https://huggingface.co/Qwen/Qwen2.5-Omni-7B)
* **GGUF Formatted Model:** [Tobivictor/Qwen2.5-Omni-7B-GGUF](https://huggingface.co/Tobivictor/Qwen2.5-Omni-7B-GGUF)
* **GaiaNet Node Quick Start Guide:** https://github.com/GaiaNet-AI/gaianet-node
28 changes: 28 additions & 0 deletions qwen2.5-omni-7b/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"address": "",
"chat": "https://huggingface.co/Tobivictor/Qwen2.5-Omni-7B-GGUF/resolve/main/Qwen2.5-Omni-7B-Q4_K_M.gguf",
"chat_batch_size": "128",
"chat_ctx_size": "8192",
"chat_name": "Qwen2.5-Omni-7B",
"chat_ubatch_size": "128",
"context_window": "1",
"description": "GaiaNet node config with Qwen2.5-Omni-7B model for local brunch recommendations and general chat.",
"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."
}
31 changes: 31 additions & 0 deletions qwen3-coder-30b/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Qwen3-Coder-30B-A3B-Instruct Node

This configuration sets up a GaiaNet node to run `Qwen3-Coder-30B-A3B-Instruct`, a powerful model from the Qwen3 family specifically fine-tuned for coding tasks and general conversation.

## 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 Qwen3-Coder-30B-A3B-Instruct model

```bash
gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/qwen3-coder-30b/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 for your development tasks.

## References

* **Official Base Model:** [Qwen/Qwen3-Coder-30B-A3B-Instruct](https://huggingface.co/Qwen/Qwen3-Coder-30B-A3B-Instruct)
* **GGUF Formatted Model:** [Tobivictor/Qwen3-Coder-30B-A3B-Instruct-GGUF](https://huggingface.co/Tobivictor/Qwen3-Coder-30B-A3B-Instruct-GGUF)
* **GaiaNet Node Quick Start Guide:** [https://github.com/GaiaNet-AI/gaianet-node](https://github.com/GaiaNet-AI/gaianet-node)
28 changes: 28 additions & 0 deletions qwen3-coder-30b/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"address": "",
"chat": "https://huggingface.co/Tobivictor/Qwen3-Coder-30B-A3B-Instruct-GGUF/resolve/main/Qwen3-Coder-30B-A3B-Instruct-Q2_K.gguf",
"chat_batch_size": "128",
"chat_ctx_size": "8192",
"chat_name": "Qwen3-Coder-30B-A3B-Instruct",
"chat_ubatch_size": "128",
"context_window": "1",
"description": "GaiaNet node config with Qwen3-Coder-30B-A3B-Instruct model for local brunch recommendations and general chat.",
"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."
}
31 changes: 31 additions & 0 deletions silly-v0.2/Readme.md
Original file line number Diff line number Diff line change
@@ -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
28 changes: 28 additions & 0 deletions silly-v0.2/config.json
Original file line number Diff line number Diff line change
@@ -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."
}