Fiqa commited on
Commit
ae4c909
·
verified ·
1 Parent(s): 8657948

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -7
app.py CHANGED
@@ -16,11 +16,6 @@ from diffusers import DiffusionPipeline
16
 
17
 
18
 
19
- openai_api_key = os.getenv("OPENAI_API_KEY")
20
- from langchain_openai import OpenAI
21
- llm =OpenAI(temperature =0.8)
22
-
23
-
24
 
25
 
26
 
@@ -86,9 +81,9 @@ 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"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
 
 
16
 
17
 
18
 
 
 
 
 
 
19
 
20
 
21
 
 
81
  out = model.generate(**inputs)
82
  caption1 = processor.decode(out[0], skip_special_tokens=True)
83
 
84
+ 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}. "
85
 
86
+
87
  prompt +="The image should have a clean, minimalistic grey or white background, with realistic lighting and fine details, ensuring a sophisticated and polished appearance"
88
 
89