mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-26 04:32:50 +00:00
9 lines
115 B
Python
9 lines
115 B
Python
import duckdb
|
|
|
|
extensions = [
|
|
"excel",
|
|
"httpfs"
|
|
]
|
|
for ext in extensions:
|
|
duckdb.install_extension(ext)
|