Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2335,7 +2335,7 @@ async def handle_contact_request_response(from_number: str, response: str):
|
|
2335 |
f.write(json.dumps(contact_data, ensure_ascii=False) + '\n')
|
2336 |
|
2337 |
# Send inquiry to receiving number (admin)
|
2338 |
-
receiving_number = "
|
2339 |
|
2340 |
# Parse the response to separate name/location from details
|
2341 |
response_lines = response.strip().split('\n')
|
@@ -2431,7 +2431,7 @@ async def handle_availability_request_response(from_number: str, response: str):
|
|
2431 |
f.write(json.dumps(availability_data, ensure_ascii=False) + '\n')
|
2432 |
|
2433 |
# Send inquiry to receiving number (admin)
|
2434 |
-
receiving_number = "
|
2435 |
current_product = context_manager.get_context(from_number).get('current_product', {})
|
2436 |
product_name = current_product.get('Product Name', 'N/A') if current_product else 'N/A'
|
2437 |
|
|
|
2335 |
f.write(json.dumps(contact_data, ensure_ascii=False) + '\n')
|
2336 |
|
2337 |
# Send inquiry to receiving number (admin)
|
2338 |
+
receiving_number = "923102288328"
|
2339 |
|
2340 |
# Parse the response to separate name/location from details
|
2341 |
response_lines = response.strip().split('\n')
|
|
|
2431 |
f.write(json.dumps(availability_data, ensure_ascii=False) + '\n')
|
2432 |
|
2433 |
# Send inquiry to receiving number (admin)
|
2434 |
+
receiving_number = "923102288328"
|
2435 |
current_product = context_manager.get_context(from_number).get('current_product', {})
|
2436 |
product_name = current_product.get('Product Name', 'N/A') if current_product else 'N/A'
|
2437 |
|