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: README.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Makes AI centrally available in WordPress, whether via PHP, REST API, JavaScript
6
6
7
7
This WordPress plugin introduces central infrastructure which allows other plugins to make use of AI capabilities. It exposes APIs that can be used in various contexts, whether you need to use AI capabilities in server-side or client-side code. Furthermore, the APIs are agnostic of the AI service - whether that's Anthropic, Google, or OpenAI, to only name a few, you can use any of them in the same way. You can also register your own implementation of another service, if it is not supported out of the box.
8
8
9
-
The plugin does intentionally _not_ come with specific AI driven features built-in, except for a simple WordPress support assistant chatbot that is opt-in via code. The purpose of this plugin is to facilitate use of AI by other plugins. As such, it is a perfect use-case for [plugin dependencies](https://make.wordpress.org/core/2024/03/05/introducing-plugin-dependencies-in-wordpress-6-5/).
9
+
The plugin does intentionally _not_ come with specific AI driven features built-in, except for an AI Playground screen to explore AI capabilities as well as a settings screen to configure AI service credentials. The purpose of this plugin is to facilitate use of AI by other plugins. As such, it is a perfect use-case for [plugin dependencies](https://make.wordpress.org/core/2024/03/05/introducing-plugin-dependencies-in-wordpress-6-5/).
10
10
11
11
**Disclaimer:** The AI Services plugin is still in its early stages, with a limited feature set. As long as it is in a `0.x.y` version, there may be occasional breaking changes when using lower level parts of the API. Consider the plugin early access at this point, as there are lots of enhancements to add and polishing to do. A crucial part of that is shaping the APIs to make them easy to use and cover the different generative AI capabilities that the third party services offer in a uniform way. That's why your feedback is much appreciated!
12
12
@@ -135,7 +135,9 @@ Once the AI Services plugin is installed and activated, you can configure the pl
135
135
136
136
## Using the plugin
137
137
138
-
Once the plugin is active, you will find a new _Settings > AI Services_ submenu in the WordPress administration menu. In there, you can configure your AI service API keys. If you have enabled the WordPress assistant chatbot, the only user-facing feature of the plugin, you should see a small "Need help?" button in the lower right throughout WP Admin after you have configured at least one (valid) API key.
138
+
Once the plugin is active, you will find a new _Settings > AI Services_ submenu in the WordPress administration menu. In there, you can configure your AI service API keys. After that, you can use the _Tools > AI Playground_ screen to explore the available AI capabilities of the different connected services.
139
+
140
+
If you have enabled the WordPress assistant chatbot via filter, you should see a small "Need help?" button in the lower right throughout WP Admin after you have configured at least one (valid) API key.
139
141
140
142
Please refer to the [plugin documentation](./docs/README.md) for instructions on how you can actually use the AI capabilities of the plugin in your own projects.
Copy file name to clipboardexpand all lines: docs/Enabling-the-Assistant-Chatbot-Feature.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
# Enabling the Assistant Chatbot Feature
4
4
5
-
There is a single user-facing built-in feature the plugin comes with, which is a simple WordPress Assistant chatbot, effectively acting as a proof of concept. Since the plugin is purely an infrastructure plugin that other plugins can use to access AI capabilities in WordPress, that chatbot feature is disabled by default.
5
+
There is a simple WordPress Assistant chatbot available as an experimental feature of the plugin, effectively acting as a proof of concept. Since the plugin is purely an infrastructure plugin that other plugins can use to access AI capabilities in WordPress, that chatbot feature is disabled by default.
6
6
7
7
If you want to test or use the chatbot, you can easily enable it via filter:
Copy file name to clipboardexpand all lines: docs/Introduction-to-AI-Services.md
+9-11
Original file line number
Diff line number
Diff line change
@@ -5,19 +5,17 @@
5
5
While the main introduction to the plugin can be found in the [plugin readme](../README.md), this section provides a bit more general information about the plugin and its feature set:
6
6
7
7
* Abstraction layer and APIs to communicate with any AI service in a uniform way
8
-
* APIs are available in both PHP and in JavaScript, as well as via WP-CLI commands
9
-
* Supports streaming text generation for more immediate feedback to users
10
-
* Currently only supports text generation (including multi-modal support if supported by the AI service), but support for additional capabilities (e.g. image generation, audio generation) will be added soon
8
+
* APIs are available in both PHP and in JavaScript, as well as via WP-CLI commands
9
+
* Supports streaming text generation for more immediate feedback to users
10
+
* Currently only supports text generation (including multi-modal support if supported by the AI service), but support for additional capabilities (e.g. image generation, audio generation) will be added soon
* Browser (client-side only; experimental support for [Chrome's built-in AI APIs](https://developer.chrome.com/docs/ai/built-in-apis))
* Browser (client-side only; experimental support for [Chrome's built-in AI APIs](https://developer.chrome.com/docs/ai/built-in-apis))
16
16
* Additional AI service integrations can be registered and will then be available in the same way as built-in ones
17
-
* WordPress Assistant chatbot is the single user-facing built-in feature the plugin comes with
18
-
* This effectively is a simple proof of concept of how the APIs the plugin provides can be used
19
-
* The chatbot feature is inactive by default and can easily be [enabled via filter](./Enabling-the-Assistant-Chatbot-Feature.md)
20
-
* No other user-facing features will ever be added - that's a promise - because this is first and foremost an **infrastructure plugin** that other plugins can rely on
17
+
* AI Playground administration screen (in the Tools menu) allows exploring the different AI capabilities
18
+
* AI Services settings screen to configure services with API credentials
Copy file name to clipboardexpand all lines: readme.txt
+9-7
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Makes AI centrally available in WordPress, whether via PHP, REST API, JavaScript
15
15
16
16
This WordPress plugin introduces central infrastructure which allows other plugins to make use of AI capabilities. It exposes APIs that can be used in various contexts, whether you need to use AI capabilities in server-side or client-side code. Furthermore, the APIs are agnostic of the AI service - whether that's Anthropic, Google, or OpenAI, to only name a few, you can use any of them in the same way. You can also register your own implementation of another service, if it is not supported out of the box.
17
17
18
-
The plugin does intentionally _not_ come with specific AI driven features built-in, except for a simple WordPress support assistant chatbot that is opt-in via code. The purpose of this plugin is to facilitate use of AI by other plugins. As such, it is a perfect use-case for [plugin dependencies](https://make.wordpress.org/core/2024/03/05/introducing-plugin-dependencies-in-wordpress-6-5/).
18
+
The plugin does intentionally _not_ come with specific AI driven features built-in, except for an AI Playground screen to explore AI capabilities as well as a settings screen to configure AI service credentials. The purpose of this plugin is to facilitate use of AI by other plugins. As such, it is a perfect use-case for [plugin dependencies](https://make.wordpress.org/core/2024/03/05/introducing-plugin-dependencies-in-wordpress-6-5/).
19
19
20
20
Here's a (non-comprehensive) feature list:
21
21
@@ -29,10 +29,8 @@ Here's a (non-comprehensive) feature list:
* Browser (client-side only; experimental support for [Chrome's built-in AI APIs](https://developer.chrome.com/docs/ai/built-in-apis))
31
31
* Additional AI service integrations can be registered and will then be available in the same way as built-in ones
32
-
* WordPress Assistant chatbot is the single user-facing built-in feature the plugin comes with
33
-
* This effectively is a simple proof of concept of how the APIs the plugin provides can be used
34
-
* The chatbot feature is inactive by default and can easily be [enabled via filter](#how%20can%20i%20enable%20the%20wordpress%20assistant%20chatbot%20feature%3F)
35
-
* No other user-facing features will ever be added - that's a promise - because this is first and foremost an **infrastructure plugin** that other plugins can rely on
32
+
* AI Playground administration screen (in the Tools menu) allows exploring the different AI capabilities
33
+
* AI Services settings screen to configure services with API credentials
36
34
37
35
**Disclaimer:** The AI Services plugin is still in its early stages, with a limited feature set. As long as it is in a `0.x.y` version, there may be occasional breaking changes when using lower level parts of the API. Consider the plugin early access at this point, as there are lots of enhancements to add and polishing to do. A crucial part of that is shaping the APIs to make them easy to use and cover the different generative AI capabilities that the third party services offer in a uniform way. That's why your feedback is much appreciated!
38
36
@@ -174,7 +172,11 @@ Additionally, the [plugin documentation](https://github.com/felixarntz/ai-servic
174
172
175
173
= Usage =
176
174
177
-
You can configure the plugin with your AI service credentials using the _Settings > AI Services_ screen in the WP Admin menu.
175
+
Once the plugin is active, you will find a new _Settings > AI Services_ submenu in the WordPress administration menu. In there, you can configure your AI service API keys. After that, you can use the _Tools > AI Playground_ screen to explore the available AI capabilities of the different connected services.
176
+
177
+
If you have enabled the WordPress assistant chatbot via filter, you should see a small "Need help?" button in the lower right throughout WP Admin after you have configured at least one (valid) API key.
178
+
179
+
Please refer to the [plugin documentation](https://github.com/felixarntz/ai-services/tree/main/docs/README.md) for instructions on how you can actually use the AI capabilities of the plugin in your own projects.
178
180
179
181
== Frequently Asked Questions ==
180
182
@@ -206,7 +208,7 @@ Note that this filter does not allow you to change the `feature` parameter, as t
206
208
207
209
= How can I enable the WordPress Assistant chatbot feature?
208
210
209
-
There is a single user-facing built-in feature the plugin comes with, which is a simple WordPress Assistant chatbot, effectively acting as a proof of concept. Since the plugin is purely an infrastructure plugin that other plugins can use to access AI capabilities in WordPress, that chatbot feature is disabled by default.
211
+
There is a simple WordPress Assistant chatbot available as an experimental feature of the plugin, effectively acting as a proof of concept. Since the plugin is purely an infrastructure plugin that other plugins can use to access AI capabilities in WordPress, that chatbot feature is disabled by default.
210
212
211
213
If you want to test or use the chatbot, you can easily enable it via filter:
0 commit comments