19 lines
233 B
Python
19 lines
233 B
Python
import os
|
|
|
|
import gradio as gr
|
|
|
|
from embedchain import Pipeline as App
|
|
|
|
os.environ["OPENAI_API_KEY"] = "sk-xxx"
|
|
|
|
app = App()
|
|
|
|
|
|
def query(message, history):
|
|
return app.chat(message)
|
|
|
|
|
|
demo = gr.ChatInterface(query)
|
|
|
|
demo.launch()
|