Spaces:
Running
Running
Update utils.py
Browse files
utils.py
CHANGED
@@ -69,8 +69,6 @@ def model_chat(query: Optional[str], history: Optional[History], system: str
|
|
69 |
|
70 |
|
71 |
if __name__ == '__main__':
|
72 |
-
print("hi")
|
73 |
output = model_chat("who are you?", [], "You are a helpful assistant.")
|
74 |
for o in output:
|
75 |
-
print(o)
|
76 |
-
print("done")
|
|
|
69 |
|
70 |
|
71 |
if __name__ == '__main__':
|
|
|
72 |
output = model_chat("who are you?", [], "You are a helpful assistant.")
|
73 |
for o in output:
|
74 |
+
print(o)
|
|