├── .idea ├── .gitignore ├── AI-Agent-Tutorial.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── advanced-agent ├── .env ├── .gitignore ├── .python-version ├── README.md ├── main.py ├── pyproject.toml ├── src │ ├── __init__.py │ ├── firecrawl.py │ ├── models.py │ ├── prompts.py │ └── workflow.py └── uv.lock └── simple-agent ├── .env ├── .gitignore ├── .python-version ├── README.md ├── main.py ├── pyproject.toml └── uv.lock /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/AI-Agent-Tutorial.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/.idea/AI-Agent-Tutorial.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /advanced-agent/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/advanced-agent/.env -------------------------------------------------------------------------------- /advanced-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/advanced-agent/.gitignore -------------------------------------------------------------------------------- /advanced-agent/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /advanced-agent/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /advanced-agent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/advanced-agent/main.py -------------------------------------------------------------------------------- /advanced-agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/advanced-agent/pyproject.toml -------------------------------------------------------------------------------- /advanced-agent/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /advanced-agent/src/firecrawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/advanced-agent/src/firecrawl.py -------------------------------------------------------------------------------- /advanced-agent/src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/advanced-agent/src/models.py -------------------------------------------------------------------------------- /advanced-agent/src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/advanced-agent/src/prompts.py -------------------------------------------------------------------------------- /advanced-agent/src/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/advanced-agent/src/workflow.py -------------------------------------------------------------------------------- /advanced-agent/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/advanced-agent/uv.lock -------------------------------------------------------------------------------- /simple-agent/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/simple-agent/.env -------------------------------------------------------------------------------- /simple-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/simple-agent/.gitignore -------------------------------------------------------------------------------- /simple-agent/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /simple-agent/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple-agent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/simple-agent/main.py -------------------------------------------------------------------------------- /simple-agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/simple-agent/pyproject.toml -------------------------------------------------------------------------------- /simple-agent/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Research-Agent/HEAD/simple-agent/uv.lock --------------------------------------------------------------------------------