Skip to content

Commit

Permalink
feat: Framework moved to a sub-folder
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Oct 18, 2024
1 parent ab33714 commit 14e0303
Show file tree
Hide file tree
Showing 20 changed files with 116 additions and 108 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ on:
push:

jobs:
mypy:
name: mypy
package-mypy:
name: "Package: mypy"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libertai_agents
steps:
- uses: actions/checkout@v4
- name: Install poetry
Expand All @@ -21,19 +24,24 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-check
target: libertai_agents
workdir: './libertai_agents'
target: "./libertai_agents"
execute_command: 'poetry run mypy'

ruff:
name: ruff
name: "Package: ruff"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libertai_agents
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'poetry'
- name: Install dependencies
run: pip install ruff
- name: Run Ruff
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
/venv
/dist
2 changes: 2 additions & 0 deletions libertai_agents/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/venv
/dist
16 changes: 16 additions & 0 deletions libertai_agents/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# LibertAI Agents

## Supported models

We support multiple open-source models that have agentic capabilities.

- [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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
188 changes: 86 additions & 102 deletions poetry.lock → libertai_agents/poetry.lock

Large diffs are not rendered by default.

File renamed without changes.

0 comments on commit 14e0303

Please sign in to comment.