Skip to content

Commit

Permalink
release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zortan3301 committed Mar 10, 2023
1 parent 8164dd6 commit 21bdc8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ implementation 'io.github.aminovmaksim:chatgpt4j:1.0.1'
```java
ChatGPTClient client = ChatGPTClient.builder()
.apiKey("YOUR_KEY")
.requestTimeout(30000L)
.requestTimeout(30000L) // optional, default is 60000 ms
.baseUrl("https://api.openai.com/v1") // optional
.build();
```
You can get your api key [here](https://platform.openai.com/account/api-keys)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.aminovmaksim</groupId>
<artifactId>chatgpt4j</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>ChatGPT4J</name>
<description>OpenAI ChatGPT API Client</description>

Expand Down

0 comments on commit 21bdc8a

Please sign in to comment.