Files
lijiaoqiao/llm-gateway-competitors/litellm-wheel-src/litellm/search/__init__.py

8 lines
224 B
Python
Raw Normal View History

"""
LiteLLM Search API module.
"""
from litellm.search.cost_calculator import search_provider_cost_per_query
from litellm.search.main import asearch, search
__all__ = ["search", "asearch", "search_provider_cost_per_query"]