File size: 269 Bytes
6f0b5f9
8807361
 
6f0b5f9
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import os
import gradio as gr

api_url = os.getenv("OPENCHAT_API_URL")

if not api_url:
    raise ValueError("Please set the environment variable OPENCHAT_API_URL.")

gr.Interface.load("models/OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5", api_url=api_url).launch()