├── .env.test ├── .gitignore ├── LICENSE ├── README.md ├── agent.py ├── agent_prompt.txt ├── browser.py ├── examples ├── .DS_Store ├── events-in-bangalore.json ├── events-in-bangalore.webm └── repo-issues.mp4 ├── index.py ├── requirements.txt └── server.py /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/.env.test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | agent 2 | *.env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/agent.py -------------------------------------------------------------------------------- /agent_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/agent_prompt.txt -------------------------------------------------------------------------------- /browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/browser.py -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/events-in-bangalore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/examples/events-in-bangalore.json -------------------------------------------------------------------------------- /examples/events-in-bangalore.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/examples/events-in-bangalore.webm -------------------------------------------------------------------------------- /examples/repo-issues.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/examples/repo-issues.mp4 -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/index.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addy999/onequery/HEAD/server.py --------------------------------------------------------------------------------