openai_flutter

Last updated:

0 purchases

openai_flutter Image
openai_flutter Images
Add to Cart

Description:

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!

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.