-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extending AI Actions #2537
Open
mnocon
wants to merge
1
commit into
master
Choose a base branch
from
IBX-8689-extending
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Extending AI Actions #2537
Conversation
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 was referenced Nov 11, 2024
adamwojs
reviewed
Nov 18, 2024
code_samples/ai_actions/src/AI/Handler/WhisperAudioToTextActionHandler.php
Outdated
Show resolved
Hide resolved
code_samples/ai_actions/src/AI/Handler/WhisperAudioToTextActionHandler.php
Outdated
Show resolved
Hide resolved
barw4
reviewed
Nov 28, 2024
docs/ai_actions/extend_ai_actions.md
Outdated
``` | ||
|
||
``` yaml | ||
[[= include_file('code_samples/ai_actions/config/services.yaml', 33, 37) =]] |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
docs/ai_actions/extend_ai_actions.md
Outdated
``` | ||
|
||
``` yaml | ||
[[= include_file('code_samples/ai_actions/config/services.yaml', 38, 45) =]] |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
mnocon
force-pushed
the
IBX-8689-extending
branch
4 times, most recently
from
December 9, 2024 09:57
5967dee
to
2982a8e
Compare
mikadamczyk
approved these changes
Dec 11, 2024
barw4
reviewed
Dec 11, 2024
code_samples/ai_actions/src/Command/ActionConfigurationCreateCommand.php
Outdated
Show resolved
Hide resolved
code_samples/ai_actions/src/AI/Handler/LLaVaTextToTextActionHandler.php
Outdated
Show resolved
Hide resolved
code_samples/ai_actions/src/AI/REST/Input/Parser/TranscribeAudio.php
Outdated
Show resolved
Hide resolved
code_samples/ai_actions/src/AI/REST/Output/Resolver/AudioTextResolver.php
Outdated
Show resolved
Hide resolved
code_samples/ai_actions/src/AI/REST/Output/ValueObjectVisitor/AudioText.php
Outdated
Show resolved
Hide resolved
code_samples/ai_actions/src/Command/AddMissingAltTextCommand.php
Outdated
Show resolved
Hide resolved
code_samples/ai_actions/src/Form/Type/TranscribeAudioOptionsType.php
Outdated
Show resolved
Hide resolved
code_samples/ai_actions/src/Form/Type/TextToTextOptionsType.php
Outdated
Show resolved
Hide resolved
mnocon
force-pushed
the
IBX-8689-extending
branch
from
December 12, 2024 12:59
1dc9abf
to
f14c04e
Compare
mnocon
requested review from
adriendupuis,
dabrt,
juskora and
julitafalcondusza
December 12, 2024 13:36
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR builds upon the work done in #2473 - and adds the "how to extend" part of the doc, together with references.
I've included the generated PHP API Reference (this is stolen from #2447) - to avoid polluting this PR with too many files the generated reference is extracted to a separate PR (and all the preview links link there).
General preview: preview
New pages or sections:
Testing the use cases locally:
Setup
Run in a project:
git clone https://github.com/ibexa/documentation-developer -b IBX-8689-extending cp -R documentation-developer/code_samples/ai_actions/ . composer run post-install-cmd
Use case 1
php bin/console app:add-alt-text
The image should have alt text generated automatically
Goal: teach readers how to use the AI PHP API
Use case 2
LLaVATextToText
HandlerGoal: teach readers how to create a custom Handler (including Action Handler Form options)
Use case 3
whisper
eztext
field withtranscript
identifier to the File Content TypeGoal: teach readers how to create a custom Action Type, including:
TODO:
Follow up: fix the PHP reference errors- done in https://github.com/ibexa/connector-ai/pull/104Checklist