File tree Expand file tree Collapse file tree 4 files changed +2
-7
lines changed
frontend/web/src/services/api Expand file tree Collapse file tree 4 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 77from invokeai .app .api .dependencies import ApiDependencies
88from invokeai .app .services .session_processor .session_processor_common import SessionProcessorStatus
99from invokeai .app .services .session_queue .session_queue_common import (
10- QUEUE_ITEM_STATUS ,
1110 QUEUE_ORDER_BY ,
1211 Batch ,
1312 BatchStatus ,
2726 SessionQueueItemNotFoundError ,
2827 SessionQueueStatus ,
2928)
30- from invokeai .app .services .shared .pagination import CursorPaginatedResults
3129from invokeai .app .services .shared .sqlite .sqlite_common import SQLiteDirection
3230
3331session_queue_router = APIRouter (prefix = "/v1/queue" , tags = ["queue" ])
Original file line number Diff line number Diff line change 22from typing import Any , Coroutine , Optional
33
44from invokeai .app .services .session_queue .session_queue_common import (
5- QUEUE_ITEM_STATUS ,
65 QUEUE_ORDER_BY ,
76 Batch ,
87 BatchStatus ,
2423 SessionQueueStatus ,
2524)
2625from invokeai .app .services .shared .graph import GraphExecutionState
27- from invokeai .app .services .shared .pagination import CursorPaginatedResults
2826from invokeai .app .services .shared .sqlite .sqlite_common import SQLiteDirection
2927
3028
Original file line number Diff line number Diff line change 3535 prepare_values_to_insert ,
3636)
3737from invokeai .app .services .shared .graph import GraphExecutionState
38- from invokeai .app .services .shared .pagination import CursorPaginatedResults
3938from invokeai .app .services .shared .sqlite .sqlite_common import SQLiteDirection
4039from invokeai .app .services .shared .sqlite .sqlite_database import SqliteDatabase
4140
Original file line number Diff line number Diff line change @@ -12739,14 +12739,14 @@ export type components = {
1273912739 * Convert Cache Dir
1274012740 * Format: path
1274112741 * @description Path to the converted models cache directory (DEPRECATED, but do not delete because it is needed for migration from previous versions).
12742- * @default models\ .convert_cache
12742+ * @default models/ .convert_cache
1274312743 */
1274412744 convert_cache_dir?: string;
1274512745 /**
1274612746 * Download Cache Dir
1274712747 * Format: path
1274812748 * @description Path to the directory that contains dynamically downloaded models.
12749- * @default models\ .download_cache
12749+ * @default models/ .download_cache
1275012750 */
1275112751 download_cache_dir?: string;
1275212752 /**
You can’t perform that action at this time.
0 commit comments