Spaces:
Sleeping
Sleeping
Update tool.py
Browse files
tool.py
CHANGED
|
@@ -3,11 +3,11 @@ from huggingface_hub import InferenceClient
|
|
| 3 |
|
| 4 |
|
| 5 |
class TextToImageTool(Tool):
|
| 6 |
-
description = "This
|
| 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 = "
|
| 11 |
client = InferenceClient(model_sdxl)
|
| 12 |
|
| 13 |
|
|
|
|
| 3 |
|
| 4 |
|
| 5 |
class TextToImageTool(Tool):
|
| 6 |
+
description = "This tool 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 = "black-forest-labs/FLUX.1-schnell"
|
| 11 |
client = InferenceClient(model_sdxl)
|
| 12 |
|
| 13 |
|