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);