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?

  1. Before you start, make sure you have aita installed by running the following command:

pip install aita
  1. 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.

  1. 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