AgentOccam/llms/__init__.py
2025-01-22 11:32:35 -08:00

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"
]