Skip to content

Commit

Permalink
Update quickstart.md
Browse files Browse the repository at this point in the history
Signed-off-by: Ettore Di Giacinto <[email protected]>
  • Loading branch information
mudler authored Mar 28, 2024
1 parent 13ccd2a commit 8477e8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/content/docs/getting-started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ services:

For a list of all the container-images available, see [Container images]({{%relref "docs/reference/container-images" %}}). To learn more about All-in-one images instead, see [All-in-one Images]({{%relref "docs/reference/aio-images" %}}).

{{% alert icon="💡 Models caching" %}}
{{% alert icon="💡" %}}

The **AIO** image will download the needed models on the first run if not already present and store those in `/build/models` inside the container. The AIO models will be automatically updated with new versions of AIO images.
**Models caching**: The **AIO** image will download the needed models on the first run if not already present and store those in `/build/models` inside the container. The AIO models will be automatically updated with new versions of AIO images.

You can change the directory inside the container by specifying a `MODELS_PATH` environment variable (or `--models-path`).

Expand All @@ -104,7 +104,7 @@ docker run -p 8080:8080 --name local-ai -ti -v $PWD/models:/build/models localai
or associate a volume:

```bash
docker create volume localai-models
docker volume create localai-models
docker run -p 8080:8080 --name local-ai -ti -v localai-models:/build/models localai/localai:latest-aio-cpu
```

Expand Down Expand Up @@ -298,4 +298,4 @@ Explore further resources and community contributions:
- [Run other models]({{%relref "docs/getting-started/run-other-models" %}})
- [Container images]({{%relref "docs/reference/container-images" %}})
- [All-in-one Images]({{%relref "docs/reference/aio-images" %}})
- [Examples](https://github.com/mudler/LocalAI/tree/master/examples#examples)
- [Examples](https://github.com/mudler/LocalAI/tree/master/examples#examples)

0 comments on commit 8477e8f

Please sign in to comment.