sivakorn-su
commited on
Commit
·
9ce2614
1
Parent(s):
b54bde1
fix code
Browse files
app.py
CHANGED
|
@@ -1,6 +1,4 @@
|
|
| 1 |
-
|
| 2 |
-
# app.py — FastAPI App, Endpoints, Main
|
| 3 |
-
# ============================
|
| 4 |
from fastapi import FastAPI, UploadFile, File, Body
|
| 5 |
from fastapi.middleware.cors import CORSMiddleware
|
| 6 |
from fastapi.responses import JSONResponse
|
|
@@ -23,7 +21,6 @@ from utils import (
|
|
| 23 |
summarize_texts
|
| 24 |
)
|
| 25 |
from supabase import create_client, Client
|
| 26 |
-
import os
|
| 27 |
|
| 28 |
logger = logging.getLogger(__name__)
|
| 29 |
|
|
|
|
| 1 |
+
import os
|
|
|
|
|
|
|
| 2 |
from fastapi import FastAPI, UploadFile, File, Body
|
| 3 |
from fastapi.middleware.cors import CORSMiddleware
|
| 4 |
from fastapi.responses import JSONResponse
|
|
|
|
| 21 |
summarize_texts
|
| 22 |
)
|
| 23 |
from supabase import create_client, Client
|
|
|
|
| 24 |
|
| 25 |
logger = logging.getLogger(__name__)
|
| 26 |
|