ikraamkb commited on
Commit
870debb
·
verified ·
1 Parent(s): 6841aba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -46
app.py CHANGED
@@ -1,49 +1,7 @@
1
- import pandas as pd
2
- import matplotlib.pyplot as plt
3
- import seaborn as sns
4
- from fastapi import FastAPI, UploadFile, File, HTTPException
5
- import io
6
- from transformers import pipeline
7
 
8
- # Initialize FastAPI app
9
  app = FastAPI()
10
 
11
- # Load Hugging Face model for text-to-code generation
12
- generator = pipeline("text-generation", model="Salesforce/codegen-350M-mono")
13
-
14
- def generate_viz_code(prompt: str) -> str:
15
- """Generate Python code for visualization based on user prompt."""
16
- response = generator(prompt, max_length=200)
17
- return response[0]["generated_text"]
18
-
19
- @app.post("/visualizeHuggingFace")
20
- def visualize_data(file: UploadFile = File(...), prompt: str = ""):
21
- try:
22
- # Ensure the file is an Excel file
23
- if not file.filename.endswith(('.xls', '.xlsx')):
24
- raise HTTPException(status_code=400, detail="Only Excel files (.xls, .xlsx) are supported.")
25
-
26
- # Read the uploaded Excel file
27
- contents = file.file.read()
28
- df = pd.read_excel(io.BytesIO(contents))
29
-
30
- # Generate visualization code
31
- code = generate_viz_code(prompt)
32
- print("Generated Code:\n", code) # Debug output
33
-
34
- # Execute the generated code
35
- exec_globals = {"plt": plt, "sns": sns, "pd": pd, "df": df}
36
- exec(code, exec_globals)
37
-
38
- # Save the generated plot
39
- img_path = "visualization.png"
40
- plt.savefig(img_path)
41
- plt.close()
42
- return {"image_path": img_path}
43
- except Exception as e:
44
- return {"error": str(e)}
45
-
46
- # Uncomment below to run standalone FastAPI app
47
- # if __name__ == "__main__":
48
- # import uvicorn
49
- # uvicorn.run(app, host="0.0.0.0", port=8000)
 
1
+ from fastapi import FastAPI
 
 
 
 
 
2
 
 
3
  app = FastAPI()
4
 
5
+ @app.get("/")
6
+ def greet_json():
7
+ return {"Hello": "World!"}