Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
CognitiveScience
/
CogSphere
like
0
Runtime error
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
a985fd1
CogSphere
/
app.py
CognitiveScience
Update app.py
a985fd1
over 1 year ago
raw
Copy download link
history
blame
Safe
Wrap lines
190 Bytes
import
gradio
as
gr
from
ccogsphere
import
ccs
results=
""
def
cs
(
inp
):
result=ccs(inp,results)
return
result
iface = gr.Interface(fn=cs, inputs=
"text"
, outputs=
"text"
)
iface.launch()