├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── agents └── supervisor.py ├── agents_config.py ├── ai-app.png ├── app_config.yaml ├── config.py ├── google_credentials ├── credentials.example.json └── token.example.json ├── helper_scripts ├── README.md ├── get_token.py └── handle_gmail_labels.py ├── langgraph.json ├── main.py ├── requirements.txt ├── tools ├── calendar_agent_tools.py ├── contact_agent_tools.py ├── email_agent_tools.py ├── meal_planner_agent_tools.py ├── notion_agent_tools.py └── tools_registry.py └── utils ├── google_auth.py ├── react_agent_factory.py └── utils.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/README.md -------------------------------------------------------------------------------- /agents/supervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/agents/supervisor.py -------------------------------------------------------------------------------- /agents_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/agents_config.py -------------------------------------------------------------------------------- /ai-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/ai-app.png -------------------------------------------------------------------------------- /app_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/app_config.yaml -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/config.py -------------------------------------------------------------------------------- /google_credentials/credentials.example.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /google_credentials/token.example.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /helper_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/helper_scripts/README.md -------------------------------------------------------------------------------- /helper_scripts/get_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/helper_scripts/get_token.py -------------------------------------------------------------------------------- /helper_scripts/handle_gmail_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/helper_scripts/handle_gmail_labels.py -------------------------------------------------------------------------------- /langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/langgraph.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/calendar_agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/tools/calendar_agent_tools.py -------------------------------------------------------------------------------- /tools/contact_agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/tools/contact_agent_tools.py -------------------------------------------------------------------------------- /tools/email_agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/tools/email_agent_tools.py -------------------------------------------------------------------------------- /tools/meal_planner_agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/tools/meal_planner_agent_tools.py -------------------------------------------------------------------------------- /tools/notion_agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/tools/notion_agent_tools.py -------------------------------------------------------------------------------- /tools/tools_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/tools/tools_registry.py -------------------------------------------------------------------------------- /utils/google_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/utils/google_auth.py -------------------------------------------------------------------------------- /utils/react_agent_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/utils/react_agent_factory.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjichat/langgraph-home-assistant/HEAD/utils/utils.py --------------------------------------------------------------------------------