fix indentation
Browse files
app.py
CHANGED
@@ -75,7 +75,7 @@ def chat_with_model(messages):
|
|
75 |
pad_token_id=pad_id
|
76 |
)
|
77 |
|
78 |
-
|
79 |
thread.start()
|
80 |
|
81 |
output_text = ""
|
|
|
75 |
pad_token_id=pad_id
|
76 |
)
|
77 |
|
78 |
+
thread = threading.Thread(target=current_model.generate, kwargs=generation_kwargs)
|
79 |
thread.start()
|
80 |
|
81 |
output_text = ""
|