Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
denniszielke authored Apr 22, 2024
1 parent 3eb9aef commit 81925b2
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@ azd up

## Configure the local env config for testing

Copy *template.env* and rename it to *.env* config file with OpenAI, AI Search config details

```
OPENAI_API_TYPE = "azure"
AZURE_OPENAI_VERSION = "2024-02-01"
AZURE_OPENAI_API_KEY = ""
AZURE_OPENAI_ENDPOINT = "https://.openai.azure.com/"
AZURE_OPENAI_COMPLETION_MODEL = "gpt-35-turbo"
AZURE_OPENAI_COMPLETION_DEPLOYMENT_NAME = "gpt-35-turbo"
AZURE_OPENAI_EMBEDDING_MODEL = "text-embedding-3-small"
AZURE_OPENAI_EMBEDDING_DEPLOYMENT_NAME = "text-embedding-3-small"
AZURE_OPENAI_EMBEDDING_VERSION = "2024-02-01"
```


## Test API for Challenge 1
Expand All @@ -37,4 +54,4 @@ curl -X 'POST' \
"correlationToken": "fgsdfgsd"
}'
```
```

0 comments on commit 81925b2

Please sign in to comment.