Files

14 lines
313 B
Python
Raw Permalink Normal View History

"""OpenAI-compatible API bridge for Cursor Composer and other OpenAI API consumers."""
from fusionagi.api.openai_compat.translators import (
messages_to_prompt,
estimate_usage,
final_response_to_openai,
)
__all__ = [
"messages_to_prompt",
"estimate_usage",
"final_response_to_openai",
]