|
|
|
from concurrent.futures import ProcessPoolExecutor |
|
import os |
|
import asyncio |
|
import threading |
|
import uuid |
|
from fastapi import FastAPI, HTTPException, Header |
|
from fastapi.encoders import jsonable_encoder |
|
from typing import Dict |
|
from fastapi.responses import FileResponse |
|
import numpy as np |
|
import pandas as pd |
|
from pandasai import SmartDataframe |
|
from langchain_groq.chat_models import ChatGroq |
|
from dotenv import load_dotenv |
|
from pydantic import BaseModel |
|
from csv_service import clean_data, extract_chart_filenames |
|
from urllib.parse import unquote |
|
import csv_service |
|
from langchain_groq import ChatGroq |
|
import pandas as pd |
|
from langchain_experimental.tools import PythonAstREPLTool |
|
from langchain_experimental.agents import create_pandas_dataframe_agent |
|
import numpy as np |
|
import matplotlib.pyplot as plt |
|
import matplotlib |
|
import seaborn as sns |
|
from intitial_q_handler import if_initial_chart_question, if_initial_chat_question |
|
from util_service import _prompt_generator, process_answer |
|
from fastapi.middleware.cors import CORSMiddleware |
|
import matplotlib |
|
matplotlib.use('Agg') |
|
|
|
|
|
app = FastAPI() |
|
|
|
|
|
os.makedirs("/app/cache", exist_ok=True) |
|
|
|
os.makedirs("/app", exist_ok=True) |
|
open("/app/pandasai.log", "a").close() |
|
|
|
|
|
os.makedirs("/app/generated_charts", exist_ok=True) |
|
|
|
load_dotenv() |
|
|
|
image_file_path = os.getenv("IMAGE_FILE_PATH") |
|
image_not_found = os.getenv("IMAGE_NOT_FOUND") |
|
allowed_hosts = os.getenv("ALLOWED_HOSTS", "").split(",") |
|
app.add_middleware( |
|
CORSMiddleware, |
|
allow_origins=allowed_hosts, |
|
allow_credentials=True, |
|
allow_methods=["*"], |
|
allow_headers=["*"], |
|
) |
|
|
|
|
|
groq_api_keys = os.getenv("GROQ_API_KEYS").split(",") |
|
model_name = os.getenv("GROQ_LLM_MODEL") |
|
|
|
class CsvUrlRequest(BaseModel): |
|
csv_url: str |
|
|
|
class ImageRequest(BaseModel): |
|
image_path: str |
|
|
|
|
|
current_groq_key_index = 0 |
|
current_groq_key_lock = threading.Lock() |
|
|
|
|
|
current_langchain_key_index = 0 |
|
current_langchain_key_lock = threading.Lock() |
|
|
|
|
|
|
|
@app.get("/ping") |
|
async def root(): |
|
return {"message": "Pong !!"} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/api/basic_csv_data") |
|
async def basic_csv_data(request: CsvUrlRequest): |
|
try: |
|
decoded_url = unquote(request.csv_url) |
|
print(f"Fetching CSV data from URL: {decoded_url}") |
|
csv_data = csv_service.get_csv_basic_info(decoded_url) |
|
print(f"CSV data fetched successfully: {csv_data}") |
|
return {"data": csv_data} |
|
except Exception as e: |
|
print(f"Error while fetching CSV data: {e}") |
|
raise HTTPException(status_code=400, detail=f"Failed to retrieve CSV data: {str(e)}") |
|
|
|
|
|
|
|
@app.post("/api/get-chart") |
|
async def get_image(request: ImageRequest, authorization: str = Header(None)): |
|
if not authorization: |
|
raise HTTPException(status_code=401, detail="Authorization header missing") |
|
|
|
if not authorization.startswith("Bearer "): |
|
raise HTTPException(status_code=401, detail="Invalid authorization header format") |
|
|
|
token = authorization.split(" ")[1] |
|
if not token: |
|
raise HTTPException(status_code=401, detail="Token missing") |
|
if token != os.getenv("AUTH_TOKEN"): |
|
raise HTTPException(status_code=403, detail="Invalid token") |
|
|
|
try: |
|
image_file_path = request.image_path |
|
return FileResponse(image_file_path, media_type="image/png") |
|
except Exception as e: |
|
print(f"Error: {e}") |
|
return {"answer": "error"} |
|
|
|
|
|
|
|
@app.post("/api/csv_data") |
|
async def get_csv_data(request: CsvUrlRequest): |
|
try: |
|
decoded_url = unquote(request.csv_url) |
|
|
|
csv_data = csv_service.generate_csv_data(decoded_url) |
|
return csv_data |
|
except Exception as e: |
|
|
|
raise HTTPException(status_code=400, detail=f"Failed to retrieve CSV data: {str(e)}") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def groq_chat(csv_url: str, question: str): |
|
global current_groq_key_index, current_groq_key_lock |
|
|
|
while True: |
|
with current_groq_key_lock: |
|
if current_groq_key_index >= len(groq_api_keys): |
|
return {"error": "All API keys exhausted."} |
|
current_api_key = groq_api_keys[current_groq_key_index] |
|
|
|
try: |
|
|
|
cache_db_path = "/workspace/cache/cache_db_0.11.db" |
|
if os.path.exists(cache_db_path): |
|
try: |
|
os.remove(cache_db_path) |
|
except Exception as e: |
|
print(f"Error deleting cache DB file: {e}") |
|
|
|
data = clean_data(csv_url) |
|
llm = ChatGroq(model=model_name, api_key=current_api_key) |
|
|
|
chart_filename = f"chart_{uuid.uuid4()}.png" |
|
chart_path = os.path.join("generated_charts", chart_filename) |
|
|
|
|
|
df = SmartDataframe( |
|
data, |
|
config={ |
|
'llm': llm, |
|
'save_charts': True, |
|
'open_charts': False, |
|
'save_charts_path': os.path.dirname(chart_path), |
|
'custom_chart_filename': chart_filename |
|
} |
|
) |
|
|
|
answer = df.chat(question) |
|
|
|
|
|
if isinstance(answer, pd.DataFrame): |
|
processed = answer.apply(handle_out_of_range_float).to_dict(orient="records") |
|
elif isinstance(answer, pd.Series): |
|
processed = answer.apply(handle_out_of_range_float).to_dict() |
|
elif isinstance(answer, list): |
|
processed = [handle_out_of_range_float(item) for item in answer] |
|
elif isinstance(answer, dict): |
|
processed = {k: handle_out_of_range_float(v) for k, v in answer.items()} |
|
else: |
|
processed = {"answer": str(handle_out_of_range_float(answer))} |
|
|
|
return processed |
|
|
|
except Exception as e: |
|
error_message = str(e) |
|
if "429" in error_message: |
|
with current_groq_key_lock: |
|
current_groq_key_index += 1 |
|
if current_groq_key_index >= len(groq_api_keys): |
|
return {"error": "All API keys exhausted."} |
|
else: |
|
return {"error": error_message} |
|
|
|
|
|
def langchain_csv_chat(csv_url: str, question: str, chart_required: bool): |
|
global current_langchain_key_index, current_langchain_key_lock |
|
|
|
data = clean_data(csv_url) |
|
attempts = 0 |
|
|
|
while attempts < len(groq_api_keys): |
|
with current_langchain_key_lock: |
|
if current_langchain_key_index >= len(groq_api_keys): |
|
current_langchain_key_index = 0 |
|
api_key = groq_api_keys[current_langchain_key_index] |
|
current_key = current_langchain_key_index |
|
current_langchain_key_index += 1 |
|
attempts += 1 |
|
|
|
try: |
|
llm = ChatGroq(model=model_name, api_key=api_key) |
|
tool = PythonAstREPLTool(locals={ |
|
"df": data, |
|
"pd": pd, |
|
"np": np, |
|
"plt": plt, |
|
"sns": sns, |
|
"matplotlib": matplotlib |
|
}) |
|
|
|
agent = create_pandas_dataframe_agent( |
|
llm, |
|
data, |
|
agent_type="openai-tools", |
|
verbose=True, |
|
allow_dangerous_code=True, |
|
extra_tools=[tool], |
|
return_intermediate_steps=True |
|
) |
|
|
|
prompt = _prompt_generator(question, chart_required) |
|
result = agent.invoke({"input": prompt}) |
|
return result.get("output") |
|
|
|
except Exception as e: |
|
print(f"Error with key index {current_key}: {str(e)}") |
|
|
|
return {"error": "All API keys exhausted"} |
|
|
|
|
|
@app.post("/api/csv-chat") |
|
async def csv_chat(request: Dict, authorization: str = Header(None)): |
|
|
|
if not authorization or not authorization.startswith("Bearer "): |
|
raise HTTPException(status_code=401, detail="Invalid authorization") |
|
|
|
token = authorization.split(" ")[1] |
|
if token != os.getenv("AUTH_TOKEN"): |
|
raise HTTPException(status_code=403, detail="Invalid token") |
|
|
|
try: |
|
query = request.get("query") |
|
csv_url = request.get("csv_url") |
|
decoded_url = unquote(csv_url) |
|
|
|
if if_initial_chat_question(query): |
|
answer = await asyncio.to_thread( |
|
langchain_csv_chat, decoded_url, query, False |
|
) |
|
print("langchain_answer:", answer) |
|
return {"answer": jsonable_encoder(answer)} |
|
|
|
|
|
groq_answer = await asyncio.to_thread(groq_chat, decoded_url, query) |
|
print("groq_answer:", groq_answer) |
|
|
|
if process_answer(groq_answer) == "Empty response received.": |
|
return {"answer": "Sorry, I couldn't find relevant data..."} |
|
|
|
if process_answer(groq_answer): |
|
lang_answer = await asyncio.to_thread( |
|
langchain_csv_chat, decoded_url, query, False |
|
) |
|
if process_answer(lang_answer): |
|
return {"answer": "error"} |
|
return {"answer": jsonable_encoder(lang_answer)} |
|
|
|
return {"answer": jsonable_encoder(groq_answer)} |
|
|
|
except Exception as e: |
|
print(f"Error processing request: {str(e)}") |
|
return {"answer": "error"} |
|
|
|
def handle_out_of_range_float(value): |
|
if isinstance(value, float): |
|
if np.isnan(value): |
|
return None |
|
elif np.isinf(value): |
|
return "Infinity" |
|
return value |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
current_groq_chart_key_index = 0 |
|
current_groq_chart_lock = threading.Lock() |
|
current_langchain_chart_key_index = 0 |
|
current_langchain_chart_lock = threading.Lock() |
|
|
|
max_cpus = os.cpu_count() |
|
print("Available CPUs:", max_cpus) |
|
|
|
|
|
process_executor = ProcessPoolExecutor(max_workers=4) |
|
|
|
|
|
def groq_chart(csv_url: str, question: str): |
|
""" |
|
Generate a chart using the groq-based method. |
|
Modifications: |
|
• No deletion of a shared cache file (avoid interference). |
|
• After chart generation, close all matplotlib figures. |
|
• Return the full path of the saved chart. |
|
""" |
|
global current_groq_chart_key_index, current_groq_chart_lock |
|
|
|
for attempt in range(len(groq_api_keys)): |
|
try: |
|
|
|
data = clean_data(csv_url) |
|
with current_groq_chart_lock: |
|
current_api_key = groq_api_keys[current_groq_chart_key_index] |
|
|
|
llm = ChatGroq(model=model_name, api_key=current_api_key) |
|
|
|
|
|
chart_filename = f"chart_{uuid.uuid4().hex}.png" |
|
chart_path = os.path.join("generated_charts", chart_filename) |
|
|
|
|
|
|
|
from pandasai import SmartDataframe |
|
df = SmartDataframe( |
|
data, |
|
config={ |
|
'llm': llm, |
|
'save_charts': True, |
|
'open_charts': False, |
|
'save_charts_path': os.path.dirname(chart_path), |
|
'custom_chart_filename': chart_filename |
|
} |
|
) |
|
|
|
|
|
instructions = """ |
|
- Ensure each value is clearly visible. |
|
- Adjust font sizes, rotate labels if necessary. |
|
- Use a colorblind-friendly palette. |
|
- Arrange multiple charts in a grid if needed. |
|
""" |
|
answer = df.chat(question + instructions) |
|
|
|
|
|
plt.close('all') |
|
|
|
|
|
if process_answer(answer): |
|
return "Chart not generated" |
|
|
|
return chart_path |
|
|
|
except Exception as e: |
|
error = str(e) |
|
if "429" in error: |
|
with current_groq_chart_lock: |
|
current_groq_chart_key_index = (current_groq_chart_key_index + 1) % len(groq_api_keys) |
|
else: |
|
print(f"Groq chart generation error: {error}") |
|
return {"error": error} |
|
|
|
return {"error": "All API keys exhausted for chart generation"} |
|
|
|
|
|
|
|
def langchain_csv_chart(csv_url: str, question: str, chart_required: bool): |
|
""" |
|
Generate a chart using the langchain-based method. |
|
Modifications: |
|
• No shared deletion of cache. |
|
• Close matplotlib figures after generation. |
|
• Return a list of full chart file paths. |
|
""" |
|
global current_langchain_chart_key_index, current_langchain_chart_lock |
|
|
|
data = clean_data(csv_url) |
|
|
|
for attempt in range(len(groq_api_keys)): |
|
try: |
|
with current_langchain_chart_lock: |
|
api_key = groq_api_keys[current_langchain_chart_key_index] |
|
current_key = current_langchain_chart_key_index |
|
current_langchain_chart_key_index = (current_langchain_chart_key_index + 1) % len(groq_api_keys) |
|
|
|
llm = ChatGroq(model=model_name, api_key=api_key) |
|
tool = PythonAstREPLTool(locals={ |
|
"df": data, |
|
"pd": pd, |
|
"np": np, |
|
"plt": plt, |
|
"sns": sns, |
|
"matplotlib": matplotlib, |
|
"uuid": uuid |
|
}) |
|
|
|
agent = create_pandas_dataframe_agent( |
|
llm, |
|
data, |
|
agent_type="openai-tools", |
|
verbose=True, |
|
allow_dangerous_code=True, |
|
extra_tools=[tool], |
|
return_intermediate_steps=True |
|
) |
|
|
|
result = agent.invoke({"input": _prompt_generator(question, True)}) |
|
output = result.get("output", "") |
|
|
|
|
|
plt.close('all') |
|
|
|
|
|
chart_files = extract_chart_filenames(output) |
|
if len(chart_files) > 0: |
|
|
|
return [os.path.join(image_file_path, f) for f in chart_files] |
|
|
|
if attempt < len(groq_api_keys) - 1: |
|
print(f"Langchain chart error (key {current_key}): {output}") |
|
|
|
except Exception as e: |
|
print(f"Langchain chart error (key {current_key}): {str(e)}") |
|
|
|
return "Chart generation failed after all retries" |
|
|
|
|
|
|
|
@app.post("/api/csv-chart") |
|
async def csv_chart(request: dict, authorization: str = Header(None)): |
|
""" |
|
Endpoint for generating a chart from CSV data. |
|
This endpoint uses a ProcessPoolExecutor to run the (CPU-bound) chart generation |
|
functions in separate processes so that multiple requests can run in parallel. |
|
""" |
|
|
|
if not authorization or not authorization.startswith("Bearer "): |
|
raise HTTPException(status_code=401, detail="Authorization required") |
|
|
|
token = authorization.split(" ")[1] |
|
if token != os.getenv("AUTH_TOKEN"): |
|
raise HTTPException(status_code=403, detail="Invalid credentials") |
|
|
|
try: |
|
query = request.get("query", "") |
|
csv_url = unquote(request.get("csv_url", "")) |
|
|
|
loop = asyncio.get_running_loop() |
|
|
|
if if_initial_chart_question(query): |
|
langchain_result = await loop.run_in_executor( |
|
process_executor, langchain_csv_chart, csv_url, query, True |
|
) |
|
print("Langchain chart result:", langchain_result) |
|
if isinstance(langchain_result, list) and len(langchain_result) > 0: |
|
return FileResponse(langchain_result[0], media_type="image/png") |
|
|
|
|
|
groq_result = await loop.run_in_executor( |
|
process_executor, groq_chart, csv_url, query |
|
) |
|
print(f"Groq chart result: {groq_result}") |
|
if isinstance(groq_result, str) and groq_result != "Chart not generated": |
|
return FileResponse(groq_result, media_type="image/png") |
|
|
|
|
|
langchain_paths = await loop.run_in_executor( |
|
process_executor, langchain_csv_chart, csv_url, query, True |
|
) |
|
print("Fallback langchain chart result:", langchain_paths) |
|
if isinstance(langchain_paths, list) and len(langchain_paths) > 0: |
|
return FileResponse(langchain_paths[0], media_type="image/png") |
|
else: |
|
return {"error": "All chart generation methods failed"} |
|
|
|
except Exception as e: |
|
print(f"Critical chart error: {str(e)}") |
|
return {"error": "Internal system error"} |
|
|
|
|