modify
Browse files
app.py
CHANGED
|
@@ -81,7 +81,9 @@ iface = gr.Interface(
|
|
| 81 |
inputs=[user_input, max_tokens, temperature, top_p],
|
| 82 |
outputs="text",
|
| 83 |
title="UCode Agent",
|
| 84 |
-
description="Provide Base64-encoded JSON input with a list of messages and set the max tokens, temperature, and top_p to generate a chat completion."
|
|
|
|
|
|
|
| 85 |
)
|
| 86 |
|
| 87 |
# Launch the Gradio interface
|
|
|
|
| 81 |
inputs=[user_input, max_tokens, temperature, top_p],
|
| 82 |
outputs="text",
|
| 83 |
title="UCode Agent",
|
| 84 |
+
description="Provide Base64-encoded JSON input with a list of messages and set the max tokens, temperature, and top_p to generate a chat completion.",
|
| 85 |
+
server_name="0.0.0.0",
|
| 86 |
+
server_port=7000
|
| 87 |
)
|
| 88 |
|
| 89 |
# Launch the Gradio interface
|