Update app.py
Browse files
app.py
CHANGED
@@ -71,6 +71,17 @@ iface = gr.Interface(
|
|
71 |
fn=gpt_inference,
|
72 |
inputs=[gr.components.Textbox(), gr.components.Dropdown(choices=["gpt-3.5-turbo", "gpt-4"], label="Model"), gr.components.Textbox(), gr.components.Textbox()],
|
73 |
outputs=gr.Image(),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
labels=["Base URL", "Model", "OpenAI Key","Prompt"]
|
75 |
|
76 |
)
|
|
|
71 |
fn=gpt_inference,
|
72 |
inputs=[gr.components.Textbox(), gr.components.Dropdown(choices=["gpt-3.5-turbo", "gpt-4"], label="Model"), gr.components.Textbox(), gr.components.Textbox()],
|
73 |
outputs=gr.Image(),
|
74 |
+
title="SolidUI AI-generated visualization platform",
|
75 |
+
description="""
|
76 |
+
AI-generated visualization prototyping and editing platform, support 2D, 3D models, combined with LLM(Large Language Model) for quick editing.
|
77 |
+
<br/><br/>
|
78 |
+
<a target="_blank" href="https://github.com/CloudOrc/SolidUI">
|
79 |
+
<img src="https://img.shields.io/badge/-github-blue?logo=github" />
|
80 |
+
</a>
|
81 |
+
<a target="_blank" href="https://huggingface.co/spaces/CloudOrc/SolidUI">
|
82 |
+
<img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face%20Spaces-blue" />
|
83 |
+
</a>
|
84 |
+
""",
|
85 |
labels=["Base URL", "Model", "OpenAI Key","Prompt"]
|
86 |
|
87 |
)
|