Update app.py
Browse files
app.py
CHANGED
|
@@ -1,575 +1,186 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
from google import genai
|
| 5 |
from google.genai import types
|
| 6 |
-
import
|
| 7 |
-
import
|
| 8 |
-
import
|
| 9 |
-
import
|
| 10 |
-
import
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 18 |
-
# 1. CONFIGURATION
|
| 19 |
-
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 20 |
-
|
| 21 |
-
# 1.1 Load your Google API key from environment or Streamlit secrets
|
| 22 |
-
try:
|
| 23 |
-
API_KEY = st.secrets["GOOGLE_API_KEY"]
|
| 24 |
-
except (AttributeError, KeyError):
|
| 25 |
-
API_KEY = os.environ.get("GOOGLE_API_KEY")
|
| 26 |
-
|
| 27 |
-
if not API_KEY:
|
| 28 |
-
st.error("Please set GOOGLE_API_KEY in your environment variables or Streamlit secrets")
|
| 29 |
-
st.stop()
|
| 30 |
-
|
| 31 |
-
# 1.2 Initialize the GenAI client
|
| 32 |
-
try:
|
| 33 |
-
client = genai.Client(api_key=API_KEY)
|
| 34 |
-
except Exception as e:
|
| 35 |
-
st.error(f"Failed to initialize GenAI Client: {e}")
|
| 36 |
-
st.stop()
|
| 37 |
-
|
| 38 |
-
# 1.3 Constants
|
| 39 |
-
CATEGORY_MODEL = "gemini-2.0-flash-exp"
|
| 40 |
-
GENERATION_MODEL = "gemini-2.0-flash-exp-image-generation"
|
| 41 |
TTS_MODEL = "gemini-2.5-flash-preview-tts"
|
| 42 |
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
"filetype": uploaded_file.type,
|
| 60 |
-
"filesize": uploaded_file.size
|
| 61 |
-
}
|
| 62 |
-
|
| 63 |
-
# Validate file size (limit to 5MB for better performance in HF Spaces)
|
| 64 |
-
max_size = 5 * 1024 * 1024 # 5MB
|
| 65 |
-
if uploaded_file.size > max_size:
|
| 66 |
-
return None, f"File size ({uploaded_file.size / 1024 / 1024:.1f}MB) exceeds limit (5MB)"
|
| 67 |
-
|
| 68 |
-
# Validate file type more strictly
|
| 69 |
-
allowed_types = ['image/jpeg', 'image/jpg', 'image/png', 'image/bmp', 'image/gif']
|
| 70 |
-
if uploaded_file.type not in allowed_types:
|
| 71 |
-
return None, f"Unsupported file type: {uploaded_file.type}. Allowed: JPG, PNG, BMP, GIF"
|
| 72 |
-
|
| 73 |
-
# Read file bytes with error handling
|
| 74 |
-
try:
|
| 75 |
-
file_bytes = uploaded_file.read()
|
| 76 |
-
if len(file_bytes) == 0:
|
| 77 |
-
return None, "File appears to be empty"
|
| 78 |
-
except Exception as read_error:
|
| 79 |
-
return None, f"Error reading file: {str(read_error)}"
|
| 80 |
-
|
| 81 |
-
# Reset file pointer for PIL
|
| 82 |
-
uploaded_file.seek(0)
|
| 83 |
-
|
| 84 |
-
# Try to open and validate the image
|
| 85 |
-
try:
|
| 86 |
-
image = Image.open(BytesIO(file_bytes))
|
| 87 |
-
|
| 88 |
-
# Verify image is valid
|
| 89 |
-
image.verify()
|
| 90 |
-
|
| 91 |
-
# Reopen for actual use (verify() closes the image)
|
| 92 |
-
image = Image.open(BytesIO(file_bytes))
|
| 93 |
-
|
| 94 |
-
# Convert to RGB if necessary (handles RGBA, P mode, etc.)
|
| 95 |
-
if image.mode not in ('RGB', 'L'):
|
| 96 |
-
image = image.convert('RGB')
|
| 97 |
-
|
| 98 |
-
# Resize if too large (helps with memory in HF Spaces)
|
| 99 |
-
max_dimension = 1024
|
| 100 |
-
if max(image.size) > max_dimension:
|
| 101 |
-
image.thumbnail((max_dimension, max_dimension), Image.Resampling.LANCZOS)
|
| 102 |
-
|
| 103 |
-
return image, "Success"
|
| 104 |
-
|
| 105 |
-
except Exception as img_error:
|
| 106 |
-
return None, f"Invalid or corrupted image: {str(img_error)}"
|
| 107 |
-
|
| 108 |
-
except Exception as e:
|
| 109 |
-
return None, f"Unexpected error processing file: {str(e)}"
|
| 110 |
-
|
| 111 |
-
# 1.6 TTS Generation Function with better error handling
|
| 112 |
-
@st.cache_data
|
| 113 |
-
def generate_tts_audio(_client, text_to_speak):
|
| 114 |
-
"""Generates audio from text using Gemini TTS and returns the audio data and its mime type."""
|
| 115 |
try:
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
text_to_speak = text_to_speak[:500] + "..."
|
| 119 |
-
|
| 120 |
-
response = _client.models.generate_content(
|
| 121 |
-
model=TTS_MODEL,
|
| 122 |
-
contents=f"Say clearly: {text_to_speak}",
|
| 123 |
config=types.GenerateContentConfig(
|
| 124 |
response_modalities=["AUDIO"],
|
| 125 |
speech_config=types.SpeechConfig(
|
| 126 |
voice_config=types.VoiceConfig(
|
| 127 |
-
prebuilt_voice_config=types.PrebuiltVoiceConfig(
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
"
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 185 |
try:
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
-
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
|
| 219 |
-
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
|
| 223 |
-
|
| 224 |
-
|
| 225 |
-
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
| 233 |
-
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
|
| 237 |
-
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
|
| 241 |
-
|
| 242 |
-
|
| 243 |
-
|
| 244 |
-
st.
|
| 245 |
-
|
| 246 |
-
|
| 247 |
-
|
| 248 |
-
|
| 249 |
-
|
| 250 |
-
|
| 251 |
-
|
| 252 |
-
st.
|
| 253 |
-
|
| 254 |
-
|
| 255 |
-
|
| 256 |
-
|
| 257 |
-
|
| 258 |
-
|
| 259 |
-
|
| 260 |
-
context = f"The user has approved the plan for '{st.session_state.app_state['project_title']}'."
|
| 261 |
-
if selected_option:
|
| 262 |
-
context = f"The user chose the upcycling project: '{selected_option}'."
|
| 263 |
-
|
| 264 |
-
detailed_prompt = f"""
|
| 265 |
-
You are a DIY expert. The user wants to proceed with the project titled "{st.session_state.app_state['project_title']}".
|
| 266 |
-
{context}
|
| 267 |
-
Provide a detailed guide. For each step, you MUST provide a simple, clear illustrative image.
|
| 268 |
-
Format your response EXACTLY like this:
|
| 269 |
-
|
| 270 |
-
TOOLS AND MATERIALS:
|
| 271 |
-
- Tool A
|
| 272 |
-
- Material B
|
| 273 |
-
|
| 274 |
-
STEPS(Maximum 7 steps):
|
| 275 |
-
1. First step instructions.
|
| 276 |
-
2. Second step instructions...
|
| 277 |
-
"""
|
| 278 |
-
with st.spinner("π οΈ Generating your detailed guide with illustrations..."):
|
| 279 |
-
try:
|
| 280 |
-
chat = client.chats.create(
|
| 281 |
-
model=GENERATION_MODEL,
|
| 282 |
-
config=types.GenerateContentConfig(response_modalities=["Text", "Image"])
|
| 283 |
-
)
|
| 284 |
-
full_resp = chat.send_message([detailed_prompt, image])
|
| 285 |
-
gen_parts = full_resp.candidates[0].content.parts
|
| 286 |
-
|
| 287 |
-
combined_text = ""
|
| 288 |
-
inline_images = []
|
| 289 |
-
for part in gen_parts:
|
| 290 |
-
if part.text is not None:
|
| 291 |
-
combined_text += part.text + "\n"
|
| 292 |
-
if part.inline_data is not None:
|
| 293 |
-
img = Image.open(BytesIO(part.inline_data.data))
|
| 294 |
-
inline_images.append(img)
|
| 295 |
-
combined_text = combined_text.strip()
|
| 296 |
-
|
| 297 |
-
tools_section = re.search(r"TOOLS AND MATERIALS:\s*(.*?)\s*STEPS:", combined_text, re.DOTALL).group(1).strip()
|
| 298 |
-
steps_section = re.search(r"STEPS:\s*(.*)", combined_text, re.DOTALL).group(1).strip()
|
| 299 |
-
parsed_steps = parse_numbered_steps(steps_section)
|
| 300 |
-
|
| 301 |
-
st.session_state.app_state['tools_list'] = [line.strip("- ").strip() for line in tools_section.split('\n') if line.strip()]
|
| 302 |
-
st.session_state.app_state['steps'] = parsed_steps
|
| 303 |
-
st.session_state.app_state['images'] = {idx: inline_images[idx - 1] for idx, _ in parsed_steps if idx - 1 < len(inline_images)}
|
| 304 |
-
|
| 305 |
-
for idx, step_text in parsed_steps:
|
| 306 |
-
st.session_state.app_state['done_flags'][idx] = False
|
| 307 |
-
st.session_state.app_state['notes'][idx] = ""
|
| 308 |
-
timer_match = re.search(r"wait\s+for\s+(\d+)\s+(seconds?|minutes?)", step_text.lower())
|
| 309 |
-
if timer_match:
|
| 310 |
-
val, unit = int(timer_match.group(1)), timer_match.group(2)
|
| 311 |
-
st.session_state.app_state['timers'][idx] = val * (60 if "minute" in unit else 1)
|
| 312 |
-
else:
|
| 313 |
-
st.session_state.app_state['timers'][idx] = 0
|
| 314 |
-
except Exception as e:
|
| 315 |
-
st.error(f"Failed to generate or parse the illustrated guide: {str(e)}")
|
| 316 |
-
|
| 317 |
-
def render_sidebar_navigation():
|
| 318 |
-
st.sidebar.markdown("## Steps Navigation")
|
| 319 |
-
steps = st.session_state.app_state['steps']
|
| 320 |
-
if not steps: return
|
| 321 |
-
total_steps = len(steps)
|
| 322 |
-
completed = sum(1 for done in st.session_state.app_state['done_flags'].values() if done)
|
| 323 |
-
st.sidebar.progress(completed / total_steps if total_steps > 0 else 0)
|
| 324 |
-
st.sidebar.write(f"Progress: {completed}/{total_steps} steps")
|
| 325 |
-
for (idx, _) in steps:
|
| 326 |
-
is_done = st.session_state.app_state['done_flags'].get(idx, False)
|
| 327 |
-
label = f"{'β' if is_done else 'Β·'} Step {idx}"
|
| 328 |
-
if st.sidebar.button(label, key=f"nav_{idx}"):
|
| 329 |
-
st.session_state.app_state['current_step'] = idx
|
| 330 |
-
st.rerun()
|
| 331 |
-
|
| 332 |
-
def render_tools_list():
|
| 333 |
-
if st.session_state.app_state['tools_list']:
|
| 334 |
-
with st.expander("π§ Required Tools & Materials", expanded=True):
|
| 335 |
-
for item in st.session_state.app_state['tools_list']:
|
| 336 |
-
st.markdown(f"- {item}")
|
| 337 |
-
|
| 338 |
-
def render_step(idx, text):
|
| 339 |
-
total = len(st.session_state.app_state['steps'])
|
| 340 |
-
st.markdown(f"### Step {idx} of {total}")
|
| 341 |
-
st.write(text)
|
| 342 |
-
|
| 343 |
-
# FINALIZED TTS Integration
|
| 344 |
-
if st.button(f"π Narrate Step {idx}", key=f"tts_{idx}"):
|
| 345 |
-
with st.spinner("Generating narration..."):
|
| 346 |
-
audio_data, mime_type = generate_tts_audio(client, text)
|
| 347 |
-
|
| 348 |
-
if audio_data:
|
| 349 |
-
# Check if the audio is raw PCM data
|
| 350 |
-
if 'L16' in mime_type or 'pcm' in mime_type:
|
| 351 |
-
st.info("Raw audio format detected. Converting to WAV for playback...")
|
| 352 |
-
# Convert the raw PCM data to a playable WAV format
|
| 353 |
-
wav_data = _convert_pcm_to_wav(audio_data)
|
| 354 |
-
st.audio(wav_data, format="audio/wav")
|
| 355 |
-
else:
|
| 356 |
-
# If it's already in a standard format (like mp3, ogg), play it directly
|
| 357 |
-
st.audio(audio_data, format=mime_type)
|
| 358 |
-
else:
|
| 359 |
-
st.error("Could not generate audio.")
|
| 360 |
-
|
| 361 |
-
if idx in st.session_state.app_state['images']:
|
| 362 |
-
st.image(
|
| 363 |
-
st.session_state.app_state['images'][idx],
|
| 364 |
-
caption=f"Illustration for step {idx}",
|
| 365 |
-
use_container_width=True
|
| 366 |
-
)
|
| 367 |
-
|
| 368 |
-
done = st.checkbox("β
Mark this step as completed", value=st.session_state.app_state['done_flags'].get(idx, False), key=f"done_{idx}")
|
| 369 |
-
st.session_state.app_state['done_flags'][idx] = done
|
| 370 |
-
notes = st.text_area("π Your notes for this step:", value=st.session_state.app_state['notes'].get(idx, ""), height=100, key=f"notes_{idx}")
|
| 371 |
-
st.session_state.app_state['notes'][idx] = notes
|
| 372 |
-
st.markdown("---")
|
| 373 |
-
col1, col2, col3 = st.columns([1, 2, 1])
|
| 374 |
-
if idx > 1 and col1.button("β¬
οΈ Previous", key=f"prev_{idx}"):
|
| 375 |
-
st.session_state.app_state['current_step'] -= 1
|
| 376 |
-
st.rerun()
|
| 377 |
-
if idx < total and col3.button("Next β‘οΈ", key=f"next_{idx}"):
|
| 378 |
-
st.session_state.app_state['current_step'] += 1
|
| 379 |
-
st.rerun()
|
| 380 |
-
|
| 381 |
-
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 382 |
-
# 4. APP LAYOUT - FIXED UPLOAD SECTION
|
| 383 |
-
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 384 |
-
|
| 385 |
-
st.set_page_config(page_title="NeoFix DIY Assistant", page_icon="π οΈ", layout="wide")
|
| 386 |
-
st.title("π οΈ NeoFix AI-Powered DIY Assistant")
|
| 387 |
-
|
| 388 |
-
with st.expander("βΉοΈ How it works", expanded=False):
|
| 389 |
-
st.write("""
|
| 390 |
-
1. **Upload a photo** of your project or the item you want to fix or build (appliance, car part, plant, craft project).
|
| 391 |
-
2. **(Optional) Describe your goal** for more accurate results.
|
| 392 |
-
3. **Review the Plan.** The AI will propose a plan. If you didn't provide a description, you'll be asked to approve it.
|
| 393 |
-
4. **Get Your Guide** with tools and illustrated step-by-step instructions.
|
| 394 |
-
5. **Follow the Steps** using the interactive checklist.
|
| 395 |
-
""")
|
| 396 |
-
|
| 397 |
-
if not st.session_state.app_state['prompt_sent']:
|
| 398 |
-
st.markdown("---")
|
| 399 |
-
col1, col2 = st.columns([3, 1])
|
| 400 |
-
|
| 401 |
-
with col1:
|
| 402 |
-
st.markdown("### π· Upload Project Image")
|
| 403 |
-
|
| 404 |
-
# Show upload status
|
| 405 |
-
if st.session_state.app_state.get('upload_error'):
|
| 406 |
-
st.error(f"Upload Error: {st.session_state.app_state['upload_error']}")
|
| 407 |
-
|
| 408 |
-
if st.session_state.app_state.get('upload_attempts', 0) > 0:
|
| 409 |
-
st.info(f"Upload attempts: {st.session_state.app_state['upload_attempts']}")
|
| 410 |
-
|
| 411 |
-
# IMPROVED File uploader with unique key to force refresh
|
| 412 |
-
upload_key = f"file_upload_{st.session_state.app_state.get('upload_attempts', 0)}"
|
| 413 |
-
uploaded_image = st.file_uploader(
|
| 414 |
-
"Choose an image file",
|
| 415 |
-
type=["jpg", "jpeg", "png", "bmp", "gif"],
|
| 416 |
-
accept_multiple_files=False,
|
| 417 |
-
key=upload_key,
|
| 418 |
-
help="Supported: JPG, PNG, BMP, GIF (max 5MB)"
|
| 419 |
-
)
|
| 420 |
-
|
| 421 |
-
# Process uploaded image immediately
|
| 422 |
-
processed_image = None
|
| 423 |
-
upload_status = ""
|
| 424 |
-
|
| 425 |
-
if uploaded_image is not None:
|
| 426 |
-
# Check if this is a new file upload
|
| 427 |
-
current_file_id = f"{uploaded_image.name}_{uploaded_image.size}"
|
| 428 |
-
if current_file_id != st.session_state.app_state.get('last_uploaded_file'):
|
| 429 |
-
st.session_state.app_state['last_uploaded_file'] = current_file_id
|
| 430 |
-
|
| 431 |
-
with st.spinner("Processing uploaded image..."):
|
| 432 |
-
processed_image, upload_status = handle_uploaded_file(uploaded_image)
|
| 433 |
-
|
| 434 |
-
if processed_image is not None:
|
| 435 |
-
st.session_state.app_state['upload_error'] = None
|
| 436 |
-
st.success("β
Image uploaded and processed successfully!")
|
| 437 |
-
st.image(processed_image, caption="Uploaded image preview", use_container_width=True)
|
| 438 |
-
else:
|
| 439 |
-
st.session_state.app_state['upload_error'] = upload_status
|
| 440 |
-
st.session_state.app_state['upload_attempts'] += 1
|
| 441 |
-
st.error(f"β {upload_status}")
|
| 442 |
-
else:
|
| 443 |
-
# File already processed, show cached result
|
| 444 |
-
if st.session_state.app_state.get('upload_error') is None:
|
| 445 |
-
processed_image, _ = handle_uploaded_file(uploaded_image)
|
| 446 |
-
if processed_image:
|
| 447 |
-
st.success("β
Image ready for analysis!")
|
| 448 |
-
st.image(processed_image, caption="Uploaded image preview", use_container_width=True)
|
| 449 |
-
|
| 450 |
-
# Alternative camera input
|
| 451 |
-
st.markdown("##### Alternative: Take a photo")
|
| 452 |
-
camera_image = st.camera_input("Take a picture", key=f"camera_{st.session_state.app_state.get('upload_attempts', 0)}")
|
| 453 |
-
if camera_image and not uploaded_image:
|
| 454 |
-
with st.spinner("Processing camera image..."):
|
| 455 |
-
processed_image, upload_status = handle_uploaded_file(camera_image)
|
| 456 |
-
if processed_image is not None:
|
| 457 |
-
st.session_state.app_state['upload_error'] = None
|
| 458 |
-
st.success("β
Photo captured and processed!")
|
| 459 |
-
st.image(processed_image, caption="Camera photo preview", use_container_width=True)
|
| 460 |
-
else:
|
| 461 |
-
st.error(f"β {upload_status}")
|
| 462 |
-
|
| 463 |
-
context_text = st.text_area(
|
| 464 |
-
"βοΈ Describe the issue or your goal (optional but recommended)",
|
| 465 |
-
height=80,
|
| 466 |
-
placeholder="e.g., 'My toaster won't turn on,' or 'How do I build a desk like this?'"
|
| 467 |
-
)
|
| 468 |
-
|
| 469 |
-
with col2:
|
| 470 |
-
st.markdown("### Actions")
|
| 471 |
-
|
| 472 |
-
# Get AI Guidance button - only enabled when image is ready
|
| 473 |
-
has_valid_image = (uploaded_image is not None or camera_image is not None) and st.session_state.app_state.get('upload_error') is None
|
| 474 |
-
|
| 475 |
-
if st.button(
|
| 476 |
-
"π Get AI Guidance",
|
| 477 |
-
type="primary",
|
| 478 |
-
use_container_width=True,
|
| 479 |
-
disabled=not has_valid_image
|
| 480 |
-
):
|
| 481 |
-
image_to_analyze = None
|
| 482 |
-
|
| 483 |
-
# Determine which image to use
|
| 484 |
-
if uploaded_image:
|
| 485 |
-
image_to_analyze, status = handle_uploaded_file(uploaded_image)
|
| 486 |
-
elif camera_image:
|
| 487 |
-
image_to_analyze, status = handle_uploaded_file(camera_image)
|
| 488 |
-
|
| 489 |
-
if image_to_analyze is not None:
|
| 490 |
-
initial_analysis(image_to_analyze, context_text)
|
| 491 |
-
st.rerun()
|
| 492 |
-
else:
|
| 493 |
-
st.error(f"β Image processing failed: {status}")
|
| 494 |
-
|
| 495 |
-
# Status message for button
|
| 496 |
-
if not has_valid_image:
|
| 497 |
-
if uploaded_image is None and camera_image is None:
|
| 498 |
-
st.warning("β οΈ Please upload an image first!")
|
| 499 |
-
elif st.session_state.app_state.get('upload_error'):
|
| 500 |
-
st.warning("β οΈ Fix upload error first!")
|
| 501 |
-
|
| 502 |
-
# Troubleshooting section
|
| 503 |
-
with st.expander("π§ Upload Troubleshooting"):
|
| 504 |
-
st.markdown("""
|
| 505 |
-
**Common fixes:**
|
| 506 |
-
1. **Refresh upload**: Click button below
|
| 507 |
-
2. **Check file size**: Max 5MB
|
| 508 |
-
3. **Try different format**: JPG works best
|
| 509 |
-
4. **Use camera**: If file upload fails
|
| 510 |
-
5. **Clear browser cache**: Ctrl+Shift+Delete
|
| 511 |
-
""")
|
| 512 |
-
|
| 513 |
-
if st.button("π Reset Upload", use_container_width=True):
|
| 514 |
-
st.session_state.app_state['upload_attempts'] = 0
|
| 515 |
-
st.session_state.app_state['upload_error'] = None
|
| 516 |
-
st.session_state.app_state['last_uploaded_file'] = None
|
| 517 |
-
st.rerun()
|
| 518 |
-
|
| 519 |
-
# Debug info
|
| 520 |
-
if st.checkbox("Show debug info"):
|
| 521 |
-
st.json({
|
| 522 |
-
"upload_attempts": st.session_state.app_state.get('upload_attempts', 0),
|
| 523 |
-
"upload_error": st.session_state.app_state.get('upload_error'),
|
| 524 |
-
"last_file": st.session_state.app_state.get('last_uploaded_file'),
|
| 525 |
-
"has_uploaded_file": uploaded_image is not None,
|
| 526 |
-
"has_camera_image": camera_image is not None
|
| 527 |
-
})
|
| 528 |
-
|
| 529 |
-
if st.button("π Start Over", use_container_width=True):
|
| 530 |
-
reset_state()
|
| 531 |
-
else:
|
| 532 |
-
render_sidebar_navigation()
|
| 533 |
-
st.markdown("---")
|
| 534 |
-
st.markdown(f"### {st.session_state.app_state.get('project_title', 'Your Project')}")
|
| 535 |
-
st.markdown(f"**Category:** `{st.session_state.app_state.get('category', 'N/A')}`")
|
| 536 |
-
st.info(f"**Description:** {st.session_state.app_state.get('project_description', 'N/A')}")
|
| 537 |
-
st.markdown("---")
|
| 538 |
-
|
| 539 |
-
if not st.session_state.app_state['steps']:
|
| 540 |
-
if st.session_state.app_state['upcycling_options']:
|
| 541 |
-
st.markdown("#### The AI has suggested a few projects. Please choose one:")
|
| 542 |
-
for i, option in enumerate(st.session_state.app_state['upcycling_options']):
|
| 543 |
-
if st.button(option, key=f"option_{i}"):
|
| 544 |
-
generate_detailed_guide_with_images(selected_option=option)
|
| 545 |
-
st.rerun()
|
| 546 |
-
elif not st.session_state.app_state['plan_approved']:
|
| 547 |
-
st.markdown("#### The AI has proposed the following plan:")
|
| 548 |
-
st.success(st.session_state.app_state['initial_plan'])
|
| 549 |
-
if st.button("β
Looks good, proceed with this plan", type="primary"):
|
| 550 |
-
st.session_state.app_state['plan_approved'] = True
|
| 551 |
-
generate_detailed_guide_with_images()
|
| 552 |
-
st.rerun()
|
| 553 |
-
else:
|
| 554 |
-
render_tools_list()
|
| 555 |
-
st.markdown("---")
|
| 556 |
-
current_step_index = st.session_state.app_state['current_step']
|
| 557 |
-
try:
|
| 558 |
-
step_num, step_text = st.session_state.app_state['steps'][current_step_index - 1]
|
| 559 |
-
render_step(step_num, step_text)
|
| 560 |
-
except IndexError:
|
| 561 |
-
st.session_state.app_state['current_step'] = 1
|
| 562 |
-
st.rerun()
|
| 563 |
-
|
| 564 |
-
total_steps = len(st.session_state.app_state['steps'])
|
| 565 |
-
done_count = sum(1 for d in st.session_state.app_state['done_flags'].values() if d)
|
| 566 |
-
if total_steps > 0:
|
| 567 |
-
progress = done_count / total_steps
|
| 568 |
-
st.progress(progress)
|
| 569 |
-
st.markdown(f"**Overall Progress:** {done_count} of {total_steps} completed ({progress:.0%})")
|
| 570 |
-
if done_count == total_steps:
|
| 571 |
-
st.balloons()
|
| 572 |
-
st.success("π Congratulations! You've completed all steps!")
|
| 573 |
-
|
| 574 |
-
if st.button("π Start Over"):
|
| 575 |
-
reset_state()
|
|
|
|
| 1 |
+
###############################################################################
|
| 2 |
+
# app.py β stable, cached, with on-demand TTS
|
| 3 |
+
###############################################################################
|
| 4 |
+
import os, re, json, uuid, asyncio, base64, io, hashlib, tempfile
|
| 5 |
+
from pathlib import Path
|
| 6 |
+
import streamlit as st; st.set_page_config("AI Report & Slides", layout="wide")
|
| 7 |
+
import pandas as pd, matplotlib; matplotlib.use("Agg"); import matplotlib.pyplot as plt
|
| 8 |
+
from fpdf import FPDF, HTMLMixin
|
| 9 |
+
from markdown import markdown
|
| 10 |
+
try: from markdown_it import MarkdownIt
|
| 11 |
+
except ImportError: MarkdownIt = None
|
| 12 |
+
from pptx import Presentation
|
| 13 |
+
from pptx.util import Inches, Pt
|
| 14 |
from google import genai
|
| 15 |
from google.genai import types
|
| 16 |
+
from google.adk.agents import LlmAgent, SequentialAgent
|
| 17 |
+
from google.adk.runners import Runner
|
| 18 |
+
from google.adk.sessions import InMemorySessionService
|
| 19 |
+
from langchain_experimental.agents import create_pandas_dataframe_agent
|
| 20 |
+
from langchain_google_genai import ChatGoogleGenerativeAI
|
| 21 |
+
|
| 22 |
+
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ CONFIG
|
| 23 |
+
FONT_DIR = Path(__file__).parent
|
| 24 |
+
FONT_REG = FONT_DIR/"NotoSans-Regular.ttf"; FONT_BLD = FONT_DIR/"NotoSans-Bold.ttf"
|
| 25 |
+
FONT = "NotoSans"; SLIDES = 7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
TTS_MODEL = "gemini-2.5-flash-preview-tts"
|
| 27 |
|
| 28 |
+
API_KEY = os.getenv("GEMINI_API_KEY"); st.experimental_set_query_params()
|
| 29 |
+
if not API_KEY: st.error("Set GEMINI_API_KEY"); st.stop()
|
| 30 |
+
GEM = genai.Client(api_key=API_KEY)
|
| 31 |
+
|
| 32 |
+
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ HELPERS
|
| 33 |
+
fix_bullet = lambda t: t.replace("\x95","β’")
|
| 34 |
+
def pcm_to_wav(raw, rate=24_000):
|
| 35 |
+
import wave, contextlib; buf=io.BytesIO()
|
| 36 |
+
with contextlib.closing(wave.open(buf,'wb')) as w:
|
| 37 |
+
w.setnchannels(1); w.setsampwidth(2); w.setframerate(rate); w.writeframes(raw)
|
| 38 |
+
return buf.getvalue()
|
| 39 |
+
def df_hash(df): return hashlib.sha1(pd.util.hash_pandas_object(df, index=True).values).hexdigest()
|
| 40 |
+
|
| 41 |
+
@st.cache_data(show_spinner=False)
|
| 42 |
+
def tts_cached(text):
|
| 43 |
+
txt = text[:500]+"β¦" if len(text)>500 else text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
try:
|
| 45 |
+
r=GEM.models.generate_content(
|
| 46 |
+
model=TTS_MODEL, contents=f"Say clearly: {txt}",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
config=types.GenerateContentConfig(
|
| 48 |
response_modalities=["AUDIO"],
|
| 49 |
speech_config=types.SpeechConfig(
|
| 50 |
voice_config=types.VoiceConfig(
|
| 51 |
+
prebuilt_voice_config=types.PrebuiltVoiceConfig(voice_name="Kore")))))
|
| 52 |
+
audio=r.candidates[0].content.parts[0].inline_data
|
| 53 |
+
return audio.data, audio.mime_type
|
| 54 |
+
except Exception as e: st.error(f"TTS error: {e}"); return None,None
|
| 55 |
+
|
| 56 |
+
# β cached heavy builders β
|
| 57 |
+
@st.cache_resource(show_spinner=False)
|
| 58 |
+
def pandas_agent(dfh): return create_pandas_dataframe_agent(
|
| 59 |
+
llm=ChatGoogleGenerativeAI(model="gemini-2.0-flash",google_api_key=API_KEY),
|
| 60 |
+
df=st.session_state.df, verbose=False, allow_dangerous_code=True)
|
| 61 |
+
|
| 62 |
+
@st.cache_resource(show_spinner=False)
|
| 63 |
+
def charts(descs, dfh):
|
| 64 |
+
pa=pandas_agent(dfh); mp={}
|
| 65 |
+
for d in descs:
|
| 66 |
+
pa.run(f"Create a {d} using matplotlib")
|
| 67 |
+
p=Path(tempfile.gettempdir())/f"{uuid.uuid4()}.png"
|
| 68 |
+
plt.gcf().savefig(p,dpi=300,bbox_inches="tight"); plt.close()
|
| 69 |
+
mp[d]=str(p)
|
| 70 |
+
return mp
|
| 71 |
+
|
| 72 |
+
@st.cache_resource(show_spinner=False)
|
| 73 |
+
def build_pdf(html_md):
|
| 74 |
+
html_md=fix_bullet(html_md)
|
| 75 |
+
html=(MarkdownIt("commonmark",{"breaks":True}).enable("table").render(html_md)
|
| 76 |
+
if MarkdownIt else markdown(html_md,extensions=["tables"]))
|
| 77 |
+
dummy=FPDF(); width=dummy.w-2*dummy.l_margin; px=lambda mm:int(mm*dummy.k)
|
| 78 |
+
html=re.sub(r'(<table[^>]*>)',r'\1<font size="8">',html).replace('</table>','</font></table>')
|
| 79 |
+
html=re.sub(r'<table(?![^>]*width=)',lambda m:f'<table width="{px(width)}"',html)
|
| 80 |
+
html=re.sub(r'<img[^>]+src="([^"]+\.png)"[^>]*>',
|
| 81 |
+
lambda m:f'<img src="{m.group(1)}" width="{int(width)}" />',html)
|
| 82 |
+
class PDF(FPDF,HTMLMixin): pass
|
| 83 |
+
pdf=PDF(); pdf.set_auto_page_break(True,15)
|
| 84 |
+
for s,f in [("",FONT_REG),("B",FONT_BLD),("I",FONT_REG),("BI",FONT_BLD)]: pdf.add_font(FONT,s,str(f),uni=True)
|
| 85 |
+
pdf.set_fallback_fonts([FONT]); pdf.add_page()
|
| 86 |
+
pdf.set_font(FONT,"B",18); pdf.cell(0,12,"AI-Generated Business Report",ln=True); pdf.ln(3)
|
| 87 |
+
pdf.set_font(FONT,"",11); pdf.write_html(html)
|
| 88 |
+
return bytes(pdf.output(dest="S"))
|
| 89 |
+
|
| 90 |
+
@st.cache_resource(show_spinner=False)
|
| 91 |
+
def build_pptx(slides, mp):
|
| 92 |
+
prs=Presentation(); layout=prs.slide_layouts[1]
|
| 93 |
+
for i,raw in enumerate(slides):
|
| 94 |
+
raw=fix_bullet(raw)
|
| 95 |
+
title,*body=filter(None,[l.strip().lstrip('*').strip() for l in re.sub(r'<.*?>','',raw).splitlines()])
|
| 96 |
+
sl=prs.slides.add_slide(layout); sl.shapes.title.text=title
|
| 97 |
+
tf=sl.placeholders[1].text_frame; tf.clear()
|
| 98 |
+
for line in body: p=tf.add_paragraph(); p.text=line; p.font.size=Pt(24)
|
| 99 |
+
m=re.search(r'<generate_chart:\s*"([^"]+)"',raw)
|
| 100 |
+
if m and m.group(1) in mp:
|
| 101 |
+
sl.shapes.add_picture(mp[m.group(1)],Inches(1),Inches(4),width=Inches(8))
|
| 102 |
+
buf=io.BytesIO(); prs.save(buf); return buf.getvalue()
|
| 103 |
+
|
| 104 |
+
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ UI INPUT
|
| 105 |
+
mode = st.radio("Output:",["Report","Presentation","Both"],horizontal=True)
|
| 106 |
+
upl = st.file_uploader("CSV / XLSX",["csv","xlsx"])
|
| 107 |
+
ctx = st.text_area("Optional business context")
|
| 108 |
+
if not st.button("π Generate"): st.stop()
|
| 109 |
+
if not upl: st.warning("Upload data"); st.stop()
|
| 110 |
+
|
| 111 |
+
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ HEAVY GEN
|
| 112 |
+
if "generated" not in st.session_state:
|
| 113 |
try:
|
| 114 |
+
st.session_state.df = pd.read_excel(upl) if upl.name.lower().endswith(".xlsx") else pd.read_csv(upl)
|
| 115 |
+
except Exception as e: st.error(e); st.stop()
|
| 116 |
+
h = df_hash(st.session_state.df)
|
| 117 |
+
# Agents
|
| 118 |
+
agents=[]
|
| 119 |
+
if mode in ("Report","Both"):
|
| 120 |
+
agents.append(LlmAgent(name="ReportAgent",model="gemini-2.5-flash",
|
| 121 |
+
instruction="Write exec-level Markdown report with <generate_chart:\"β¦\">"))
|
| 122 |
+
if mode in ("Presentation","Both"):
|
| 123 |
+
agents.append(LlmAgent(name="PresentationAgent",model="gemini-2.5-flash",
|
| 124 |
+
instruction=f"Create {SLIDES} slides starting 'Slide X:' with <generate_chart:\"β¦\"> tags"))
|
| 125 |
+
root=SequentialAgent(name="root",sub_agents=agents)
|
| 126 |
+
svc=InMemorySessionService(); sid=str(uuid.uuid4())
|
| 127 |
+
asyncio.run(svc.create_session(app_name="app",user_id="u",session_id=sid))
|
| 128 |
+
runner=Runner(agent=root,app_name="app",session_service=svc)
|
| 129 |
+
context={"dataset_info":{"shape":st.session_state.df.shape},
|
| 130 |
+
"user_context":ctx,"preview":st.session_state.df.head().to_dict()}
|
| 131 |
+
result={}
|
| 132 |
+
async def _go():
|
| 133 |
+
async for ev in runner.run_async(user_id="u",session_id=sid,
|
| 134 |
+
new_message=types.Content(role="user",
|
| 135 |
+
parts=[types.Part(text=json.dumps(context))])):
|
| 136 |
+
if ev.is_final_response(): result[ev.author]=ev.content.parts[0].text
|
| 137 |
+
asyncio.run(_go())
|
| 138 |
+
st.session_state.result=result
|
| 139 |
+
# charts
|
| 140 |
+
tags=re.findall(r'<generate_chart:\s*"([^"]+)"',"\n".join(result.values()))
|
| 141 |
+
mp=charts(tuple(tags),h); st.session_state.chart_map=mp
|
| 142 |
+
# slides & docs
|
| 143 |
+
if "ReportAgent" in result:
|
| 144 |
+
md=result["ReportAgent"]
|
| 145 |
+
md_full=md
|
| 146 |
+
for d,p in mp.items(): md_full=re.sub(rf'<generate_chart:\s*"{re.escape(d)}"',f'<img src="{p}"',md_full)
|
| 147 |
+
st.session_state.pdf=build_pdf(md_full)
|
| 148 |
+
if "PresentationAgent" in result:
|
| 149 |
+
slides=[s.strip() for s in re.split(r'\bSlide\s+\d+:',result["PresentationAgent"]) if s.strip()][:SLIDES]
|
| 150 |
+
st.session_state.slides=slides
|
| 151 |
+
st.session_state.pptx=build_pptx(tuple(slides),mp)
|
| 152 |
+
st.session_state.idx=0
|
| 153 |
+
st.session_state.generated=True
|
| 154 |
+
|
| 155 |
+
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ TABS UI
|
| 156 |
+
if mode=="Both": tab_rep,tab_pre=st.tabs(["Report","Slides"])
|
| 157 |
+
else: tab_rep=tab_pre=st
|
| 158 |
+
|
| 159 |
+
if mode in ("Report","Both"):
|
| 160 |
+
md_prev=st.session_state.result["ReportAgent"]
|
| 161 |
+
for d,p in st.session_state.chart_map.items():
|
| 162 |
+
b64=base64.b64encode(open(p,"rb").read()).decode()
|
| 163 |
+
md_prev=re.sub(rf'<generate_chart:\s*"{re.escape(d)}"',f'<img src="data:image/png;base64,{b64}"',md_prev)
|
| 164 |
+
with tab_rep:
|
| 165 |
+
st.markdown(md_prev,unsafe_allow_html=True)
|
| 166 |
+
st.download_button("Download PDF",st.session_state.pdf,"report.pdf","application/pdf")
|
| 167 |
+
|
| 168 |
+
if mode in ("Presentation","Both"):
|
| 169 |
+
with tab_pre:
|
| 170 |
+
slides=st.session_state.slides
|
| 171 |
+
idx=st.session_state.idx
|
| 172 |
+
st.markdown(f"### Slide {idx+1}/{len(slides)}")
|
| 173 |
+
st.write(fix_bullet(slides[idx]))
|
| 174 |
+
if st.button("π Speak",key="speak"):
|
| 175 |
+
with st.spinner("TTSβ¦"):
|
| 176 |
+
aud,mime=tts_cached(slides[idx])
|
| 177 |
+
if aud:
|
| 178 |
+
st.audio(pcm_to_wav(aud) if mime.startswith("audio/raw") else aud,
|
| 179 |
+
format="audio/wav" if mime.startswith("audio/raw") else mime)
|
| 180 |
+
col1,col2=st.columns(2)
|
| 181 |
+
if col1.button("β¬
οΈ",disabled=idx==0): st.session_state.idx-=1; st.rerun()
|
| 182 |
+
if col2.button("β‘οΈ",disabled=idx==len(slides)-1): st.session_state.idx+=1; st.rerun()
|
| 183 |
+
st.download_button("Download PPTX",st.session_state.pptx,
|
| 184 |
+
"presentation.pptx",
|
| 185 |
+
"application/vnd.openxmlformats-officedocument.presentationml.presentation")
|
| 186 |
+
###############################################################################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|