Replies: 6 comments
-
Hello! We actually have UIs that you can run: |
Beta Was this translation helpful? Give feedback.
-
There's another update to this. Now you can run the Flask app from inside the Vanna package: !pip install vanna
import vanna
from vanna.remote import VannaDefault
vn = VannaDefault(model='chinook', api_key=vanna.get_api_key('[email protected]'))
vn.connect_to_sqlite('https://vanna.ai/Chinook.sqlite')
vn.ask('What are the top 10 artists by sales?')
from vanna.flask import VannaFlaskApp
VannaFlaskApp(vn).run() This is launchable from inside a Jupyter notebook or independently |
Beta Was this translation helpful? Give feedback.
-
Hello, I am a beginner in Python. I did not find the 'flask' and 'remote' submodules in your source code under src/vanna, which caused my console to continuously report the error: 'ModuleNotFoundError: No module named 'flask''. I hope for an explanation, and I greatly appreciate your help. |
Beta Was this translation helpful? Give feedback.
-
This looks like you don't have the Python package installed. Please join our Discord for more help on this. |
Beta Was this translation helpful? Give feedback.
-
How should I perceive the relationship between the vanna-flask repository and the built-in flask application in vanna? Which one will be prioritized for maintenance in the future? |
Beta Was this translation helpful? Give feedback.
-
Thanks for this question. The This repo that we're in (the |
Beta Was this translation helpful? Give feedback.
-
This is really stunning! Just it's a pity that we can see the results only on the Jupyter notebook.
Can we build a lightweight clean frontend which consumes those apis provided by the current backend?
Beta Was this translation helpful? Give feedback.
All reactions