Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ from huggingface_hub import InferenceClient
|
|
4 |
client = InferenceClient(model="https://zgg3nzdpswxy4a-80.proxy.runpod.net")
|
5 |
|
6 |
def inference(message, history):
|
7 |
-
return client.text_generation(message, max_new_tokens=256, stream=False,
|
8 |
temperature=0.5, do_sample=True, top_p=0.9)
|
9 |
# partial_message = ""
|
10 |
# for token in client.text_generation(message, max_new_tokens=256, stream=False,
|
|
|
4 |
client = InferenceClient(model="https://zgg3nzdpswxy4a-80.proxy.runpod.net")
|
5 |
|
6 |
def inference(message, history):
|
7 |
+
return client.text_generation(prompt=message, details=True, max_new_tokens=256, stream=False,
|
8 |
temperature=0.5, do_sample=True, top_p=0.9)
|
9 |
# partial_message = ""
|
10 |
# for token in client.text_generation(message, max_new_tokens=256, stream=False,
|