Aita
  • Introduction
  • Roadmap
  • Aita Lab
    • Chat
    • Data Source
  • Architecture
  • Contribution
  • Getting Started
    • Quick Start
  • Installation
  • Reference
    • Aita agent
      • Pandas Agent
      • Pyarrow Agent
      • Python Agent
      • Spark Agent
      • SqlAgent
    • Data Sources
      • sql
      • File Data Source
      • Postgres Data Source
      • Snowflake Data Source
    • Aita tool
      • PythonTool
      • PandasTool
      • PyArrow Tool
      • pyspark tool
      • Sql Tools
  • Tech specs
    • Aita tech spec v1
Powered by GitBook
On this page
  • How to get started?
  • Components

Aita Lab

PreviousRoadmapNextChat

Last updated 9 months ago

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 .

  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

Reflex config