m-ric HF staff commited on
Commit
27c6979
·
verified ·
1 Parent(s): 9925031

Update tool.py

Browse files
Files changed (1) hide show
  1. tool.py +2 -2
tool.py CHANGED
@@ -3,11 +3,11 @@ from huggingface_hub import InferenceClient
3
 
4
 
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)
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