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

Add instruction to set openai configuration information #12531

Merged
merged 4 commits into from
Jun 20, 2023
Merged
Changes from 1 commit
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
28 changes: 21 additions & 7 deletions docs/docs/llms/llm-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,17 @@ interaction between the two.

To configure the API token, follow these steps:

1. [Instructions to get your API token]
2. [Instructions to set the token in your LLM configuration]
1. If you haven't already, sign up for an account on the OpenAI platform.
Navigate to the OpenAI Key Management page at https://platform.openai.com/account/api-keys.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Navigate to the OpenAI Key Management page at https://platform.openai.com/account/api-keys.
Navigate to the [OpenAI Key Management page](https://platform.openai.com/account/api-keys).

Once there, click on the "Create New Secret Key" button to initiate the process of
obtaining your API key.

2. Setting the API key as an environment variable, you can use the following command in a
terminal or command prompt:
```shell Copy code
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we might want to also give instructions on how to do it on Powershell. To that end we could use tabs like here

export OPENAI_API_KEY=<your-api-key>
```
Replace `<your-api-key>` with the actual API key you obtained from the OpenAI platform.
m-vdb marked this conversation as resolved.
Show resolved Hide resolved

### Model Configuration

Expand All @@ -70,14 +79,19 @@ to be configured:
OpenAI Service.
- `openai.api_base`: This should be the URL for your Azure OpenAI instance. An
example might look like this: "https://docs-test-001.openai.azure.com/".
- `openai.api_version`: This should be the version of Azure OpenAI you are
using, such as "2023-05-15".


To configure these parameters, follow these steps:

1. [Instructions to set `openai.api_type`]
2. [Instructions to set `openai.api_base`]
3. [Instructions to set `openai.api_version`]
1. To configure the `openai.api_type` as an environment variable:
m-vdb marked this conversation as resolved.
Show resolved Hide resolved
```shell
export OPENAI_API_TYPE="azure"
```
2. To configure the `openai.api_base` as an environment variable:
m-vdb marked this conversation as resolved.
Show resolved Hide resolved
```shell
export OPENAI_API_BASE=<your-azure-openai-instance-url>
```


## Other LLM providers

Expand Down