upload meta files

This commit is contained in:
layerdiffusion
2024-08-18 00:12:53 -07:00
parent 0ccbac5389
commit 72ab92f83e
3 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
import spaces
import gradio as gr
def greet(name, intensity):
return "Hello, " + name + "!" * int(intensity)
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
if __name__ == "__main__":
demo.launch()

View File

@@ -0,0 +1,6 @@
{
"tag": "Tag",
"title": "title",
"repo_id": null,
"revision": null
}

View File

@@ -1,4 +1,5 @@
always_disabled_extensions = [
'sd-webui-controlnet',
'multidiffusion-upscaler-for-automatic1111'
'multidiffusion-upscaler-for-automatic1111',
'forge_space_example'
]