v1.0.16chat_gpt_flutter
Flutterフレームワークを使用したOpenAI APIの統合、ChatGPTおよびその他の機能
48いいね 26430日間ダウンロード150Pub ポイント
AndroidiOSWebmacOSWindowsLinux
hrvojecukman/chat_gpt_flutter open-source repository details.
^5.4.0{"sdk":"flutter"}^1.1.2^4.8.1^6.7.1^1.3.1{"sdk":"flutter"}^3.0.1^8.0.6^2.4.7以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
ChatGPT API implemented in Flutter
Usage example
You have to create OpenAI account and request API key from here: https://beta.openai.com/account/api-keys
final chatGpt = ChatGpt(apiKey: apiKey);
final question =
'Which Disney character famously leaves a glass slipper behind at a royal ball?';
final request = CompletionRequest(
prompt: question,
stream: true,
maxTokens: 4000,
model: ChatGptModel.textDavinci003.key,
);
final stream = await chatGpt.createCompletionStream(request);
final chatGpt = ChatGpt(apiKey: apiKey);
final testPrompt =
'Which Disney character famously leaves a glass slipper behind at a royal ball?';
final testRequest = CompletionRequest(
prompt: testPrompt,
model: ChatGptModel.textDavinci003.key,
);
final result = await chatGpt.createCompletion(testRequest);