|
--- |
|
title: Anyscale |
|
--- |
|
|
|
To use Open Interpreter with a model from Anyscale, set the `` |
|
|
|
<CodeGroup> |
|
|
|
```bash |
|
interpreter /<model-name> |
|
``` |
|
|
|
```python Python |
|
from interpreter import interpreter |
|
|
|
# Set the model to use from AWS Bedrock: |
|
interpreter.llm.model = |
|
interpreter.chat() |
|
``` |
|
|
|
</ |
|
|
|
# Supported |
|
|
|
We |
|
|
|
- Llama |
|
- Llama |
|
- Llama |
|
- Mistral |
|
- CodeLlama |
|
|
|
<CodeGroup> |
|
|
|
```bash |
|
interpreter /meta-llama/ |
|
interpreter /meta-llama/ |
|
interpreter /meta-llama/ |
|
interpreter /mistralai/ |
|
interpreter /codellama/ |
|
``` |
|
|
|
```python |
|
interpreter.llm.model |
|
interpreter.llm.model |
|
interpreter.llm.model |
|
interpreter.llm.model |
|
interpreter.llm.model |
|
|
|
``` |
|
|
|
</CodeGroup> |
|
|
|
# Required Environment Variables |
|
|
|
Set the following environment variables [(click here to learn how)](https: |
|
|
|
| Environment Variable | Description | Where to Find | |
|
| -------------------- | -------------------------------------- | --------------------------------------------------------------------------- | |
|
| `ANYSCALE_API_KEY` | The API key for your Anyscale account. | [Anyscale Account Settings](https: |
|
|