Spaces:
Runtime error
Runtime error
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() |