Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -111,7 +111,7 @@ def interact(user_input, history, interaction_count):
|
|
111 |
|
112 |
return "", formatted_history, history, interaction_count
|
113 |
except Exception as e:
|
114 |
-
if torch.cuda.
|
115 |
torch.cuda.empty_cache()
|
116 |
print(f"Error during interaction: {e}")
|
117 |
raise gr.Error(f"An error occurred during interaction: {str(e)}")
|
|
|
111 |
|
112 |
return "", formatted_history, history, interaction_count
|
113 |
except Exception as e:
|
114 |
+
if torch.cuda.is_available():
|
115 |
torch.cuda.empty_cache()
|
116 |
print(f"Error during interaction: {e}")
|
117 |
raise gr.Error(f"An error occurred during interaction: {str(e)}")
|