virtual-data-analyst / functions /chart_functions.py
nolanzandi's picture
Adds charts and graphs functionality from quickchart (#7)
60f68c4 verified
raw
history blame
684 Bytes
from typing import List
from haystack import component
import pandas as pd
from quickchart import QuickChart
import json
import ast
def chart_generation_func(queries: List[str], session_hash):
print("CHART GENERATION")
query_dict = queries[0]
print(query_dict)
qc = QuickChart()
qc.width = 1000
qc.height = 500
# Config can be set as a string or as a nested dict
qc.config = query_dict
# You can get the chart URL...
iframe = '<iframe\n scrolling="yes"\n width="1000px"\n height="500px"\n src="' + qc.get_url() + '"\n frameborder="0"\n allowfullscreen\n></iframe>\n'
return {"reply": iframe}