From 7e4934f15ed4eb62b2eb51de41b8824b249aa773 Mon Sep 17 00:00:00 2001 From: bossanyit Date: Thu, 11 May 2023 08:10:17 +0200 Subject: [PATCH] v1.0.29 --- README.md | 4 ++++ lib/service/openai_service.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 615056e..dae89af 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ Workout Test and Diet 4 You Common Util Functions +### Version 1.0.29 + +- gpt4 model + ### Version 1.0.28 - api isWeb diff --git a/lib/service/openai_service.dart b/lib/service/openai_service.dart index 40d4329..f3f675e 100644 --- a/lib/service/openai_service.dart +++ b/lib/service/openai_service.dart @@ -9,7 +9,7 @@ import 'package:workouttest_util/util/logging.dart'; class OpenAIApi with Logging { final String modelDavinci = "text-davinci-003"; final String modelGpt35 = "gpt-3.5-turbo"; - final String modelGpt4 = "gpt-4-32k"; + final String modelGpt4 = "gpt-4"; final String modelAda = "text-embedding-ada-002"; final APIClient _client = APIClient(); diff --git a/pubspec.yaml b/pubspec.yaml index d9c88e6..f00cefc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: workouttest_util description: Workout Test app and web functions. -version: 1.0.28 +version: 1.0.29 environment: sdk: ">=2.18.6 <3.0.0"