switching to high quality piper tts and added label translations

This commit is contained in:
Matthias Hinrichs
2026-01-29 23:48:19 +01:00
commit d80c619df9
3934 changed files with 1451600 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import requests
url = "http://localhost:8000/analyze/pi"
image_path = "/Users/matthias/.gemini/antigravity/brain/8baa96e5-b978-4054-8e90-3451bd7a8b70/messy_room_with_mug_1769719323032.png"
with open(image_path, "rb") as f:
files = {"file": f}
response = requests.post(url, files=files)
print(f"Status Code: {response.status_code}")
print(f"Response: {response.json()}")