You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Currently we are supporting the `openai.chatCompletionService()` service only.
32
32
[Anyscale](https://www.anyscale.com/endpoints) is suported by Simple-OpenAI. We can use the class `SimpleOpenAIAnyscale`, which extends the class `BaseSimpleOpenAI`, to start using this provider.
33
33
```java
34
34
var openai =SimpleOpenAIAnyscale.builder()
35
-
.apiKey(System.getenv("AZURE_OPENAI_API_KEY"))
35
+
.apiKey(System.getenv("ANYSCALE_API_KEY"))
36
36
//.baseUrl(customUrl) Optionally you could pass a custom baseUrl
37
37
//.httpClient(customHttpClient) Optionally you could pass a custom HttpClient
38
38
.build();
@@ -372,4 +372,4 @@ Examples for each OpenAI service have been created in the folder [demo](https://
372
372
## 📄 License
373
373
Simple-OpenAI is licensed under the MIT License. See the
0 commit comments