mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-01 20:18:50 +00:00
* move docs -> source * Add files via upload * mv image * Add files via upload * colocate iOS setup doc * delete image * Add files via upload * fix * delete image * Add files via upload * Update developer_cookbook.md * toctree * wip subfolder * docs update * subfolder * updates * name * updates * index * updates * refactor structure * depth * docs * content * docs * getting started * distributions * fireworks * fireworks * update * theme * theme * theme * pdj theme * pytorch theme * css * theme * agents example * format * index * headers * copy button * test tabs * test tabs * fix * tabs * tab * tabs * sphinx_design * quick start commands * size * width * css * css * download models * asthetic fix * tab format * update * css * width * css * docs * tab based * tab * tabs * docs * style * image * css * color * typo * update docs * missing links * list templates * links * links update * troubleshooting * fix * distributions * docs * fix table * kill llamastack-local-gpu/cpu * Update index.md * Update index.md * mv ios_setup.md * Update ios_setup.md * Add remote_or_local.gif * Update ios_setup.md * release notes * typos * Add ios_setup to index * nav bar * hide torctree * ios image * links update * rename * rename * docs * rename * links * distributions * distributions * distributions * distributions * remove release * remote --------- Co-authored-by: dltn <6599399+dltn@users.noreply.github.com> Co-authored-by: Ashwin Bharambe <ashwin.bharambe@gmail.com>
65 lines
2.9 KiB
Markdown
65 lines
2.9 KiB
Markdown
# Together Distribution
|
|
|
|
### Connect to a Llama Stack Together Endpoint
|
|
- You may connect to a hosted endpoint `https://llama-stack.together.ai`, serving a Llama Stack distribution
|
|
|
|
The `llamastack/distribution-together` distribution consists of the following provider configurations.
|
|
|
|
|
|
| **API** | **Inference** | **Agents** | **Memory** | **Safety** | **Telemetry** |
|
|
|----------------- |--------------- |---------------- |-------------------------------------------------- |---------------- |---------------- |
|
|
| **Provider(s)** | remote::together | meta-reference | meta-reference, remote::weaviate | meta-reference | meta-reference |
|
|
|
|
|
|
### Docker: Start the Distribution (Single Node CPU)
|
|
|
|
> [!NOTE]
|
|
> This assumes you have an hosted endpoint at Together with API Key.
|
|
|
|
```
|
|
$ cd distributions/together
|
|
$ ls
|
|
compose.yaml run.yaml
|
|
$ docker compose up
|
|
```
|
|
|
|
Make sure in you `run.yaml` file, you inference provider is pointing to the correct Together URL server endpoint. E.g.
|
|
```
|
|
inference:
|
|
- provider_id: together
|
|
provider_type: remote::together
|
|
config:
|
|
url: https://api.together.xyz/v1
|
|
api_key: <optional api key>
|
|
```
|
|
|
|
### Conda llama stack run (Single Node CPU)
|
|
|
|
```bash
|
|
llama stack build --template together --image-type conda
|
|
# -- modify run.yaml to a valid Together server endpoint
|
|
llama stack run ./run.yaml
|
|
```
|
|
|
|
### (Optional) Update Model Serving Configuration
|
|
|
|
Use `llama-stack-client models list` to check the available models served by together.
|
|
|
|
```
|
|
$ llama-stack-client models list
|
|
+------------------------------+------------------------------+---------------+------------+
|
|
| identifier | llama_model | provider_id | metadata |
|
|
+==============================+==============================+===============+============+
|
|
| Llama3.1-8B-Instruct | Llama3.1-8B-Instruct | together0 | {} |
|
|
+------------------------------+------------------------------+---------------+------------+
|
|
| Llama3.1-70B-Instruct | Llama3.1-70B-Instruct | together0 | {} |
|
|
+------------------------------+------------------------------+---------------+------------+
|
|
| Llama3.1-405B-Instruct | Llama3.1-405B-Instruct | together0 | {} |
|
|
+------------------------------+------------------------------+---------------+------------+
|
|
| Llama3.2-3B-Instruct | Llama3.2-3B-Instruct | together0 | {} |
|
|
+------------------------------+------------------------------+---------------+------------+
|
|
| Llama3.2-11B-Vision-Instruct | Llama3.2-11B-Vision-Instruct | together0 | {} |
|
|
+------------------------------+------------------------------+---------------+------------+
|
|
| Llama3.2-90B-Vision-Instruct | Llama3.2-90B-Vision-Instruct | together0 | {} |
|
|
+------------------------------+------------------------------+---------------+------------+
|
|
```
|