From 0d9ab39bb9f9cb65851996ec93353f775fce1cd7 Mon Sep 17 00:00:00 2001 From: Peter Banda Date: Thu, 19 Sep 2024 16:34:47 +0200 Subject: [PATCH] Release candidate - version 1.1.0.RC.2 --- README.md | 8 ++++---- build.sbt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 34b73dba..33e7fca8 100755 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # OpenAI Scala Client 🤖 -[![version](https://img.shields.io/badge/version-1.1.0.RC.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) +[![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) 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: @@ -59,7 +59,7 @@ The currently supported Scala versions are **2.12, 2.13**, and **3**. To install the library, add the following dependency to your *build.sbt* ``` -"io.cequence" %% "openai-scala-client" % "1.1.0.RC.1" +"io.cequence" %% "openai-scala-client" % "1.1.0.RC.2" ``` or to *pom.xml* (if you use maven) @@ -68,11 +68,11 @@ or to *pom.xml* (if you use maven) io.cequence openai-scala-client_2.12 - 1.1.0.RC.1 + 1.1.0.RC.2 ``` -If you want streaming support, use `"io.cequence" %% "openai-scala-client-stream" % "1.1.0.RC.1"` instead. +If you want streaming support, use `"io.cequence" %% "openai-scala-client-stream" % "1.1.0.RC.2"` instead. ## Config ⚙️ diff --git a/build.sbt b/build.sbt index 3fa403df..537cf555 100755 --- a/build.sbt +++ b/build.sbt @@ -7,7 +7,7 @@ val scala3 = "3.2.2" ThisBuild / organization := "io.cequence" ThisBuild / scalaVersion := scala212 -ThisBuild / version := "1.1.0.RC.12" +ThisBuild / version := "1.1.0.RC.2" ThisBuild / isSnapshot := false lazy val commonSettings = Seq(