type on generate_llama
Browse files
app.py
CHANGED
@@ -124,7 +124,7 @@ def llama_generation(input_text: str,
|
|
124 |
|
125 |
|
126 |
# start the thread and wait for it to finish
|
127 |
-
thread = threading.Thread(target=
|
128 |
thread.start()
|
129 |
thread.join()
|
130 |
return streamer
|
|
|
124 |
|
125 |
|
126 |
# start the thread and wait for it to finish
|
127 |
+
thread = threading.Thread(target=generate_llama)
|
128 |
thread.start()
|
129 |
thread.join()
|
130 |
return streamer
|