├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── __init__.py ├── agent.py ├── downloads └── .gitkeep ├── entrypoint.sh ├── example.env ├── handlers ├── http.py └── telegram.py ├── main.py ├── prompts ├── agent_parser.py └── prompt.py ├── requirements.txt ├── sherlock └── sherlock.py ├── sherlock_tools ├── home_assistant.py ├── shell.py ├── spotify_search.py └── tools.py └── util ├── buf.py └── db.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/agent.py -------------------------------------------------------------------------------- /downloads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/example.env -------------------------------------------------------------------------------- /handlers/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/handlers/http.py -------------------------------------------------------------------------------- /handlers/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/handlers/telegram.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/main.py -------------------------------------------------------------------------------- /prompts/agent_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/prompts/agent_parser.py -------------------------------------------------------------------------------- /prompts/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/prompts/prompt.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/requirements.txt -------------------------------------------------------------------------------- /sherlock/sherlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/sherlock/sherlock.py -------------------------------------------------------------------------------- /sherlock_tools/home_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/sherlock_tools/home_assistant.py -------------------------------------------------------------------------------- /sherlock_tools/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/sherlock_tools/shell.py -------------------------------------------------------------------------------- /sherlock_tools/spotify_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/sherlock_tools/spotify_search.py -------------------------------------------------------------------------------- /sherlock_tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/sherlock_tools/tools.py -------------------------------------------------------------------------------- /util/buf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/util/buf.py -------------------------------------------------------------------------------- /util/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOLLGAD/sherlock/HEAD/util/db.py --------------------------------------------------------------------------------