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 *.wav
*.DS_Store *.DS_Store
*.log *.log
cookies.json
*.tmp *.tmp
*.safetensors *.safetensors
config.ini config.ini
test_agent.py
*.egg-info *.egg-info
.voices/
experimental/ experimental/
conversations/ conversations/
agentic_env/* agentic_env/*

View File

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