Skip to content

Commit a136c1c

Browse files
committed
Expand readme and documentation to reference the new AI Playground screen.
1 parent b667611 commit a136c1c

5 files changed

+24
-22
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Makes AI centrally available in WordPress, whether via PHP, REST API, JavaScript
66

77
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.
88

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/).
1010

1111
**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!
1212

@@ -135,7 +135,9 @@ Once the AI Services plugin is installed and activated, you can configure the pl
135135

136136
## Using the plugin
137137

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.
139141

140142
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.
141143

docs/Enabling-the-Assistant-Chatbot-Feature.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Enabling the Assistant Chatbot Feature
44

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.
66

77
If you want to test or use the chatbot, you can easily enable it via filter:
88

docs/Introduction-to-AI-Services.md

+9-11
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,17 @@
55
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:
66

77
* 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
1111
* Built-in AI service implementations
12-
* [Anthropic (Claude)](https://www.anthropic.com/claude)
13-
* [Google (Gemini)](https://ai.google.dev/gemini-api)
14-
* [OpenAI (ChatGPT)](https://openai.com/chatgpt/)
15-
* Browser (client-side only; experimental support for [Chrome's built-in AI APIs](https://developer.chrome.com/docs/ai/built-in-apis))
12+
* [Anthropic (Claude)](https://www.anthropic.com/claude)
13+
* [Google (Gemini)](https://ai.google.dev/gemini-api)
14+
* [OpenAI (ChatGPT)](https://openai.com/chatgpt/)
15+
* Browser (client-side only; experimental support for [Chrome's built-in AI APIs](https://developer.chrome.com/docs/ai/built-in-apis))
1616
* 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
2119

2220
## Technical concepts
2321

includes/Chatbot/Chatbot_Loader.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function can_load(): bool {
4848
/**
4949
* Filters whether the chatbot is enabled.
5050
*
51-
* The chatbot is the only user-facing feature built into this plugin, effectively as a small proof of concept,
51+
* The chatbot is an experimental feature built into this plugin, effectively as a small proof of concept,
5252
* since otherwise it is an infrastructure plugin. It is disabled by default, but can be enabled by using this
5353
* filter.
5454
*

readme.txt

+9-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Makes AI centrally available in WordPress, whether via PHP, REST API, JavaScript
1515

1616
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.
1717

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/).
1919

2020
Here's a (non-comprehensive) feature list:
2121

@@ -29,10 +29,8 @@ Here's a (non-comprehensive) feature list:
2929
* [OpenAI (ChatGPT)](https://openai.com/chatgpt/)
3030
* Browser (client-side only; experimental support for [Chrome's built-in AI APIs](https://developer.chrome.com/docs/ai/built-in-apis))
3131
* 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
3634

3735
**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!
3836

@@ -174,7 +172,11 @@ Additionally, the [plugin documentation](https://github.com/felixarntz/ai-servic
174172

175173
= Usage =
176174

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.
178180

179181
== Frequently Asked Questions ==
180182

@@ -206,7 +208,7 @@ Note that this filter does not allow you to change the `feature` parameter, as t
206208

207209
= How can I enable the WordPress Assistant chatbot feature?
208210

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.
210212

211213
If you want to test or use the chatbot, you can easily enable it via filter:
212214

0 commit comments

Comments
 (0)