17 lines
559 B
Python
17 lines
559 B
Python
"""This module is adapt from https://github.com/zeno-ml/zeno-build"""
|
|
from .providers.hf_utils import generate_from_huggingface_completion
|
|
from .providers.openai_utils import (
|
|
generate_from_openai_chat_completion,
|
|
generate_from_openai_completion,
|
|
)
|
|
from .providers.anthropic_utils import generate_from_anthropic_completion
|
|
from .utils import call_llm
|
|
|
|
__all__ = [
|
|
"generate_from_openai_completion",
|
|
"generate_from_openai_chat_completion",
|
|
"generate_from_huggingface_completion",
|
|
"call_llm",
|
|
"generate_from_anthropic_completion"
|
|
]
|