Add web search capabilities to any LLM with a single API
/search
/search_stream
{ "headers": { "Authorization": "Bearer llm_xxxxxxxxxxxxx" } }
pip install llmlayer
from llmlayer import LLMLayerClient client = LLMLayerClient( api_key="llm_xxxxxxxxxxxxx", ) response = client.search( query="What happened today?", model="openai/o3", search_type="news", max_tokens=1000, temperature=0.5, citations=True, location='us' )