Andre commited on
Commit
06c6f27
·
1 Parent(s): 1b7caf1

“Update”

Browse files
Files changed (1) hide show
  1. src/img_gen.py +3 -4
src/img_gen.py CHANGED
@@ -48,13 +48,12 @@ def generate_image(prompt_alias, team, model_alias, custom_prompt, height=360, w
48
 
49
  # Initialize the InferenceClient
50
  try:
51
- print(f"Token before initializing InferenceClient: {api_token}")
52
  client = InferenceClient(model_name, token=api_token)
53
- except Exception as e:
54
- return None, f"ERROR: Failed to initialize InferenceClient. Details: {e}"
55
 
56
  # Generate the image
57
- try:
58
  image = client.text_to_image(
59
  prompt,
60
  guidance_scale=guidance_scale,
 
48
 
49
  # Initialize the InferenceClient
50
  try:
 
51
  client = InferenceClient(model_name, token=api_token)
52
+ #except Exception as e:
53
+ # return None, f"ERROR: Failed to initialize InferenceClient. Details: {e}"
54
 
55
  # Generate the image
56
+ #try:
57
  image = client.text_to_image(
58
  prompt,
59
  guidance_scale=guidance_scale,