Skip to content

Commit 2b4562b

Browse files
committed
Lower warning to debug
1 parent 376ad71 commit 2b4562b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apex/validator/generate_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async def generate_query(llm: LLMBase, websearch: WebSearchBase) -> str:
2424
search_website = random.choice(search_results)
2525
search_content = search_website.content
2626
except Exception as exc:
27-
logger.error(f"Error during web search: {exc}")
27+
logger.debug(f"Error during web search: {exc}")
2828
search_content = ""
2929
query = QUERY_PROMPT_TEMPLATE.format(context=search_content)
3030
query_response, _ = await llm.invoke([{"role": "user", "content": query}])

0 commit comments

Comments
 (0)