openai-async/lib/Net/Async/xLM/API/Client/Stream.pm
Ryan Voots 502433f9a1
Some checks failed
ci/woodpecker/push/author-tests/1 Pipeline failed
ci/woodpecker/push/author-tests/2 Pipeline failed
ci/woodpecker/push/author-tests/3 Pipeline failed
ci/woodpecker/push/author-tests/4 Pipeline failed
beginning rename of things
2024-12-18 11:07:10 -05:00

24 lines
No EOL
367 B
Perl

package OpenAIAsync::Client::Stream;
use v5.36;
use Object::Pad;
class OpenAIAsync::Client::Stream {
use Future::Queue;
use Future::AsyncAwait;
field $queue = Future::Queue->new();
field $io_stream :param;
ADJUST {
}
# Put an event into the queue once it's come in from $io_stream
method _send_event() {
}
async method next_event() {
}
}