agent_actionRead backend/sensei_search/tools/search/bing.py
Tool result summary: 1 from __future__ import annotations 2 3 import asyncio 4 import os 5 from typing import Any, Callable, Coroutine, Dict, List, TypeVar 6 7 from aiohttp import ClientSession 8 9 from sensei_search.config import BING_API_KEY 10 from sensei_search.logger import logger 11 from sensei_search.tools.search.base import ( 12 Category, 13 GeneralResult, 14 ImageResult, 15 Input, 16 SearchTool, 17 TopResults, 18 VideoResult, 19
Agent context: I'll research the repository first to understand its architecture and how the agent fetches/uses web content.