Spaces:
Build error
Build error
| from fastapi import FastAPI, HTTPException, File, UploadFile | |
| from fastapi.middleware.cors import CORSMiddleware | |
| from typing import Annotated | |
| import uvicorn | |
| from fastapi import FastAPI, UploadFile, File | |
| from typing import Union | |
| import json | |
| import csv | |
| app = FastAPI() | |
| app.add_middleware( | |
| CORSMiddleware, | |
| allow_origins=["*"], | |
| allow_credentials=True, | |
| allow_methods=["*"], | |
| allow_headers=["*"], | |
| ) | |
| async def startup_event(): | |
| print("start") | |
| async def root(): | |
| return {"message": "Hello World"} | |
| async def create_upload_file(file: UploadFile, texte: str, model: str): | |
| return {"model": model, "texte": texte, "filename": file.filename} | |
| async def create_upload_file(context: str, texte: str, model: str): | |
| return {"model": model, "texte": texte, "context": context} | |
| async def create_upload_file(texte: str, model: str): | |
| return {"model": model, "texte": texte} | |
| def extract_data(file: UploadFile) -> Union[str, dict, list]: | |
| if file.filename.endswith(".txt"): | |
| data = file.file.read() | |
| return data.decode("utf-8") | |
| elif file.filename.endswith(".csv"): | |
| data = file.file.read().decode("utf-8") | |
| rows = data.split("\n") | |
| reader = csv.DictReader(rows) | |
| return [dict(row) for row in reader] | |
| elif file.filename.endswith(".json"): | |
| data = file.file.read().decode("utf-8") | |
| return json.loads(data) | |
| else: | |
| return "Invalid file format" | |