Update app.py
Browse files
app.py
CHANGED
@@ -44,6 +44,7 @@ def mbti(x):
|
|
44 |
|
45 |
def chat(x):
|
46 |
x = f"{x}"
|
|
|
47 |
result = gradio_client.predict(
|
48 |
x,# str representing input in 'User input' Textbox component
|
49 |
0.92, # float, representing input in 'Top-p (nucleus sampling)' Slider component
|
|
|
44 |
|
45 |
def chat(x):
|
46 |
x = f"{x}"
|
47 |
+
print(x)
|
48 |
result = gradio_client.predict(
|
49 |
x,# str representing input in 'User input' Textbox component
|
50 |
0.92, # float, representing input in 'Top-p (nucleus sampling)' Slider component
|