Spaces:
Sleeping
Sleeping
phamngoctukts
commited on
Commit
•
9f4b706
1
Parent(s):
d9d7708
Update app.py
Browse files
app.py
CHANGED
@@ -271,7 +271,7 @@ with gr.Blocks(title=title) as demo:
|
|
271 |
gr.HTML(f"<div style='text-align: center;'><h1>{title}</h1><p>{description}</p></div>")
|
272 |
with gr.Row():
|
273 |
with gr.Column():
|
274 |
-
with gr.Column(visible=
|
275 |
with gr.Row():
|
276 |
llm_provider = gr.Dropdown(choices=["Hugging Face", "SambaNova"], label="Nguồn model", value="Hugging Face")
|
277 |
model = gr.Dropdown(label="Chọn Model", choices=["Qwen/Qwen2.5-72B-Instruct","meta-llama/Meta-Llama-3.1-70B-Instruct","mistralai/Mixtral-8x7B-Instruct-v0.1","mistralai/Mistral-7B-Instruct-v0.3"], value="Qwen/Qwen2.5-72B-Instruct")
|
@@ -279,7 +279,7 @@ with gr.Blocks(title=title) as demo:
|
|
279 |
prompt_type = gr.Dropdown(choices=prompt_types, label="Phong cách", value="Medium", interactive=True)
|
280 |
input_prompt = gr.Textbox(label="Nhập nội dung muốn vẽ",value="Một cô gái", type="text"),
|
281 |
generate_prompt = gr.Button("Tạo Prompt", variant="stop")
|
282 |
-
with gr.Column(visible=
|
283 |
input_text = gr.Textbox(label="Nhập nội dung trao đổi", type="text"),
|
284 |
submit = gr.Button("Áp dụng", variant="stop")
|
285 |
input_audio = gr.Audio(label="Nói cho tôi nghe nào", sources="microphone", type="numpy")
|
@@ -288,12 +288,12 @@ with gr.Blocks(title=title) as demo:
|
|
288 |
with gr.Column(visible=False) as image_visible:
|
289 |
ckpt = gr.Dropdown(label='Chọn mô hình',choices=['Chất lượng cao -> Tốc độ chậm', 'Chất lượng vừa -> Tốc độ vừa', 'Chất lượng kém -> Tốc độ nhanh'], value='Chất lượng kém -> Tốc độ nhanh', interactive=True, visible=True)
|
290 |
output_image = gr.Image(label="Hình ảnh sau xử lý", sources=None, type="pil",visible=True)
|
291 |
-
streng = gr.Slider(minimum=0.1, maximum=1, value=.8, step=0.05, label='Strength Lora')
|
292 |
-
guidance = gr.Slider(minimum=0.1, maximum=12, value=4, step=0.1, label='Sáng tạo')
|
293 |
with gr.Column(visible=True) as chatbot_visible:
|
294 |
chatbot = gr.Chatbot(label="Nội dung trò chuyện",type="messages")
|
295 |
-
|
296 |
-
state = gr.State(value=AppState(typing=True, painting=True))
|
297 |
startrecord = input_audio.start_recording(
|
298 |
start_recording_user,
|
299 |
[state],
|
|
|
271 |
gr.HTML(f"<div style='text-align: center;'><h1>{title}</h1><p>{description}</p></div>")
|
272 |
with gr.Row():
|
273 |
with gr.Column():
|
274 |
+
with gr.Column(visible=False) as prompt_visible:
|
275 |
with gr.Row():
|
276 |
llm_provider = gr.Dropdown(choices=["Hugging Face", "SambaNova"], label="Nguồn model", value="Hugging Face")
|
277 |
model = gr.Dropdown(label="Chọn Model", choices=["Qwen/Qwen2.5-72B-Instruct","meta-llama/Meta-Llama-3.1-70B-Instruct","mistralai/Mixtral-8x7B-Instruct-v0.1","mistralai/Mistral-7B-Instruct-v0.3"], value="Qwen/Qwen2.5-72B-Instruct")
|
|
|
279 |
prompt_type = gr.Dropdown(choices=prompt_types, label="Phong cách", value="Medium", interactive=True)
|
280 |
input_prompt = gr.Textbox(label="Nhập nội dung muốn vẽ",value="Một cô gái", type="text"),
|
281 |
generate_prompt = gr.Button("Tạo Prompt", variant="stop")
|
282 |
+
with gr.Column(visible=False) as typing_visible:
|
283 |
input_text = gr.Textbox(label="Nhập nội dung trao đổi", type="text"),
|
284 |
submit = gr.Button("Áp dụng", variant="stop")
|
285 |
input_audio = gr.Audio(label="Nói cho tôi nghe nào", sources="microphone", type="numpy")
|
|
|
288 |
with gr.Column(visible=False) as image_visible:
|
289 |
ckpt = gr.Dropdown(label='Chọn mô hình',choices=['Chất lượng cao -> Tốc độ chậm', 'Chất lượng vừa -> Tốc độ vừa', 'Chất lượng kém -> Tốc độ nhanh'], value='Chất lượng kém -> Tốc độ nhanh', interactive=True, visible=True)
|
290 |
output_image = gr.Image(label="Hình ảnh sau xử lý", sources=None, type="pil",visible=True)
|
291 |
+
#streng = gr.Slider(minimum=0.1, maximum=1, value=.8, step=0.05, label='Strength Lora')
|
292 |
+
#guidance = gr.Slider(minimum=0.1, maximum=12, value=4, step=0.1, label='Sáng tạo')
|
293 |
with gr.Column(visible=True) as chatbot_visible:
|
294 |
chatbot = gr.Chatbot(label="Nội dung trò chuyện",type="messages")
|
295 |
+
state = gr.State(value=AppState())
|
296 |
+
#state = gr.State(value=AppState(typing=True, painting=True))
|
297 |
startrecord = input_audio.start_recording(
|
298 |
start_recording_user,
|
299 |
[state],
|