gpt_3_dart

Last updated:

0 purchases

gpt_3_dart Image
gpt_3_dart Images
Add to Cart

Description:

gpt 3 dart

gpt_3_dart #
A simple Dart package to use with OpenAI's GPT-3 API.
Installation #
dependencies:
flutter:
sdk: flutter
gpt_3_dart:
copied to clipboard
Usage #
import 'package:gpt_3_dart/gpt_3_dart.dart';

void main() async {
OpenAI openAI = new OpenAI(apiKey: "YOUR_KEY_HERE");
String complete = await openAI.complete("This is a test.", 10);
List search = await openAI
.search(["White House", "hospital", "school"], "the president");
print(complete);
print(search);
}
copied to clipboard
Example App #



Text Completion
Semantic Search

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.