Last updated:
0 purchases
openai flutter
A openai library for flutter,it works on iOS,Android,Web,macOS and Windows.
How to use #
Step1:init config
AIConfigBuilder.init('your apiKey');
copied to clipboard
Step2: to get a completion
try {
var response = await AICompletion().create(prompt: '讲个故事', maxTokens: 1000);
var choices = response.choices?.first;
print('result:${choices?.text}');
expect(choices, isNotNaN);
} catch (e) {
print(e);
}
copied to clipboard
Enjoy!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.