> ## Documentation Index
> Fetch the complete documentation index at: https://glide.einstack.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Providers

> Provider Configurations

## Currently Supported Providers

* [OpenAI](https://openai.com/)
* Azure OpenAI
* [Cohere](https://cohere.com/)
* [Anthropic](https://www.anthropic.com/)
* [OctoML](https://octo.ai/)
* [LocalAI](https://localai.io/)
* more is coming

## OpenAI

Below are the default\_params and model name for OpenAI. Specify override values in the `config.yaml` file.

```yaml
model: "gpt-3.5-turbo"
default_params:
    temperature: 0.8 # number between 0 - 2
    top_p: 1
    max_tokens: 100
    n: 1
    stop:
        - ""
    frequency_penalty: 0
    presence_penalty: 0
    logit_bias: null
    user: null
    seed: null
    tools: []
    tool_choice: null
    response_format: null
```

## Azure OpenAI

Below are the default\_params for Azure OpenAI. Specify override values in the `config.yaml` file.
There is no default model for Azure OpenAI.

```yaml
default_params:
    temperature: 0.8 # number between 0 - 2
    top_p: 1
    max_tokens: 100
    n: 1
    stop:
        - ""
    frequency_penalty: 0
    presence_penalty: 0
    logit_bias: null
    user: null
    seed: null
    tools: []
    tool_choice: null
    response_format: null
```

## Cohere

the default\_params and model name for Cohere. Specify override values in the `config.yaml` file.

```yaml
model: "command-light"
default_params:
  temperature: 0.8 # number between 0 - 1
  preamble_override: ""
  chat_history: []
  conversation_id: ""
  prompt_truncation: ""
  connectors: []
  search_queries_only: false
  citiation_quality: ""

```

## OctoML

the default\_params and model name for OctoML. Specify override values in the `config.yaml` file.

```yaml
model: "mistral-7b-instruct-fp16"
default_params:
  temperature: 1 # number between 0 - 2
  top_p: 1
  max_tokens: 100
  stop:
    - ""
  frequency_penalty: 0
  presence_penalty: 0
```
