|
import gradio as gr |
|
|
|
gr.load("models/Qwen/Qwen2.5-Coder-32B-Instruct").launch() |
|
|
|
|
|
def chat_with_system_prompt(user_input): |
|
|
|
system_prompt = "You are a helpful AI specialized in code-related tasks." |
|
response = f"{system_prompt}\n\nUser: {user_input}\n\nAI:" |
|
|
|
|
|
|
|
return response |
|
|
|
|
|
with gr.Blocks() as demo: |
|
with gr.Row(): |
|
user_input = gr.Textbox(label="Your Input", placeholder="Ask something...") |
|
with gr.Row(): |
|
output = gr.Textbox(label="AI Response", lines=5, interactive=False) |
|
user_input.submit(chat_with_system_prompt, inputs=user_input, outputs=output) |
|
|
|
|
|
demo.launch() |
|
|