Skip to content

Commit c8270e9

Browse files
committed
Version 1.1.0
1 parent 48c0970 commit c8270e9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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.RC.2-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.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)
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

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

6363
```
64-
"io.cequence" %% "openai-scala-client" % "1.1.0.RC.2"
64+
"io.cequence" %% "openai-scala-client" % "1.1.0"
6565
```
6666

6767
or to *pom.xml* (if you use maven)
@@ -70,11 +70,11 @@ or to *pom.xml* (if you use maven)
7070
<dependency>
7171
<groupId>io.cequence</groupId>
7272
<artifactId>openai-scala-client_2.12</artifactId>
73-
<version>1.1.0.RC.2</version>
73+
<version>1.1.0</version>
7474
</dependency>
7575
```
7676

77-
If you want streaming support, use `"io.cequence" %% "openai-scala-client-stream" % "1.1.0.RC.2"` instead.
77+
If you want streaming support, use `"io.cequence" %% "openai-scala-client-stream" % "1.1.0"` instead.
7878

7979
## Config ⚙️
8080

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.0.RC.23"
10+
ThisBuild / version := "1.1.0"
1111
ThisBuild / isSnapshot := false
1212

1313
lazy val commonSettings = Seq(

0 commit comments

Comments
 (0)