-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Model links updated for first public release
- Loading branch information
1 parent
1635579
commit a745426
Showing
8 changed files
with
23 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
# LibertAI Agents | ||
|
||
## Supported models | ||
LibertAI Agents are highly customizable assistants that operates in a decentralized and confidential environment.\ | ||
They can be given tools to perform tasks (search something on the web, make a transaction on-chain...), making them | ||
powerful companions. | ||
|
||
We support multiple open-source models that have agentic capabilities. | ||
> 💡 Agents are currently in private beta, contact the team [on Telegram](https://t.me/libertai) if you | ||
want to try it out!\ | ||
We are planning some improvements and will listen to beta tester's feedbacks before releasing a stable version. | ||
|
||
- [Hermes 2 Pro - Llama 3 8B](https://huggingface.co/NousResearch/Hermes-2-Pro-Llama-3-8B) | ||
- ⏳ [Hermes 3 - Llama-3.1 8B](https://huggingface.co/NousResearch/Hermes-3-Llama-3.1-8B) | ||
- ⏳ [Mistral-Nemo-Instruct-2407](https://huggingface.co/mistralai/Mistral-Nemo-Instruct-2407) | ||
|
||
## Using a gated model | ||
|
||
Some models, like [Mistral-Nemo-Instruct-2407](https://huggingface.co/mistralai/Mistral-Nemo-Instruct-2407) are gated ( | ||
generally to require you to accept some usage conditions).\ | ||
To use those models, you need to create an [access token](https://huggingface.co/settings/tokens) from your Hugging Face | ||
account and give it to the `get_model` function. | ||
This repository contains the source code of the actual [Python framework](https://pypi.org/project/libertai-agents) that you can use to create your agents, along with the backend used internally to manage their deployment on [Aleph.im](https://aleph.im)'s decentralized and confidential VMs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
/venv | ||
/dist | ||
/dist | ||
|
||
# Development test file | ||
/dev.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,7 @@ | ||
# LibertAI Agents | ||
|
||
## Supported models | ||
Framework to create and deploy decentralized agents 🚀 | ||
|
||
We support multiple open-source models that have agentic capabilities. | ||
> ⚠ This framework is in beta and might undergo some breaking changes before the stable release. | ||
- [Hermes 2 Pro - Llama 3 8B](https://huggingface.co/NousResearch/Hermes-2-Pro-Llama-3-8B) | ||
- ⏳ [Hermes 3 - Llama-3.1 8B](https://huggingface.co/NousResearch/Hermes-3-Llama-3.1-8B) | ||
- ⏳ [Mistral-Nemo-Instruct-2407](https://huggingface.co/mistralai/Mistral-Nemo-Instruct-2407) | ||
|
||
## Using a gated model | ||
|
||
Some models, like [Mistral-Nemo-Instruct-2407](https://huggingface.co/mistralai/Mistral-Nemo-Instruct-2407) are gated ( | ||
generally to require you to accept some usage conditions).\ | ||
To use those models, you need to create an [access token](https://huggingface.co/settings/tokens) from your Hugging Face | ||
account and give it to the `get_model` function. | ||
Take a look at [our documentation](https://docs.libertai.io/agents) to get started! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[tool.poetry] | ||
name = "libertai-agents" | ||
version = "0.0.18" | ||
description = "" | ||
version = "0.0.1" | ||
description = "Framework to create and deploy decentralized agents" | ||
authors = ["LibertAI.io team <[email protected]>"] | ||
readme = "README.md" | ||
homepage = "https://libertai.io" | ||
repository = "https://github.com/LibertAI/libertai-agents" | ||
documentation = "https://docs.libertai.io" | ||
documentation = "https://docs.libertai.io/agents" | ||
classifiers = [ | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Developers", | ||
|