14 lines
313 B
Python
14 lines
313 B
Python
"""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",
|
|
]
|