Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -251,7 +251,7 @@ def generate_and_process_map(prompt: str) -> str | None:
|
|
| 251 |
# Generate satellite image using FLUX
|
| 252 |
generator = torch.Generator(device=device).manual_seed(seed)
|
| 253 |
generated_image = flux_pipe(
|
| 254 |
-
prompt=prompt,
|
| 255 |
width=width,
|
| 256 |
height=height,
|
| 257 |
num_inference_steps=25,
|
|
@@ -297,7 +297,7 @@ with gr.Blocks() as demo:
|
|
| 297 |
with gr.Row():
|
| 298 |
prompt_input = gr.Text(
|
| 299 |
label="Enter your prompt",
|
| 300 |
-
placeholder="
|
| 301 |
)
|
| 302 |
|
| 303 |
with gr.Row():
|
|
|
|
| 251 |
# Generate satellite image using FLUX
|
| 252 |
generator = torch.Generator(device=device).manual_seed(seed)
|
| 253 |
generated_image = flux_pipe(
|
| 254 |
+
prompt=f"satellite view in the style of TOK, {prompt}",
|
| 255 |
width=width,
|
| 256 |
height=height,
|
| 257 |
num_inference_steps=25,
|
|
|
|
| 297 |
with gr.Row():
|
| 298 |
prompt_input = gr.Text(
|
| 299 |
label="Enter your prompt",
|
| 300 |
+
placeholder="classic american town"
|
| 301 |
)
|
| 302 |
|
| 303 |
with gr.Row():
|