-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
43 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,39 @@ | ||
export * from "./workflow/types"; | ||
export * from "./client/WsClient"; | ||
export * from "./client/Client"; | ||
export * from "./workflow/Workflow"; | ||
export * from "./plugins/Plugin"; | ||
export * as plugins from "./plugins"; | ||
export * as builtins from "./builtins"; | ||
export * from "./pipeline"; | ||
|
||
export * from "./client/types"; | ||
export * from "./client/ws.types"; | ||
export * from "./client/response.types"; | ||
|
||
export * from "./workflow/types"; | ||
export * from "./pipeline/types"; | ||
|
||
import { WsClient } from "./client/WsClient"; | ||
import { Client } from "./client/Client"; | ||
import { Workflow } from "./workflow/Workflow"; | ||
import { Plugin } from "./plugins/Plugin"; | ||
|
||
/** | ||
* @deprecated use `Client` instead | ||
*/ | ||
export const ComfyUIApiClient = Client; | ||
|
||
/** | ||
* @deprecated use `WsClient` instead | ||
*/ | ||
export const ComfyUIWsClient = WsClient; | ||
|
||
/** | ||
* @deprecated use `Workflow` instead | ||
*/ | ||
export const ComfyUIWorkflow = Workflow; | ||
|
||
/** | ||
* @deprecated use `Plugin` instead | ||
*/ | ||
export const ClientPlugin = Plugin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/** | ||
* TODO pipeline for flux model | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/** | ||
* TODO pipeline for SDXL model | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters