You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ai_actions/ai_actions_guide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@ AI Actions is an extensible solution for integrating features provided by AI ser
13
13
Out-of-the-box, AI Actions includes two essential components: a framework package and an OpenAI connector package.
14
14
It comes pre-configured with the following action types:
15
15
16
-
-[Refine text](#refining-text): Rewrite existing text according to parameters set in a prompt
17
-
-[Generate alternative text](#generating-alternative-text): Generate alt text for accessibility purposes
16
+
-[Refine text](#refining-text): Rewrite existing text according to instructions set in a prompt
17
+
-[Generate alternative text](#generating-alternative-text): Generate alt text for images for accessibility purposes
18
18
19
19

20
20
@@ -33,7 +33,7 @@ To begin using AI Actions, you must first [install the required packages and per
33
33
34
34
## How it works
35
35
36
-
AI Actions LTS update is built upon the PHP framework.
36
+
AI Actions LTS update relies on an extensible AI framework written in PHP.
37
37
The framework package is responsible for gathering information from various sources, such as AI action types, AI action configurations, and contextual details like SiteAccess, user details, locale settings, and more.
38
38
This data can then be combined with user input.
39
39
It's then passed to a service connector, such as the default OpenAI connector, for final processing on [[= product_name =]] side.
@@ -116,7 +116,7 @@ Built-in AI action types offer a good starting point, but the real power of the
116
116
Extending AI Actions opens up new possibilities for content management and editing.
117
117
Developers can define new models and AI action types that use the existing AI service or even integrate additional services.
118
118
The latter involves developing a new service connector, writing a handler that communicates with the new service, defining a new AI action type, and creating a form for configuring options, which extends the default action configuration form shown in the **Admin** panel.
119
-
For example, if this is your organization's requirement, a developer could write a handler that uses an AI service to <insert_a description and link to Marek's use case> generate complete articles based on a short description, or illustrations based on a body of an article.
119
+
For example, if this is your organization's requirement, a developer could write a handler that uses an AI service available internally, without exposing your data to a third-party service.
Copy file name to clipboardExpand all lines: docs/ai_actions/install_ai_actions.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ To use this feature you must first install the packages and configure them.
9
9
10
10
## Install packages
11
11
12
-
Run the following command to install the bundle:
12
+
Run the following commands to install the packages:
13
13
14
14
```bash
15
15
composer require ibexa/connector-ai
@@ -27,7 +27,7 @@ Once the packages are installed, before you can start using AI Actions, you must
27
27
28
28
Create an OpenAI account, [get an API key](https://help.openai.com/en/articles/4936850-where-do-i-find-my-openai-api-key), and make sure that you [set up a billing method](https://help.openai.com/en/articles/9038407-how-can-i-set-up-billing-for-my-account).
29
29
30
-
Then, in the root folder of your project, modify the `.env` file: find the `OPENAI_API_KEY`key and replace a placeholder value with the API key that you got from the AI service.
30
+
Then, in the root folder of your project, modify the `.env` file: find the `OPENAI_API_KEY`variable and replace a placeholder value with the API key that you got from the AI service.
0 commit comments