__init__.py 219 B

12345678910
  1. """
  2. LLM Providers
  3. 各个 LLM 提供商的适配器
  4. """
  5. from .gemini import create_gemini_llm_call
  6. from .openrouter import create_openrouter_llm_call
  7. __all__ = ["create_gemini_llm_call", "create_openrouter_llm_call"]