CoolFace
Apppublic

a-holoviz-dev/lumen-ai

sourceHugging Facebsd-3-clauseupdated 11mo agoView on Hugging Face
1likes
app.py16 linesDownload Raw Back to root
1import lumen.ai as lmai2import panel as pn3 4pn.extension(5    "tabulator",6    "codeeditor",7    "vega",8    "filedropper",9    inline=False,10    notifications=True,11    reconnect=True12)13 14llm = lmai.llm.OpenAI()15assistant = lmai.ExplorerUI(llm=llm, data="olympic_hosts.csv")16assistant.servable("Lumen.ai")