AI Apps

An AI app represents a workspace to execute technical evaluations for a given AI use case.

To interact with the AI application using the CLI, use the lf app command.

AI App Overview

Properties


key string required

Unique identifier assigned to the entity in AI GO!.

Pattern: ^[a-zA-Z0-9_\-]+$
Max Length: 250


display_name string required

The AI app’s name displayed to the user.


description string

Short text description of the AI app.

Default: None


long_description string

Long description of the AI app. Supports Markdown formatting.

Default: None


key_info AIAppKeyInformation

Key information for the AI application.

Default: None


tags array[string]

Tags associated with the AI app.

Default: []

AI App (Simple)
display_name: "My App"
key: "my-app"
AI App (Advanced)
display_name: "Full AI App"
key: "full-ai-app"
tags: ["Guides", "AI App"]
description: "LatticeFlow AI Airlines Virtual Assistant"
long_description: !include "./README.md"
key_info:
  lifecycle_stage: "production"
  user_types: "external"
  data_classification: "confidential"
  has_pii_access: true
  has_client_data_access: true
  built_by: "in_house"

Definitions

AIAppKeyInformation

The key information needed to determine what risks to show and recommend for pre-screening.

Properties


lifecycle_stage enum LifecycleStage

The AI App’s lifecycle stage.

Default: None


The AI App’s lifecycle stage.

Allowed Values:

  • development
  • ideation
  • r_and_d
  • testing
  • production
  • retired

user_types enum UserTypes

The target type of the primary user of the AI app.

Default: None


The target type of the primary user of the AI app.

Allowed Values:

  • internal_specialist
  • internal_all
  • external

data_classification enum DataClassification

The classification of the data that the AI app has access to or has been trained on.

Default: None


The classification of the data that the AI app has access to or has been trained on.

Allowed Values:

  • public
  • internal
  • confidential
  • restricted

has_pii_access boolean

Boolean flag whether the AI app has PII access.

Default: None


has_client_data_access boolean

Boolean flag whether the AI app has client data access.

Default: None


built_by enum BuiltBy

Indicates whether the AI app is built by a third party or in-house.

Default: None


Indicates whether the AI app is built by a third party or in-house.

Allowed Values:

  • third_party
  • in_house
AI App Key Information
# ...
key_info:
  lifecycle_stage: "production"
  user_types: "external"
  data_classification: "confidential"
  has_pii_access: true
  has_client_data_access: true
  built_by: "in_house"