v1.0.16chat_gpt_flutter
Integration of OpenAI API using Flutter framework, ChatGPT and more
48Likes 26430-day downloads150Pub points
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.7English project snapshot. Visit GitHub for the latest content.
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);