Fiqa commited on
Commit
84bafee
·
verified ·
1 Parent(s): 257a388

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -86,8 +86,10 @@ def generate_caption_and_image(image):
86
  out = model.generate(**inputs)
87
  caption1 = processor.decode(out[0], skip_special_tokens=True)
88
 
89
- prompt = f"Write a prompt to generate clothes based on following info: 1. {caption1} 2. {caption2} 3. {selected_fabric} 4. {selected_pattern} 5. {selected_textile_design} return only prompt enclosed in quotes"
 
90
  prompt =llm(prompt)
 
91
 
92
 
93
 
 
86
  out = model.generate(**inputs)
87
  caption1 = processor.decode(out[0], skip_special_tokens=True)
88
 
89
+ prompt = f"Generate a clothing item using the following details: 1. {caption1} 2. {caption2} 3. Fabric: {selected_fabric} 4. Pattern: {selected_pattern} 5. Design Style: {selected_textile_design}. Please return only the generated prompt, enclosed in quotes."
90
+
91
  prompt =llm(prompt)
92
+ prompt +="The image should have a clean, minimalistic grey or white background, with realistic lighting and fine details, ensuring a sophisticated and polished appearance"
93
 
94
 
95