-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 29387 remove savepublish ia actionlet image (#29499)
Removing the save + publish from the IA Actionlet Image --------- Co-authored-by: Daniel Silva <[email protected]> Co-authored-by: Victor Alfaro <[email protected]>
- Loading branch information
1 parent
b20e404
commit 910cc83
Showing
17 changed files
with
477 additions
and
96 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
.../dotcms/ai/service/OpenAIChatService.java → .../main/java/com/dotcms/ai/api/ChatAPI.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.dotcms.ai.api; | ||
|
||
public interface ChatAPIProvider { | ||
|
||
ChatAPI getChatAPI(Object... initArguments); | ||
} |
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
4 changes: 2 additions & 2 deletions
4
...dotcms/ai/service/OpenAIImageService.java → ...main/java/com/dotcms/ai/api/ImageAPI.java
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
11 changes: 11 additions & 0 deletions
11
dotCMS/src/main/java/com/dotcms/ai/api/ImageAPIProvider.java
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,11 @@ | ||
package com.dotcms.ai.api; | ||
|
||
|
||
/** | ||
* This class is in charge of providing the {@link ImageAPI}. | ||
* @author jsanca | ||
*/ | ||
public interface ImageAPIProvider { | ||
|
||
ImageAPI getImageAPI(Object... initArguments); | ||
} |
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
Oops, something went wrong.