├── .github ├── .DS_Store └── workflows │ └── build_and_push.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── dist ├── dria_searching_agent-0.1.0-py3-none-any.whl └── dria_searching_agent-0.1.0.tar.gz ├── docker-compose.yml ├── poetry.lock ├── pyproject.toml ├── src └── dria_searching_agent │ ├── __init__.py │ ├── config │ ├── __init__.py │ ├── agents.json │ └── config.py │ ├── db │ ├── __init__.py │ └── storage.py │ ├── main.py │ ├── server.py │ ├── tasks.py │ └── tools │ ├── __init__.py │ ├── browser_tools.py │ ├── fin_tools.py │ ├── search_tools.py │ └── vision_tools.py └── tests └── config.json /.github/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/.github/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/build_and_push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/.github/workflows/build_and_push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | /.idea/.gitignore 3 | /playground.py 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/README.md -------------------------------------------------------------------------------- /dist/dria_searching_agent-0.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/dist/dria_searching_agent-0.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/dria_searching_agent-0.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/dist/dria_searching_agent-0.1.0.tar.gz -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/dria_searching_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dria_searching_agent/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dria_searching_agent/config/agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/config/agents.json -------------------------------------------------------------------------------- /src/dria_searching_agent/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/config/config.py -------------------------------------------------------------------------------- /src/dria_searching_agent/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/db/__init__.py -------------------------------------------------------------------------------- /src/dria_searching_agent/db/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/db/storage.py -------------------------------------------------------------------------------- /src/dria_searching_agent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/main.py -------------------------------------------------------------------------------- /src/dria_searching_agent/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/server.py -------------------------------------------------------------------------------- /src/dria_searching_agent/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/tasks.py -------------------------------------------------------------------------------- /src/dria_searching_agent/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/tools/__init__.py -------------------------------------------------------------------------------- /src/dria_searching_agent/tools/browser_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/tools/browser_tools.py -------------------------------------------------------------------------------- /src/dria_searching_agent/tools/fin_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/tools/fin_tools.py -------------------------------------------------------------------------------- /src/dria_searching_agent/tools/search_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/tools/search_tools.py -------------------------------------------------------------------------------- /src/dria_searching_agent/tools/vision_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstbatchxyz/dria-searching-agent/HEAD/src/dria_searching_agent/tools/vision_tools.py -------------------------------------------------------------------------------- /tests/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "Scrape": "https://perinim.github.io/projects/" 3 | } --------------------------------------------------------------------------------