From afe3fcbef95e202812b2062778ce4d317d6a4359 Mon Sep 17 00:00:00 2001 From: Yash Jagtap Date: Sun, 29 Dec 2024 07:00:49 +0530 Subject: [PATCH] fix: typos --- docs/litepaper.md | 2 +- docs/node-guide/cli-options.md | 2 +- docs/node-guide/troubleshooting.md | 8 ++++---- docs/tutorial/translator-agent.md | 2 +- docs/user-guide/nodes.md | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/litepaper.md b/docs/litepaper.md index 9e7ca08..9bb7d52 100644 --- a/docs/litepaper.md +++ b/docs/litepaper.md @@ -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. 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. diff --git a/docs/node-guide/cli-options.md b/docs/node-guide/cli-options.md index 896567f..d5f6a78 100644 --- a/docs/node-guide/cli-options.md +++ b/docs/node-guide/cli-options.md @@ -78,7 +78,7 @@ The `gaianet config` can update the key fields defined in the `config.json` file * `gaianet config --system-prompt ""` will change the system prompt. * `gaianet config --rag-prompt ""` will change the rag prompt. * `gaianet config --reverse-prompt ""` will change the reverse prompt. -* `gainet config --base ` will modify the `/config.json` parameters. +* `gaianet config --base ` will modify the `/config.json` parameters. After you use `gaianet conifg` to change some parameters, please diff --git a/docs/node-guide/troubleshooting.md b/docs/node-guide/troubleshooting.md index b586f47..edeec2d 100644 --- a/docs/node-guide/troubleshooting.md +++ b/docs/node-guide/troubleshooting.md @@ -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 @@ -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 @@ -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 @@ -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) diff --git a/docs/tutorial/translator-agent.md b/docs/tutorial/translator-agent.md index e89cc39..c96c74e 100644 --- a/docs/tutorial/translator-agent.md +++ b/docs/tutorial/translator-agent.md @@ -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. diff --git a/docs/user-guide/nodes.md b/docs/user-guide/nodes.md index 8da5dad..167ff20 100644 --- a/docs/user-guide/nodes.md +++ b/docs/user-guide/nodes.md @@ -55,7 +55,7 @@ Replace OpenAI configuration in [your app](apps/intro) with the following. Coming soon! -## Coding assistant agnets +## Coding assistant agents ### Coder