Spaces:
Running
Running
Update tool.py
Browse files
tool.py
CHANGED
@@ -5,7 +5,7 @@ from huggingface_hub import InferenceClient
|
|
5 |
class TextToImageTool(Tool):
|
6 |
description = "This is a tool that creates an image according to a prompt, which is a text description."
|
7 |
name = "image_generator"
|
8 |
-
inputs = {"prompt": {"type": "
|
9 |
output_type = "image"
|
10 |
model_sdxl = "stabilityai/stable-diffusion-xl-base-1.0"
|
11 |
client = InferenceClient(model_sdxl)
|
|
|
5 |
class TextToImageTool(Tool):
|
6 |
description = "This is a tool that creates an image according to a prompt, which is a text description."
|
7 |
name = "image_generator"
|
8 |
+
inputs = {"prompt": {"type": "string", "description": "The image generator prompt. Don't hesitate to add details in the prompt to make the image look better, like 'high-res, photorealistic', etc."}}
|
9 |
output_type = "image"
|
10 |
model_sdxl = "stabilityai/stable-diffusion-xl-base-1.0"
|
11 |
client = InferenceClient(model_sdxl)
|