Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ from extract_and_store_supabase import extract_structure_store_message
|
|
8 |
app = FastAPI()
|
9 |
|
10 |
@app.post("/process_document")
|
11 |
-
async def process_document_base64(request: Request
|
12 |
request_data = await request.json()
|
13 |
# print(request_data)
|
14 |
if request_data.get('user_id') and request_data.get('message_id') and request_data.get('attachment_id') is None:
|
|
|
8 |
app = FastAPI()
|
9 |
|
10 |
@app.post("/process_document")
|
11 |
+
async def process_document_base64(request: Request):
|
12 |
request_data = await request.json()
|
13 |
# print(request_data)
|
14 |
if request_data.get('user_id') and request_data.get('message_id') and request_data.get('attachment_id') is None:
|