We still don't have any documentation and things are in flux, but you can report your OpenAI API calls to OpenPipe now.
16 lines
660 B
Python
16 lines
660 B
Python
""" Contains all the data models used in inputs/outputs """
|
|
|
|
from .external_api_check_cache_json_body import ExternalApiCheckCacheJsonBody
|
|
from .external_api_check_cache_json_body_tags import ExternalApiCheckCacheJsonBodyTags
|
|
from .external_api_check_cache_response_200 import ExternalApiCheckCacheResponse200
|
|
from .external_api_report_json_body import ExternalApiReportJsonBody
|
|
from .external_api_report_json_body_tags import ExternalApiReportJsonBodyTags
|
|
|
|
__all__ = (
|
|
"ExternalApiCheckCacheJsonBody",
|
|
"ExternalApiCheckCacheJsonBodyTags",
|
|
"ExternalApiCheckCacheResponse200",
|
|
"ExternalApiReportJsonBody",
|
|
"ExternalApiReportJsonBodyTags",
|
|
)
|