Skip to content

Commit 4a49256

Browse files
committed
Version 1.1.1
1 parent 360fde7 commit 4a49256

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# OpenAI Scala Client 🤖
2-
[![version](https://img.shields.io/badge/version-1.1.0-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT) ![GitHub Stars](https://img.shields.io/github/stars/cequence-io/openai-scala-client?style=social) [![Twitter Follow](https://img.shields.io/twitter/follow/0xbnd?style=social)](https://twitter.com/0xbnd) ![GitHub CI](https://github.com/cequence-io/openai-scala-client/actions/workflows/continuous-integration.yml/badge.svg)
2+
[![version](https://img.shields.io/badge/version-1.1.1-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT) ![GitHub Stars](https://img.shields.io/github/stars/cequence-io/openai-scala-client?style=social) [![Twitter Follow](https://img.shields.io/twitter/follow/0xbnd?style=social)](https://twitter.com/0xbnd) ![GitHub CI](https://github.com/cequence-io/openai-scala-client/actions/workflows/continuous-integration.yml/badge.svg)
33

44
This is a no-nonsense async Scala client for OpenAI API supporting all the available endpoints and params **including streaming**, the newest **chat completion**, **vision**, and **voice routines** (as defined [here](https://beta.openai.com/docs/api-reference)), provided in a single, convenient service called [OpenAIService](./openai-core/src/main/scala/io/cequence/openaiscala/service/OpenAIService.scala). The supported calls are:
55

@@ -63,7 +63,7 @@ The currently supported Scala versions are **2.12, 2.13**, and **3**.
6363
To install the library, add the following dependency to your *build.sbt*
6464

6565
```
66-
"io.cequence" %% "openai-scala-client" % "1.1.0"
66+
"io.cequence" %% "openai-scala-client" % "1.1.1"
6767
```
6868

6969
or to *pom.xml* (if you use maven)
@@ -72,11 +72,11 @@ or to *pom.xml* (if you use maven)
7272
<dependency>
7373
<groupId>io.cequence</groupId>
7474
<artifactId>openai-scala-client_2.12</artifactId>
75-
<version>1.1.0</version>
75+
<version>1.1.1</version>
7676
</dependency>
7777
```
7878

79-
If you want streaming support, use `"io.cequence" %% "openai-scala-client-stream" % "1.1.0"` instead.
79+
If you want streaming support, use `"io.cequence" %% "openai-scala-client-stream" % "1.1.1"` instead.
8080

8181
## Config ⚙️
8282

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ val scala3 = "3.2.2"
77

88
ThisBuild / organization := "io.cequence"
99
ThisBuild / scalaVersion := scala212
10-
ThisBuild / version := "1.1.1.RC.17"
10+
ThisBuild / version := "1.1.1"
1111
ThisBuild / isSnapshot := false
1212

1313
lazy val commonSettings = Seq(

openai-core/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenAI Scala Client - Core [![version](https://img.shields.io/badge/version-1.0.0-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT)
1+
# OpenAI Scala Client - Core [![version](https://img.shields.io/badge/version-1.1.1-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT)
22

33
This is the core module, which contains mostly domain classes and the [OpenAIService](./src/main/scala/io/cequence/openaiscala/service/OpenAIService.scala) definition.
44
Note that the full project documentation can be found [here](../README.md).
@@ -10,7 +10,7 @@ The currently supported Scala versions are **2.12, 2.13**, and **3**.
1010
To pull the library you have to add the following dependency to your *build.sbt*
1111

1212
```
13-
"io.cequence" %% "openai-scala-core" % "1.0.0"
13+
"io.cequence" %% "openai-scala-core" % "1.1.1"
1414
```
1515

1616
or to *pom.xml* (if you use maven)
@@ -19,6 +19,6 @@ or to *pom.xml* (if you use maven)
1919
<dependency>
2020
<groupId>io.cequence</groupId>
2121
<artifactId>openai-scala-core_2.12</artifactId>
22-
<version>1.0.0</version>
22+
<version>1.1.1</version>
2323
</dependency>
2424
```

openai-count-tokens/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenAI Scala Client - Count tokens [![version](https://img.shields.io/badge/version-1.0.0-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT)
1+
# OpenAI Scala Client - Count tokens [![version](https://img.shields.io/badge/version-1.1.1-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT)
22

33
This module provides ability for estimating the number of tokens an OpenAI chat completion request will use.
44
Note that the full project documentation can be found [here](../README.md).
@@ -21,7 +21,7 @@ or to *pom.xml* (if you use maven)
2121
<dependency>
2222
<groupId>io.cequence</groupId>
2323
<artifactId>openai-scala-count-tokens_2.12</artifactId>
24-
<version>1.0.0</version>
24+
<version>1.1.1</version>
2525
</dependency>
2626
```
2727

0 commit comments

Comments
 (0)