Skip to content

fix: typos #94

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion docs/litepaper.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The basic operational unit in the GaiaNet network is a node. A GaiaNet node is a

![GaiaNet node architecture](gaianet_node.png)

**1 Application runtime.** GaiaNet applications run in a lightweight, secure and high-performance sandbox called WasmEdge. As an open-source project managed by the Linux Foundation and CNCF, WasmEdge runtime works seamlessly with leading cloud native tools such as Docker, containerd, CRI-O, Podman and Kubernetes. It is also the virtual machine of choice by leading public blockchains to securely and efficiently execute on-chain and off-chain smart contracts.
**1 Application runtime.** GaiaNet applications run in a lightweight, secure and high-performance sandbox called WasmEdge. As an open-source project managed by the Linux Foundation and CNCF, WasmEdge runtime works seamlessly with leading cloud native tools such as Docker, container, CRI-O, Podman and Kubernetes. It is also the virtual machine of choice by leading public blockchains to securely and efficiently execute on-chain and off-chain smart contracts.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not a typo.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @yash251

Please check out this comment. Thanks.


WasmEdge is a high-performance and cross-platform runtime. It can run AI models on almost all CPUs, GPUs, and AI accelerators at native speed, making it an ideal runtime for decentralized AI agents.

Expand Down
2 changes: 1 addition & 1 deletion docs/node-guide/cli-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The `gaianet config` can update the key fields defined in the `config.json` file
* `gaianet config --system-prompt "<prompt>"` will change the system prompt.
* `gaianet config --rag-prompt "<prompt>"` will change the rag prompt.
* `gaianet config --reverse-prompt "<prompt>"` will change the reverse prompt.
* `gainet config --base <path> ` will modify the `<path>/config.json` parameters.
* `gaianet config --base <path> ` will modify the `<path>/config.json` parameters.

After you use `gaianet conifg` to change some parameters, please

Expand Down
8 changes: 4 additions & 4 deletions docs/node-guide/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebar_position: 8

## The system cannot find CUDA libraries

Sometimes, the CUDA toolkit is installed in a non-standard location. The error message here is often not able to find `libcu*12`. For example, you might have CUDA installed with your Python setup. The following command would install CUDA into Python's enviornment.
Sometimes, the CUDA toolkit is installed in a non-standard location. The error message here is often not able to find `libcu*12`. For example, you might have CUDA installed with your Python setup. The following command would install CUDA into Python's environment.

```
sudo apt install python3-pip -y
Expand Down Expand Up @@ -105,7 +105,7 @@ It typically indicates that the Qdrant instance was not shut down properly befor
gaianet stop
```

Alternatively, you could mannually kill the processes from the terminal or in the OS's Actvity Monitor.
Alternatively, you could manually kill the processes from the terminal or in the OS's Activity Monitor.

```
sudo pkill -9 qdrant
Expand All @@ -129,7 +129,7 @@ It typically indicates that the Qdrant instance was not shut down properly befor
gaianet stop
```

Alternatively, you could mannually kill the processes from the terminal or in the OS's Actvity Monitor.
Alternatively, you could manually kill the processes from the terminal or in the OS's Activity Monitor.

```
sudo pkill -9 qdrant
Expand Down Expand Up @@ -171,7 +171,7 @@ This will temporarily set the FD limit to 10,000. Next, use `gaianet init` and `

## Permission denied when use the installer script to install WasmEdge

When running `curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/install.sh' | bash` to install GaiaNet node software, you may meet the permisson denied error especially installing the WasmEdge runtime.
When running `curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/install.sh' | bash` to install GaiaNet node software, you may meet the permission denied error especially installing the WasmEdge runtime.

![](troubleshooting-01.png)

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/translator-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_position: 1

# Agentic translation on GaiaNet

Prof. Andrew Ng's [agentic translation](https://www.linkedin.com/posts/andrewyng_github-andrewyngtranslation-agent-activity-7206347897938866176-5tDJ/) is a great demonstration on how to cooridnate multiple LLM "agents" to work on a single task. It allows multiple smaller LLMs (like Llama-3 or Gemma-2) to work gether and produce better results than a single large LLM (like ChatGPT).
Prof. Andrew Ng's [agentic translation](https://www.linkedin.com/posts/andrewyng_github-andrewyngtranslation-agent-activity-7206347897938866176-5tDJ/) is a great demonstration on how to coordinate multiple LLM "agents" to work on a single task. It allows multiple smaller LLMs (like Llama-3 or Gemma-2) to work gether and produce better results than a single large LLM (like ChatGPT).

[GaiaNet](https://www.gaianet.ai/), with 2000+ nodes running all kinds of finetuned LLms and knowledge bases, provides a huge opportunity for agentic apps to choose and use their own LLM backends.

Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Replace OpenAI configuration in [your app](apps/intro) with the following.

Coming soon!

## Coding assistant agnets
## Coding assistant agents

### Coder

Expand Down