Spaces:
Runtime error
Runtime error
File size: 630 Bytes
016174f 0d32d53 d32a13b d87df45 016174f f9aa63c 016174f 0d32d53 016174f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import argparse
import gradio as gr
from ui import chat
def main(args):
demo = gr.ChatInterface(
fn=chat,
examples=["hello", "how are you?", "What is Large Language Model?"],
title="Space of Gradio ➕ Text Generation Inference",
multimodal=False
)
demo.queue().launch(server_name="0.0.0.0", server_port=args.port)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="This is my Gradio app's description")
parser.add_argument("--port", type=int, default=7860, help="Port to expose Gradio app")
args = parser.parse_args()
main(args)
|