File size: 1,699 Bytes
d92c861
 
 
 
 
 
 
 
6122003
d92c861
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6122003
 
 
 
 
 
 
 
 
 
 
 
 
d92c861
 
 
 
 
6122003
d92c861
7dff946
 
 
 
 
6122003
 
7dff946
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from fastapi import FastAPI, File, UploadFile, HTTPException
from fastapi.responses import HTMLResponse
from fastapi.responses import StreamingResponse
from fastapi.responses import FileResponse
from fastapi.middleware.cors import CORSMiddleware
import pandas as pd
from io import StringIO
import os
import uuid

from pandasai import SmartDataframe
import pandas as pd
from pandasai.llm import OpenAI


secret = os.environ["key"]

app = FastAPI()
app.add_middleware(
    CORSMiddleware,
    allow_origins=["*"],
    allow_credentials=True,
    allow_methods=["*"],
    allow_headers=["*"],
)

import base64
from PIL import Image
from io import BytesIO

def convert_image_to_base64(image_path):
    with Image.open(image_path) as image:
        buffered = BytesIO()
        image.save(buffered, format="PNG")
        img_bytes = buffered.getvalue()
        img_base64 = base64.b64encode(img_bytes)
        img_base64_string = img_base64.decode("utf-8")
    return img_base64_string

@app.post("/get_image_for_text")
async def get_image_for_text(email,query,file: UploadFile = File(...)):
        print(file.filename)
        with open(email+".csv", "wb") as file_object:
            file_object.write(file.file.read())
        uuid1 = uuid.uuid1()
        llm = OpenAI(api_token=secret,save_charts=True)
        try:
            df = pd.read_csv(email+".csv") 
            sdf = SmartDataframe(df, config={"llm": llm})
            sdf.chat(query)
            image_path = "exports/charts/temp_chart.png"  # Replace with your image's path
            base64str = convert_image_to_base64(image_path)
            return {"id":str(uuid1),"image":base64str}
        except:
            return "try again"