Skip to content

Commit 6f56c42

Browse files
committed
changes
1 parent 4592cae commit 6f56c42

File tree

4 files changed

+51
-0
lines changed

4 files changed

+51
-0
lines changed

docs/faqs.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,15 @@ Yes, Gaia is designed with enterprise needs in mind. It offers:
2626
- Integration capabilities with existing systems
2727
- Customization options for specific industry needs
2828

29+
:::
30+
31+
:::tip[Why Gaianet?]
32+
While many AI platforms exist, GaiaNet differentiates itself by fundamentally shifting the paradigm of AI ownership and deployment:
33+
34+
* **Decentralized Ownership & Control:** Unlike centralized AI giants, GaiaNet empowers you to **own and deploy your AI agents on your own edge nodes.** This means greater control, enhanced privacy, and built-in censorship resistance for your AI services and data.
35+
36+
* **Specialized, Domain-Specific AI:** Move beyond generic chatbots. GaiaNet allows you to integrate **proprietary knowledge and fine-tuned LLMs** into your agents, creating highly specialized experts that offer more accurate, relevant, and reliable responses, significantly reducing "hallucinations."
37+
38+
* **Monetization & Open Ecosystem:** GaiaNet provides a clear path to **monetize your unique AI agents and expertise.** Its open-source nature, cross-platform runtime (WasmEdge), and OpenAI-compatible API foster a vibrant, interoperable, and community-driven environment, accelerating innovation and expanding the utility of decentralized AI.
39+
2940
:::
88.9 KB
Loading

docs/getting-started/troubleshooting/troubleshooting.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,5 +183,35 @@ curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/
183183

184184
This problem is fixed in `version 0.2.3`.
185185

186+
## Backend Error: WASI-NN Backend Error:
187+
188+
When starting the GaiaNet node, particularly after `gaianet init` or during `gaianet start`, you may encounter errors similar to the following, often indicating issues with the chat server and a "command not found" message:
189+
190+
![alt text](image.png)
191+
192+
This error typically occurs when the AI model snapshot downloaded during the `gaianet init` process is incomplete or corrupted due to a connection interruption or other download issues. When you subsequently try to initialize the model (e.g., after closing and reopening WSL), the system attempts to use this broken cached file, leading to the "Backend Error: WASI-NN Backend Error: Caller module passed an invalid argument" as the chat server cannot properly load or interact with the flawed model.
193+
194+
**Solution:**
195+
196+
The most effective way to resolve this is to perform a clean re-installation of the GaiaNet node, which will force a fresh download of all necessary files, including the model snapshot.
197+
198+
1. **Stop the GaiaNet Node:**
199+
First, ensure all running GaiaNet processes are stopped.
200+
```bash
201+
gaianet stop
202+
```
203+
204+
2. **Delete the Corrupted GaiaNet Installation:**
205+
Remove the existing, potentially corrupted, GaiaNet installation directory.
206+
```bash
207+
rm -rf ~/gaianet
208+
```
209+
*Note: This command will delete the entire `gaianet` directory and all its contents. Make sure you are in your home directory (`~` or `/home/youruser`) or specify the full path to `gaianet` if it's installed elsewhere.*
210+
211+
3. **Reinstall GaiaNet:**
212+
Follow the official GaiaNet installation guide to re-download and install the node from scratch. This will ensure you get a complete and uncorrupted model snapshot.
213+
[Reinstalling node](https://docs.gaianet.ai/getting-started/quick-start/)
214+
215+
After these steps, you should be able to run `gaianet init` and `gaianet start` successfully with a freshly downloaded model.
186216
187217

package-lock.json

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)