add big query
Browse files- app.py +1 -1
- requirements.txt +3 -0
app.py
CHANGED
@@ -92,7 +92,7 @@ model = HfApiModel()
|
|
92 |
agent = CodeAgent(
|
93 |
tools=[],
|
94 |
model=model,
|
95 |
-
additional_authorized_imports=["pyvis","aiohttp","os","sys","gradio","pandas","datasets","numpy","Bio","rdflib","networkx","requests","execute_sql","duckdb","pyarrow","google-cloud-bigquery"],
|
96 |
add_base_tools=True
|
97 |
)
|
98 |
|
|
|
92 |
agent = CodeAgent(
|
93 |
tools=[],
|
94 |
model=model,
|
95 |
+
additional_authorized_imports=["pyvis","aiohttp","os","sys","gradio","pandas","datasets","numpy","Bio","rdflib","networkx","requests","execute_sql","duckdb","pyarrow","google-cloud-bigquery","pandas-gbq","pybigquery","sqlalchemy"],
|
96 |
add_base_tools=True
|
97 |
)
|
98 |
|
requirements.txt
CHANGED
@@ -9,6 +9,9 @@ networkx
|
|
9 |
duckdb
|
10 |
aiohttp
|
11 |
google-cloud-bigquery
|
|
|
|
|
|
|
12 |
pyvis
|
13 |
arize-otel
|
14 |
arize-phoenix
|
|
|
9 |
duckdb
|
10 |
aiohttp
|
11 |
google-cloud-bigquery
|
12 |
+
pandas-gbq
|
13 |
+
pybigquery
|
14 |
+
sqlalchemy
|
15 |
pyvis
|
16 |
arize-otel
|
17 |
arize-phoenix
|