We still don't have any documentation and things are in flux, but you can report your OpenAI API calls to OpenPipe now.
8 lines
156 B
Python
8 lines
156 B
Python
""" A client library for accessing OpenPipe API """
|
|
from .client import AuthenticatedClient, Client
|
|
|
|
__all__ = (
|
|
"AuthenticatedClient",
|
|
"Client",
|
|
)
|