File size: 684 Bytes
c895015
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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}