sync - still working on the TUI

This commit is contained in:
2025-09-27 13:24:20 -07:00
parent 72b5cc3aaa
commit ec02b923af
25 changed files with 1091 additions and 367 deletions

View File

@@ -162,7 +162,7 @@ class AIService:
timeout=30.0
)
response.raise_for_status()
data = response.json()
data = await response.json()
return data["choices"][0]["message"]["content"]
except Exception as e: