Aita Lab
Welcome to Aita Lab! Aita lab is an interactive platform where you can ask questions, run code, and explore data using Aita AI.
How to get started?
Before you start, make sure you have aita installed by running the following command:
pip install aita
Once installed, you can setup configuration file
rxconfig.py
in your project:
import reflex as rx
from reflex.constants import LogLevel
config = rx.Config(
app_name="aita_lab",
loglevel=LogLevel.INFO,
)
more information on configuration can be found Reflex config.
Now you can run the following command to start Aita Lab:
aita_lab run
The app will start running on http://localhost:3000/
. You can open this URL in your browser to start using Aita Lab.
Components
Last updated