mirror of
https://github.com/Azure-Samples/graphrag-accelerator.git
synced 2025-07-04 15:45:44 +00:00
12 lines
228 B
Python
12 lines
228 B
Python
![]() |
# Copyright (c) Microsoft Corporation.
|
||
|
# Licensed under the MIT License.
|
||
|
|
||
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class PipelineJobState(Enum):
|
||
|
SCHEDULED = "scheduled"
|
||
|
RUNNING = "running"
|
||
|
FAILED = "failed"
|
||
|
COMPLETE = "complete"
|