refactor: rm debug print

This commit is contained in:
martin legrand 2025-04-12 14:59:45 +02:00
parent dfda888e57
commit 164b741d57
2 changed files with 3 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,10 +1,13 @@
*.wav
*.DS_Store
*.log
cookies.json
*.tmp
*.safetensors
config.ini
test_agent.py
*.egg-info
.voices/
experimental/
conversations/
agentic_env/*

View File

@ -131,7 +131,6 @@ class Provider:
while not is_complete:
try:
response = requests.get(f"http://{self.server_ip}/get_updated_sentence")
print(response)
if "error" in response.json():
pretty_print(response.json()["error"], color="failure")
break