openai-async/lib/Net/Async/xLM/API/Server/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

23 lines
No EOL
335 B
Perl

package OpenAIAsync::Server::Stream;
use v5.36;
use Object::Pad;
class OpenAIAsync::Server::Stream {
use Future::Queue;
# TODO what to do for non-io async setups, long term
field $io_stream :param;
async method send_headers() {
}
async method send_event($event_data) {
}
async method finish() {
}
}