streaming

package
v0.26.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 11, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type File

type File interface {
	// Body fetches the content of the file.  If there are any errors, the
	// io.ReadCloser will be nil.  It is the caller's responsibility to close
	// the io.ReadCloser.
	Body(ctx context.Context) (io.ReadCloser, error)
}

File represents a file output from a model over an SSE stream. On the wire, it might be a data URL or a regular http URL. File abstracts over this and provides a way to get the data regardless of the implementation.

type FileStreamer

type FileStreamer interface {
	io.Closer
	NextFile(ctx context.Context) (File, error)
}

FileStreamer represents a stream of output files from a model.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL