Skip to content

Commit e07bfe2

Browse files
committed
Fix typo in Readme
1 parent 729ca97 commit e07bfe2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Console.WriteLine(result.ToString());
1313
```
1414

1515
```csharp
16-
var api = new OpenAI_API.OpenAIAPI("sk-mysecretkeyhere"););
16+
var api = new OpenAI_API.OpenAIAPI("sk-myapikeyhere"););
1717

1818
var result = await api.Search.GetBestMatchAsync("Washington DC", "Canada", "China", "USA", "Spain");
1919
Console.WriteLine(result);
@@ -37,7 +37,7 @@ Install-Package OpenAI
3737
There are 3 ways to provide your API keys, in order of precedence:
3838
1. Pass keys directly to `APIAuthentication(string key)` constructor
3939
2. Set environment var for OPENAI_KEY
40-
3. Include a config file in the local directory or in your user directory named `.openai` and containing one or both lines:
40+
3. Include a config file in the local directory or in your user directory named `.openai` and containing the line:
4141
```shell
4242
OPENAI_KEY=sk-aaaabbbbbccccddddd
4343
```

0 commit comments

Comments
 (0)