v1.0.16chat_gpt_flutter
使用 Flutter 框架整合 OpenAI API,ChatGPT 及更多功能
48喜歡 264近 30 天下載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);