Spaces:
No application file
No application file
import os | |
import gradio as gr | |
from embedchain import App | |
os.environ["OPENAI_API_KEY"] = "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" | |
app = App() | |
def query(message, history): | |
return app.chat(message) | |
demo = gr.ChatInterface(query) | |
demo.launch(share=True) | |