├── .devcontainer └── devcontainer.json ├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── assets ├── diana-screenshot.png ├── diana_main_1.gif ├── diana_main_2.gif └── research_crew.gif ├── config.py ├── firecrawl_integration.py ├── requirements.txt ├── threat_research.py ├── trained_agents_data.pkl └── ui.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/app.py -------------------------------------------------------------------------------- /assets/diana-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/assets/diana-screenshot.png -------------------------------------------------------------------------------- /assets/diana_main_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/assets/diana_main_1.gif -------------------------------------------------------------------------------- /assets/diana_main_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/assets/diana_main_2.gif -------------------------------------------------------------------------------- /assets/research_crew.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/assets/research_crew.gif -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/config.py -------------------------------------------------------------------------------- /firecrawl_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/firecrawl_integration.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/requirements.txt -------------------------------------------------------------------------------- /threat_research.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/threat_research.py -------------------------------------------------------------------------------- /trained_agents_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/trained_agents_data.pkl -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwillowtree/diana/HEAD/ui.py --------------------------------------------------------------------------------