Spaces:
Sleeping
Sleeping
Create app/py
Browse files
app/py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
image_interface = gr.Interface(
|
2 |
+
fn=generate_cookie_run_image,
|
3 |
+
inputs="text", # Input: Text description of the character
|
4 |
+
outputs="image", # Output: Generated image
|
5 |
+
title="Cookie Run Character Generator",
|
6 |
+
description="Enter a description of a Cookie Run character, and the AI will create an image!",
|
7 |
+
)
|