Skip to content

Commit af59799

Browse files
committed
Update to 0.0.2
1 parent 1f4d91c commit af59799

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.0.2
2+
3+
* Update README
4+
5+
16
## 0.0.1
27

38
* Initial release of ChatGPT API Client

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Access OpenAI ChatGPT Official API using Dart Language. Supports any Dart projec
99
- Support any custom model as Parameter (GPT-3.5, GPT-4, etc)
1010
- Support Stream HTTP Response using native Dart Stream.
1111
- Support Standard HTTP Response.
12+
- Pass custom system prompt and temperature.
1213

1314
## Getting started
1415

@@ -21,7 +22,7 @@ Register for API key from [OpenAI](https://openai.com/api).
2122
Initialize with api key. Default model is `gpt-3.5-turbo`.
2223

2324
```dart
24-
import 'package:chatgpt_api/src/chatgptapi.dart';
25+
import 'package:chatgpt_client/chatgpt_client.dart';
2526
2627
const api = ChatGPTAPI(apiKey: "API_KEY");
2728
```

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: chatgpt_client
22
description: ChatGPT API Client for Dart
3-
version: 0.0.1
3+
version: 0.0.2
44
homepage: https://github.com/alfianlosari/chatgpt_api_dart
55

66
environment:

0 commit comments

Comments
 (0)