Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions agentstack/_tools/exa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def search_and_contents(question: str) -> str:
"""
Tool using Exa's Python SDK to run semantic search and return result highlights.
Search the web using Exa, the fastest and most accurate web search API for AI.
Args:
question: The search query or question to find information about
Returns:
Expand All @@ -17,7 +17,7 @@ def search_and_contents(question: str) -> str:
exa = Exa(api_key=API_KEY)

response = exa.search_and_contents(
question, type="neural", use_autoprompt=True, num_results=3, highlights=True
question, type="auto", use_autoprompt=True, num_results=3, highlights=True
)

parsedResult = ''.join(
Expand Down