File size: 291 Bytes
e6bd9b6
884aaad
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
from inference_fine_tune import generate_response

with gr.ChatInterface(
    fn=generate_response,
    title="🧠 Chat with Fine-Tuned Model",
    description="Ask me anything using your custom fine-tuned LLM.",
    theme="soft",
) as demo:
    demo.launch(share=True)