Small change
Build, push image, and notify Watchtower / build-image (push) Successful in 37s
Build, push image, and notify Watchtower / notify (push) Successful in 1m40s

This commit is contained in:
2026-07-23 16:12:43 +02:00
parent 7eda438d45
commit 8a08b169fd
2 changed files with 5 additions and 3 deletions
+4
View File
@@ -0,0 +1,4 @@
in `/cloud` folder :
`flask run --debug`
+1 -3
View File
@@ -5,8 +5,6 @@ from flask import Flask, request, jsonify
from pymongo import MongoClient
from tools.aichat import generate
from shared import deviceTypes
app = Flask(__name__)
# ---------------------------------------------------------
@@ -30,7 +28,7 @@ os.makedirs(CAMERA_IMAGE_DIR, exist_ok=True)
@app.route("/")
def hello_world():
gen = generate(prompt="Say \"Hello, World!\"")
gen = generate(prompt="Say Hello, to the user !")
print(gen)
return f"<p>{gen}</p>"