Josh Bradley 680cfc055e
Update frontend UI app (#174)
Co-authored-by: dorbaker <dorbaker@microsoft.com>
2024-09-19 01:09:26 -04:00

34 lines
821 B
Python

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
from enum import Enum
class PromptKeys(str, Enum):
ENTITY = "entity_extraction"
SUMMARY = "summarize_descriptions"
COMMUNITY = "community_report"
class PromptFileNames(str, Enum):
ENTITY = "entity_extraction_prompt.txt"
SUMMARY = "summarize_descriptions_prompt.txt"
COMMUNITY = "community_report_prompt.txt"
class PromptTextAreas(str, Enum):
ENTITY = "entity_text_area"
SUMMARY = "summary_text_area"
COMMUNITY = "community_text_area"
class StorageIndexVars(str, Enum):
SELECTED_STORAGE = "selected_storage"
INPUT_STORAGE = "input_storage"
SELECTED_INDEX = "selected_index"
class EnvVars(str, Enum):
APIM_SUBSCRIPTION_KEY = "APIM_SUBSCRIPTION_KEY"
DEPLOYMENT_URL = "DEPLOYMENT_URL"