This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Agent 1 | |
description: |- | |
Dein persönlicher, hilfreicher Agent 1 ✨ | |
Ich bin hier, um dich bei deinen täglichen Routinen zu unterstützen und dafür zu sorgen, dass du bestens vorbereitet in den Tag starten kannst! 💪🌞 | |
🌦️ **Wetter:** Ich halte dich über das aktuelle Wetter auf dem Laufenden, damit du immer passend gekleidet bist. | |
📅 **Kalender:** Ich informiere dich über deine bevorstehenden Termine und wichtige Ereignisse, damit du nichts verpasst. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Agent 1 | |
description: |- | |
Your personal, helpful Agent 1 ✨ | |
I’m here to support you with your daily routines and make sure you’re perfectly prepared to start your day! 💪🌞 | |
🌦️ **Weather:** I’ll keep you updated on the current weather so you can dress appropriately. | |
📅 **Calendar:** I’ll inform you about your upcoming appointments and important events so you don’t miss anything. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Agent 1 | |
description: |- | |
Dein persönlicher, hilfreicher Agent 1 ✨ | |
Ich bin hier, um dich bei deinen täglichen Routinen zu unterstützen und dafür zu sorgen, dass du bestens vorbereitet in den Tag starten kannst! 💪🌞 | |
🌦️ **Wetter:** Ich halte dich über das aktuelle Wetter auf dem Laufenden, damit du immer passend gekleidet bist. | |
📅 **Kalender:** Ich informiere dich über deine bevorstehenden Termine und wichtige Ereignisse, damit du nichts verpasst. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Confirmable Notification | |
description: >- | |
A script that sends an actionable notification with a confirmation before | |
running the specified action. | |
domain: script | |
source_url: https://github.com/home-assistant/core/blob/master/homeassistant/components/script/blueprints/confirmable_notification.yaml | |
input: | |
notify_device: | |
name: Device to notify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, redirect, request, session, url_for | |
import requests | |
from authlib.integrations.flask_client import OAuth | |
import os | |
import sys | |
import threading | |
from PyQt5.QtWidgets import QApplication, QMainWindow, QFileDialog | |
from PyQt5.QtGui import QIcon | |
from PyQt5.QtCore import Qt |