Spaces:
Runtime error
Runtime error
File size: 185 Bytes
a10521d |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
from nomic.gpt4all import GPT4All
m = GPT4All()
m.open()
def chat(input):
return m.prompt(input)
gr.Interface(fn=chat, inputs="text", outputs="text").launch() |