We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376ad71 commit 2b4562bCopy full SHA for 2b4562b
apex/validator/generate_query.py
@@ -24,7 +24,7 @@ async def generate_query(llm: LLMBase, websearch: WebSearchBase) -> str:
24
search_website = random.choice(search_results)
25
search_content = search_website.content
26
except Exception as exc:
27
- logger.error(f"Error during web search: {exc}")
+ logger.debug(f"Error during web search: {exc}")
28
search_content = ""
29
query = QUERY_PROMPT_TEMPLATE.format(context=search_content)
30
query_response, _ = await llm.invoke([{"role": "user", "content": query}])
0 commit comments