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

docs: fix release #193

Merged
merged 1 commit into from
Apr 12, 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
31 changes: 17 additions & 14 deletions website/docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,20 @@ git push origin v0.1.0

- Once release is done, trigger [update models](https://github.com/sozercan/aikit/actions/workflows/update-models.yaml) action to update the pre-built models.

> [!NOTE]
> At this time, Mixtral 8x7b model does not fit into GitHub runners due to its size. It is built and pushed to GHCR manually.
> ```shell
> docker buildx build . -t ghcr.io/sozercan/mixtral:8x7b \
> -t ghcr.io/sozercan/mixtral:8x7b-instruct \
> -f models/mixtral-7x8b-instruct.yaml \
> --push --progress=plain --provenance=true --sbom=true
>```
>
>```shell
>docker buildx build . -t ghcr.io/sozercan/mixtral:8x7b-cuda -t ghcr.io/sozercan/mixtral:8x7b-instruct-cuda \
> -f models/mixtral-7x8b-instruct-cuda.yaml \
> --push --progress=plain --provenance=true --sbom=true
>```
:::note

At this time, Mixtral 8x7b model does not fit into GitHub runners due to its size. It is built and pushed to GHCR manually.

```shell
docker buildx build . -t ghcr.io/sozercan/mixtral:8x7b \
-t ghcr.io/sozercan/mixtral:8x7b-instruct \
-f models/mixtral-7x8b-instruct.yaml \
--push --progress=plain --provenance=true --sbom=true
```

```shell
docker buildx build . -t ghcr.io/sozercan/mixtral:8x7b-cuda -t ghcr.io/sozercan/mixtral:8x7b-instruct-cuda \
-f models/mixtral-7x8b-instruct-cuda.yaml \
--push --progress=plain --provenance=true --sbom=true
```
:::