Skip to content
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

Update nodes.md #66

Merged
merged 1 commit into from
Sep 15, 2024
Merged
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
26 changes: 19 additions & 7 deletions docs/user-guide/nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ to use the GaiaNet API in your favorite agent frameworks or apps.

## Llama

This node runs a plain Llama 3 8b model without any additional knowledge.
This node runs an Llama 3.1 8b model without additional knowledge base.
[Chat with it](https://llama.us.gaianet.network/) or use it from another app. Replace OpenAI configuration in [your app](apps/intro) with the following.

|Config option | Value |
Expand All @@ -22,7 +22,7 @@ This node runs a plain Llama 3 8b model without any additional knowledge.

## Tool use Llama

This node runs a Llama 3 Groq 8b model finetuned for tool use.
This node runs an Llama 3 Groq 8b model finetuned for tool use.
You can send it a list of tools and a request. It will respond with a tool call to answer that request.
[Learn more](../tutorial/tool-call.md) how to use tool call models in your agent app.
Replace OpenAI configuration in [your app](apps/intro) with the following.
Expand All @@ -34,9 +34,21 @@ Replace OpenAI configuration in [your app](apps/intro) with the following.
| Model Name (for Text embedding) | nomic-embed |
| API key | Empty or any value |

## Yi Coder

This node runs a Yi Coder 9b model without additional knowledge base.
[Chat with it](https://yicoder.us.gaianet.network/) or use it from another app. Replace OpenAI configuration in [your app](apps/intro) with the following.

|Config option | Value |
|-----|--------|
| API endpoint URL | https://yicoder.us.gaianet.network/v1 |
| Model Name (for LLM) | yicoder |
| Model Name (for Text embedding) | nomic-embed |
| API key | Empty or any value |

## Phi

This node runs a plain Phi 3 mini model without any additional knowledge.
This node runs a Phi 3 mini model without additional knowledge base.
[Chat with it](https://phi.us.gaianet.network/) or use it from another app. Replace OpenAI configuration in [your app](apps/intro) with the following.

|Config option | Value |
Expand All @@ -48,7 +60,7 @@ This node runs a plain Phi 3 mini model without any additional knowledge.

## Gemma

This node runs a plain Gemma 2 27b model without any additional knowledge.
This node runs a Gemma 2 9b model without additional knowledge base.
[Chat with it](https://gemma.us.gaianet.network/) or use it from another app. Replace OpenAI configuration in [your app](apps/intro) with the following.

|Config option | Value |
Expand All @@ -60,7 +72,7 @@ This node runs a plain Gemma 2 27b model without any additional knowledge.

## Codestral

This node runs a plain Codestral model without any additional knowledge.
This node runs a Codestral 22b model without additional knowledge base.
[Chat with it](https://codestral.us.gaianet.network/) or use it from another app. Replace OpenAI configuration in [your app](apps/intro) with the following.

|Config option | Value |
Expand All @@ -73,7 +85,7 @@ This node runs a plain Codestral model without any additional knowledge.

## Chemistry teacher

This node runs a finetuned Llama 3 8b model with a knowledge base of chemical elements and high school chemistry.
This node runs a finetuned Llama 3.1 8b model with a knowledge base of chemical elements and high school chemistry.
[Chat with it](https://chemistry.us.gaianet.network/) or use it from another app. Replace OpenAI configuration in [your app](apps/intro) with the following.

|Config option | Value |
Expand All @@ -85,7 +97,7 @@ This node runs a finetuned Llama 3 8b model with a knowledge base of chemical el

## Bible pastor

This node runs a finetuned Llama 3 8b model with a knowledge base of Bible teachings of everyday events and emotions.
This node runs a finetuned Llama 3,1 8b model with a knowledge base of Bible teachings of everyday events and emotions.
[Chat with it](https://bible.us.gaianet.network/) or use it from another app. Replace OpenAI configuration in [your app](apps/intro) with the following.

|Config option | Value |
Expand Down
Loading