Skip to content

Chainlit/literalai-python

Folders and files

NameName
Last commit message
Last commit date
Dec 9, 2024
Mar 23, 2025
Mar 25, 2025
Mar 23, 2025
Aug 1, 2024
Oct 28, 2024
Aug 1, 2024
Aug 1, 2024
Aug 1, 2024
Mar 23, 2025
Aug 1, 2024
Sep 23, 2024
Dec 17, 2024
Nov 29, 2024
Mar 25, 2025

Repository files navigation

Literal AI client

Installation

pip install literalai

Usage

The full documentation is available here.

Create a .env file with the LITERAL_API_KEY environment variable set to your API key.

from literalai import LiteralClient
from dotenv import load_dotenv

load_dotenv()

literalai_client = LiteralClient()

@literalai_client.step(type="run")
def my_step(input):
    return f"World"


@literalai_client.thread
def main():
    print(my_step("Hello"))


main()
client.flush_and_stop()
print("Done")

Development setup

pip install -r requirements-dev.txt