coffeehouse 1.0.1 copy "coffeehouse: ^1.0.1" to clipboard
coffeehouse: ^1.0.1 copied to clipboard

Official asynchronous API wrapper for Intellivoid's Coffeehouse API.

example/example.dart

import 'dart:io';

import 'package:coffeehouse/coffeehouse.dart';

void main() async {
  var lydia = Lydia("YOUR_ACCESS_KEY");
  var session = await lydia.createSession();
  while (true) {
    print("Enter some text");
    var input = stdin.readLineSync();
    print("Output: ${await session.thinkThought(input)}");
  }
}
2
likes
40
pub points
0%
popularity

Publisher

verified publisherintellivoid.net

Official asynchronous API wrapper for Intellivoid's Coffeehouse API.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

http

More

Packages that depend on coffeehouse