We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab08bc4 + 15780b8 commit a644077Copy full SHA for a644077
analytics_bot_langchain/agents/agent_toolkits/bigquery/base.py
@@ -47,10 +47,10 @@ def query_post_processing(query: str) -> str:
47
import plotly.graph_objects as go
48
import pandas as pd
49
50
- def st_print_return(value):
+ def st_print_return(*args):
51
import streamlit as st
52
- st.write(value)
53
- return value
+ st.write(*args)
+ return args
54
""")
55
query = imports + "\n" + query
56
query = re.sub(".*client =.*\n?", "client = bigquery_client", query)
0 commit comments