• Stars
    star
    137
  • Rank 264,631 (Top 6 %)
  • Language
    Python
  • License
    MIT License
  • Created over 3 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Hal9 — Create and Share Generative Apps

Hal9: Data apps powered by code and LLMs

Hal9 PyPi Downloads Hal9 NPM Downloads

Hal9 is a framework for building interactive data apps. It allows you to utilize your DS/ML code with minimal overhead, and frees you from having to worry about frontend web frameworks. Hal9 consists of the following components:

  • LLM: A text interface to design your app using large language models.

Getting started

The quickest place to test things out is this hosted demo: hal9.com/new.

Python

pip install hal9
import hal9 as h9
h9.get_app("asks for your name and prints hello")

R

The development version of the package can be installed via

remotes::install_github("hal9ai/hal9", subdir = "r")

library(hal9)
h9_start("asks for your name and prints hello")