Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ from huggingface_hub import InferenceClient
|
|
3 |
|
4 |
client = InferenceClient(model="https://zgg3nzdpswxy4a-80.proxy.runpod.net")
|
5 |
|
6 |
-
def inference(message):
|
7 |
partial_message = ""
|
8 |
for token in client.text_generation(message, max_new_tokens=128, stream=True):
|
9 |
partial_message += token
|
|
|
3 |
|
4 |
client = InferenceClient(model="https://zgg3nzdpswxy4a-80.proxy.runpod.net")
|
5 |
|
6 |
+
def inference(message, history):
|
7 |
partial_message = ""
|
8 |
for token in client.text_generation(message, max_new_tokens=128, stream=True):
|
9 |
partial_message += token
|