Skip to content

Commit

Permalink
chore(docs): update version in README to 0.2.2
Browse files Browse the repository at this point in the history
Update the Maven Central badge and implementation examples to reflect the new library version 0.2.2 in the README.md file.
  • Loading branch information
hanrw committed Jan 5, 2025
1 parent 2eb7e83 commit ec080fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![CI](https://github.com/tddworks/openai-kotlin/actions/workflows/main.yml/badge.svg)
[![codecov](https://codecov.io/gh/tddworks/openai-kotlin/graph/badge.svg?token=ZHqC4RjnCf)](https://codecov.io/gh/tddworks/openai-kotlin)
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Maven Central](https://img.shields.io/maven-central/v/com.tddworks/openai-client-core/0.2.1)](https://central.sonatype.com/artifact/com.tddworks/openai-client-jvm)
[![Maven Central](https://img.shields.io/maven-central/v/com.tddworks/openai-client-core/0.2.2)](https://central.sonatype.com/artifact/com.tddworks/openai-client-jvm)


# openai-kotlin powered by kotlin multiplatform
Expand All @@ -13,7 +13,7 @@ To get started, simply add the following dependency to your Kotlin project:
**OpenAI API**

```kotlin
implementation("com.tddworks:openai-client-jvm:0.2.1")
implementation("com.tddworks:openai-client-jvm:0.2.2")
```
**Then, configure the OpenAI with your API keys and settings:**
- Default values are provided for the baseUrl, but you can override them with your own values.
Expand Down Expand Up @@ -68,7 +68,7 @@ val completion = openAI.completions(
**OpenAI Gateway**

```kotlin
implementation("com.tddworks:openai-gateway-jvm:0.2.1")
implementation("com.tddworks:openai-gateway-jvm:0.2.2")
```

**Then, configure the OpenAIGateway with your API keys and settings:**
Expand Down

0 comments on commit ec080fa

Please sign in to comment.