AI Services

Description

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.

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.

Here’s a (non-comprehensive) feature list:

  • Abstraction layer and APIs to communicate with any AI service in a uniform way
    • APIs are available in both PHP and in JavaScript, as well as via the WordPress REST API and WP-CLI commands
    • Currently supports the following AI capabilities (with more on the way!):
    • text generation (including text streaming for more immediate feedback to users)
    • text chats with history
    • multimodal input
    • function calling
    • image generation
  • AI Playground administration screen (in the Tools menu) allows exploring the different AI capabilities
    • Explore all AI capabilities supported by the plugin via user interface
    • Select which AI service and model to use and set a few advanced configuration parameters
    • Define your own function declarations used for AI function calling
    • Generate images and save them to the WordPress media library
    • Exchange the AI service or model on the fly to continue a chat started with one model with another one
  • AI Services settings screen to configure services with API credentials
  • Built-in AI service implementations
  • Additional AI service integrations can be registered and will then be available in the same way as built-in ones

Disclaimer: The AI Services plugin is still in its early stages, with a limited feature set and more being added. A crucial part of refining the plugin is shaping the APIs to make them easy to use and cover the different generative AI capabilities that the AI services offer in a uniform way. That’s why your feedback is much appreciated!

Why?

  • A centralized AI infrastructure facilitates user choice. Users may prefer certain AI services over other ones, and for many common tasks, either of the popular AI services is suitable. Having a common API regardless of the AI service allows leaving the choice to the user, rather than the plugin author.
  • Since the centralized AI infrastructure comes with a common API that works the same for every AI service, it means plugin developers don’t have to spend as much time familiarizing themselves with different services, at least when it comes to simple tasks. For tasks where certain services may have advantages over others, there is still flexibility to focus on a specific AI service.
  • It also means no more reinventing the wheel: Since most AI services do not provide PHP SDKs for their APIs, many times this means WordPress plugins that want to leverage AI have to implement their own layer around the service’s API. Not only is that time consuming, it also distracts from working on the actual (AI driven) features that the plugin should offer to its users. In fact this directly facilitates the user choice aspect mentioned, as having APIs for various AI services already provided means you can simply make those available to your plugin users.
  • Having central AI infrastructure available unlocks AI capabilities for smaller plugins or features: It may not be worth the investment to implement a whole AI API layer for a simple AI driven feature, but when you already have it available, it can lead to more plugins (and thus more users) benefitting from AI capabilities.
  • Last but not least, a central AI infrastructure means users will only have to configure the AI API once, e.g. paste their API keys only in a single WordPress administration screen. Without central AI infrastructure, every plugin has to provide its own UI for pasting API keys, making the process more tedious for site owners the more AI capabilities their site uses.

Integration with third party services

While the plugin APIs allow registering custom AI services, the plugin comes with a few popular AI services built-in. These AI services rely on the respective third party API. Their use is optional and it is up to you to choose which third party service you would like to use or whether you would like to use multiple.

The use of the third party AI services is subject to the respective terms of service. The following third party services are supported out of the box:

Code examples for using the API

Generate the answer to a prompt in PHP code:

use Felix_Arntz\AI_Services\Services\API\Enums\AI_Capability;
use Felix_Arntz\AI_Services\Services\API\Helpers;

if ( ai_services()->has_available_services() ) {
    $service = ai_services()->get_available_service();
    try {
        $candidates = $service
            ->get_model(
                array(
                    'feature'      => 'my-test-feature',
                    'capabilities' => array( AI_Capability::TEXT_GENERATION ),
                )
            )
            ->generate_text( 'What can I do with WordPress?' );

        $text = Helpers::get_text_from_contents(
            Helpers::get_candidate_contents( $candidates )
        );

        echo $text;
    } catch ( Exception $e ) {
        // Handle the exception.
    }
}

Generate the answer to a prompt in JavaScript code:

const helpers = aiServices.ai.helpers;
const { hasAvailableServices, getAvailableService } = wp.data.select( 'ai-services/ai' );
if ( hasAvailableServices() ) {
    const service = getAvailableService();
    try {
        const candidates = await service.generateText(
            'What can I do with WordPress?',
            { feature: 'my-test-feature' }
        );

        const text = helpers.getTextFromContents(
                helpers.getCandidateContents( candidates )
            );

        console.log( text );
    } catch ( error ) {
        // Handle the error.
    }
}

Generate the answer to a prompt using WP-CLI:

wp ai-services generate-text "What can I do with WordPress?" --feature=my-test-feature

You can also use a specific AI service, if you have a preference, for example the google service.

Generate the answer to a prompt using a specific AI service, in PHP code:

use Felix_Arntz\AI_Services\Services\API\Enums\AI_Capability;
use Felix_Arntz\AI_Services\Services\API\Helpers;

if ( ai_services()->is_service_available( 'google' ) ) {
    $service = ai_services()->get_available_service( 'google' );
    try {
        $candidates = $service
            ->get_model(
                array(
                    'feature'      => 'my-test-feature',
                    'capabilities' => array( AI_Capability::TEXT_GENERATION ),
                )
            )
            ->generate_text( 'What can I do with WordPress?' );

        $text = Helpers::get_text_from_contents(
            Helpers::get_candidate_contents( $candidates )
        );

        echo $text;
    } catch ( Exception $e ) {
        // Handle the exception.
    }
}

For complete examples such as entire plugins built on top of the AI Services infrastructure, please see the examples directory on GitHub.

Additionally, the plugin documentation provides granular examples including explainers.

Screenshots

  • The AI Services settings screen where users can paste their AI service credentials
  • Multimodal text generation in the AI Playground where users can explore the different AI model capabilities
  • Image generation in the AI Playground where users can explore the different AI model capabilities

Installation

Installation from within WordPress

  1. Visit Plugins > Add New.
  2. Search for AI Services.
  3. Install and activate the AI Services plugin.

Manual installation

  1. Upload the entire ai-services folder to the /wp-content/plugins/ directory.
  2. Visit Plugins.
  3. Activate the AI Services plugin.

Usage

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.

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.

Please refer to the plugin documentation for instructions on how you can actually use the AI capabilities of the plugin in your own projects.

FAQ

How can I customize AI Services model parameters?

You can use the ai_services_model_params filter in PHP to customize the model parameters before they are used to retrieve a given AI service model.

This filter is run consistently in any context, regardless of whether the AI model is used via PHP, JavaScript, or WP-CLI.

This can be helpful, for example, if you need to inject custom model configuration parameters or a custom system instruction for a specific feature in a way that it happens dynamically on the server.

Here is an example code snippet which injects a custom system instruction whenever the feature my-movie-expert is used with any google model:

add_filter(
    'ai_services_model_params',
    function ( $params, $service ) {
        if ( 'my-movie-expert' === $params['feature'] && 'google' === $service ) {
            $params['systemInstruction']  = 'You are a movie expert. You can answer questions about movies, actors, directors, and movie references.';
            $params['systemInstruction'] .= ' If the user asks you about anything unrelated to movies, you should politely deny the request.';
            $params['systemInstruction'] .= ' You may use famous movie quotes in your responses to make the conversation more engaging.';
        }
        return $params;
    },
    10,
    2
);

Note that this filter does not allow you to change the feature parameter, as that needs to be controlled by the caller.

How can I enable the WordPress Assistant chatbot feature?

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.

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

add_filter( 'ai_services_chatbot_enabled', '__return_true' );

How can I tweak the WP-CLI commands’ behavior?

The wp ai-services generate-text command streams text responses by default. This can help provide more immediate feedback to the user, since chunks with partial response candidates will be available iteratively while the model still processes the remainder of the response.

An exception where it does not stream the response, but returns it all at once is if any function declarations are present.

If you prefer to show the complete text response in one go instead, you can disable streaming in WP-CLI by using the ai_services_wp_cli_use_streaming filter.

add_filter( 'ai_services_wp_cli_use_streaming', '__return_false' );

How can I programmatically provide service API keys?

If you prefer to not expose the sensitive controls over the AI service API keys to the site’s end users, you can programmatically specify the keys by filtering the relevant service’s option value.

For example, to enforce an API key to use for the Google AI service, you could use a code snippet like the following:

add_filter(
    'pre_option_ais_google_api_key',
    function () {
        return 'my-google-api-key';
    }
);

The same approach works for any other services too. Simply use the correct service slug, e.g. openai for the OpenAI integration and anthropic for the Anthropic integration.

Which user capabilities are available and how can I customize them?

Please see the documentation article on customizing the available plugin capabilities.

Should this be in WordPress Core?

Probably not? At least not yet. While generative AI has been around for a few years, in the grand scheme of things we are still only scratching the surface of what’s possible. But most importantly, the lack of standardization makes it difficult to consider built-in AI support in WordPress Core.

WordPress Core rarely adds support for features that rely on third party services. An exception is oEmbed support for many popular services, however via the common oEmbed endpoint that each service implements there is a standard way to have it work correctly without having to individually maintain each integration. Doing so would be a maintenance burden and it would make it almost impossible to stay on top of everything: Imagine one of the services makes a change – not only would this require to manually update the WordPress Core integration, but it would also require to quickly ship a new release ASAP because otherwise the WordPress sites using the service would break. Unfortunately, there is no such standard for how generative AI APIs provided by third party services should work. In other words, if you implement support for a generative AI API in your plugin, that implementation is subject to the same concern, and it applies to the AI Services plugin too. However, by centralizing the implementation in one plugin, the problem surface is greatly reduced. And differently from WordPress Core, it’s more straightforward and more reasonable to ship a quick hotfix for this plugin.

The other reason that integrating generative AI in WordPress Core would be difficult is because (almost all) the services that make those APIs available require paid subscriptions. This is not well aligned with WordPress’s FOSS philosophy. A potentially promising development that may change that situation is the introduction of browser built-in AI capabilities made available via JavaScript APIs, such as Chrome built-in AI (which is also supported by the AI Services plugin).

Only time will tell whether those points can be addressed in a way that make built-in AI capabilities in WordPress Core a possibility. Until then, you can use a plugin like this one. While it is for obvious reasons not a WordPress Core feature plugin, it is in many ways built to potentially become a canonical AI plugin for WordPress:

  • It is free, and always will be.
  • It follows the WordPress Core philosophies.
  • It uses WordPress UI components as much as possible.
  • It is neutral and does not favor one AI service over another.

Where should I submit my support request?

For regular support requests, please use the www.remarpro.com support forums. If you have a technical issue with the plugin where you already have more insight on how to fix it, you can also open an issue on GitHub instead.

How can I contribute to the plugin?

If you have ideas to improve the plugin or to solve a bug, feel free to raise an issue or submit a pull request in the GitHub repository for the plugin. Please stick to the contributing guidelines.

You can also contribute to the plugin by translating it. Simply visit translate.www.remarpro.com to get started.

Reviews

There are no reviews for this plugin.

Contributors & Developers

“AI Services” is open source software. The following people have contributed to this plugin.

Contributors

Translate “AI Services” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

0.5.0

Features:

  • Introduce image generation support in PHP and JavaScript. (6c3b328)
  • Introduce tool support and implement function calling in PHP and JavaScript. (e84040c)
  • Introduce history persistence API in both PHP and JavaScript, to persistently save AI message histories in user meta. (90e69b5)
  • Allow generating images in AI Playground. (8b1902e)
  • Allow uploading images and other media generated via AI Playground to the WordPress media library. (a00af05)
  • Allow creating and managing function declarations for AI function calling in AI Playground. (abe6688)
  • Allow sending function responses after receiving a function call in AI Playground. (e16ab32)
  • Add WP-CLI command wp ai-services generate-image to generate images via the command line. (599ce48)
  • Add support for passing multimodal prompt via attachment to WP-CLI command. (4d2f320)
  • Allow passing function declarations to WP-CLI generate-text command. (f56b54b)

Enhancements:

  • Implement image generation support for Google and OpenAI services. (511571b)
  • Implement function calling tool support for Anthropic, Google, and OpenAI services. (d47efef)
  • Enhance AI Playground to save messages persistently using new history persistence API instead of session storage. (919f26b)
  • Enhance AI Playground service selection accessibility by announcing to screen readers when model selection was cleared. (a3d7676)
  • Enhance AI Playground chat messages accessibility by using log role. (48a35c3)
  • Enhance function declarations modal accessibility by using tab semantics for navigating through the function declarations. (94e8494)
  • Show text instead of icon to clarify reset messages button purpose. (843fef5)
  • Centrally handle candidate count default of 1 to avoid wasted resources. (568502a)
  • Implement several helper API methods related to dealing with binary files, blobs, and data URLs. (a05d685)
  • Use new Anthropic API models endpoint to fetch available models remotely. (a3fae90)
  • Show admin pointers to inform new users about where to configure AI Services and the ability to explore in the AI Playground. (4d7a169)
  • Simplify plugin settings link implementation by using abstraction from library. (d77858a)
  • Implement plugin action link and admin pointer for settings page. (6566c77)
  • Set default request timeout for image generation to 30 seconds. (1cc086a)
  • Ensure that prompts with history are rejected if the model does not support chat history. (bd01db0)
  • Explicitly implement With_Text_Generation interface in text generation model classes. (26985a3)
  • Implement Abstract_AI_Model class and use it as foundation for service-specific model classes. (3f998d9)
  • Deprecate service-specific AI_Model classes in favor of new AI_Text_Generation_Model classes. (2f474aa)
  • Deprecate Generation_Config class in favor of new Text_Generation_Config class. (d39c135)
  • Pass service slug to ai_services_model_params filter. Props mslinnea. (#23)
  • Update Google service to prefer newer gemini-2.0 models over older gemini-1.5 models. (b01dc0b)
  • Update OpenAI service to prefer newer gpt-4o models over more expensive gpt-4 models and older gpt-3.5 models. (9b14367)
  • Update Anthropic service to prefer newer claude-3.5 models over claude-3 models. (04f1896)
  • Remove requirement of global --user argument for WP-CLI commands. Props swissspidy. (cd25081, #25)
  • Display model name above AI Playground responses if available. (04c673a)
  • Implement new reusable components for common AI Playground use-cases and use Flex component in AI Playground where applicable. (7c4f5d2)
  • Implement new helper functions to create a multimodal Content object from a prompt and media file, and to get the base64 data URL for a file. (e664197)
  • Make Parts component publicly available via aiServices.components. (3994156)
  • Expand available AI capabilities to include FUNCTION_CALLING and add support to applicable services and models. (4dc570a)
  • Include name field in models data, retrieving it from the service API where available. (40c4351)
  • Alter return shape of Generative_AI_Service::list_models() method in PHP, for a consistent model data shape across PHP and JavaScript. (a9193f9)
  • Implement new helper function to get content object with text from a list of content objects. (cf77062)

Bug Fixes:

  • Fix bug where messages container in AI Playground could sometimes infinitely continue to scroll towards the bottom. (f69fd30)
  • Fix AI capabilities missing from OpenAI o1 models. (94086b4)
  • Fix model response candidates to no longer include duplicate data that could inflate response size. (3fc8422)
  • Fix region navigation after @wordpress/interface package update. (88d2c13)
  • Fix limited data URL regex to support MIME types that contain numbers or hyphens. (c00e8be)
  • Fix incorrect model capabilities being indicated for legacy Anthropic and legacy Google AI models. (4cbabab)
  • Fix API request options not being passed in Generative_AI_Service::list_models() implementations. (f50e46f)
  • Fix bug in Service_Entity_Query::count() method. (08cb9ba)

Documentation:

  • Expand PHP, JS, and WP-CLI documentation to cover how to generate images. (34689f9)
  • Include documentation on how to use function calling in both PHP and JavaScript. (4ded68f)
  • Include intro section in JavaScript API documentation on how to enqueue the API. (366d7ea)
  • Expand WP-CLI command documentation to cover how to send multimodal prompts and handle function calling. (b7dd38b)

0.4.0

Features:

  • Add AI Playground screen which allows to explore services and models with their configurations and behaviors. (1495994)
  • Add REST route and expand ai-services/ai store to provide general plugin data and user capabilities for JavaScript consumption. (83d770c)

Enhancements:

  • Ensure AI playground message data can be stored in session storage by avoiding to include inline data for attachments. (b667611, 7d346a2)
  • Implement store infrastructure to manage panel state and persist open/closed AI playground panels. (89572e8)
  • Implement AI playground panel to allow customizing most commonly supported AI model config parameters. (27ea03f)
  • Support providing message history alongside new prompt in AI playground. (33c54cc)
  • Allow to reset the list of messages in the AI playground. (9537986)
  • Persist messages from AI playground in session storage. (60c45d9)
  • Expand interface package with store for easier abstraction and a new Modal component. (5ee0e20)
  • Implement playground UI to select an attachment from the media library to provide as multimodal input. (dbad8d3)
  • Enhance playground input by allowing arrow navigation to access previous messages and automatically focusing on it. (f44efa5)
  • Implement keyboard shortcut to toggle system instruction. (66f990d)
  • Automatically scroll to latest messages as new messages arrive. (c8f3746)
  • Implement getServiceName and getServiceCredentialsUrl selectors in ai-services/ai store for parity with PHP API. (d9ca118)
  • Implement store ai-services/ai-playground for new AI playground screen. (96f5b45)
  • Use newer ai.languageModel property for Chrome built-in AI, continuing to support ai.assistant for backward compatibility. (0f52227)
  • Remove unused option. (28a864a)
  • Ensure service options are set to (temporarily) not autoload when plugin gets deactivated. (4841d5b)

Bug Fixes:

  • Fix AI playground automatic message scrolling to correctly function with multiple quick subsequent updates. (50f40fe)
  • Fix sidebar toggle button being hidden on mobile. (9d44650)
  • Fix bugs with sidebar handling and support keyboard shortcut in interface abstraction. (cf7b926)

Documentation:

  • Add documentation about the available user capabilities and how to customize them. (a1d972b)
  • Expand readme and documentation to reference the new AI Playground screen. (a136c1c)

0.3.0

Features:

  • Add text streaming support to generative models in JavaScript. (9967db5, #3)
  • Introduce REST route to stream generate text, using an event stream. (071a664, #3)
  • Add text streaming support to all built-in services Anthropic, Google, OpenAI. (e27697a, #3)
  • Introduce API foundation for streaming text responses. (9476333)

Enhancements:

  • Polish and complete implementation of Chrome browser built-in AI integration. (1beb2c5, #6)
  • Support text streaming in chat implementations in both PHP and JavaScript. (9e11c03, #3)
  • Use streaming by default for the built-in chatbot. (3f6266b)
  • Use streaming by default for WP-CLI text generation, customizable via filter. (f9be4ad)
  • Remove unnecessary console.log call for chatbot. (7637632)
  • Persist chatbot messages history in session storage. (a349274, #4)
  • Persist chatbot visibility across page loads. (81a0511, #4)
  • Include chatbot input label for screen reader users for better accessibility. (94026e5, #4)
  • Improve chatbot accessibility by focusing on input when the chatbot is opened. (7b5c6f4, #4)
  • Improve chatbot error handling by displaying technical errors as a chatbot response. (e57d716)
  • Show loading ellipsis in chatbot while generating text response. (db79515, #4)
  • Handle errors during browser AI session creation more gracefully. (0edd56f)
  • Consistently handle AI temperature parameter between services, expecting a value between 0.0 and 1.0. (e7ae611)
  • Improve error handling in chat store and built-in chatbot. (06b2340)
  • Expand AI capabilities with CHAT_HISTORY capability to differentiate between whether text generation models support history. (4c2feb4)
  • Provide helper function in PHP and JS to aggregate chunks from candidates stream into final candidates response. (a27bdf6, #3)
  • Ensure third-party production libraries are always backward compatible with minimum supported PHP version by separating tooling. (e4fe291)
  • Enhance JavaScript API with model instances for better parity with PHP API, while continuing to allow previous approach as short-hand syntax. (7992d6d)
  • Restructure JavaScript code into separate files per class. (cd8d90d)
  • Remove specific API client interface methods that should not be required for the interface. (140d7c1)
  • Allow candidates to have no content. (c072689)

Bug Fixes:

  • Remove prefix from base64 inline image data for Anthropic AI integration. Props mslinnea. (#19)
  • Fix bug in CandidatesStreamProcessor in JS, leading to stream responses to not being aggregated correctly. (969b554)
  • Fix OpenAI model definitions by restricting to gpt-4o models for multimodal support. Props mslinnea. (#18)
  • Split components package into distinct components and interface packages to better separate responsibilities and avoid JS warning outside of AI Services admin screen. Props westonruter. (056461c, #13)
  • Fix chatbot bug where unexpected AI response could lead to link button to contain unexpected label and overflow its container. (66f3578)
  • Fix UI warnings in WordPress 6.7 due to JS component updates. (6e8d231)
  • Fix failing Anthropic API requests when no generation config was provided. (33db20b)

Documentation:

  • Include documentation section about using browser built-in AI in JavaScript. (91c5be7, #6)
  • Expand documentation to explain how to customize model configuration. (930058a)
  • Expand documentation to cover how to use new text streaming capabilities in PHP and JS. (20d028b, #3)

0.2.0

Features:

  • Introduce ai_services_model_params filter to centrally customize AI service model parameters. (f36f35d)
  • Add enums to the public APIs in PHP and JavaScript, for now covering AI capabilities and content roles. (48dedc5)
  • Add WP-CLI support under ai-services namespace with commands list, get, list-models, and generate-text. (415edbc, #7)
  • Introduce helpers as object with useful functions in both PHP and JavaScript APIs. (98ae179, 7cf8a4d)
  • Introduce Generation_Config type class for safer and more consistent handling of model generation config data. (4e6925a)

Enhancements:

  • Add Settings link to plugin row actions. Props westonruter. (#12)
  • Remove unnecessary With_API_Client interface and related method. (f3dc6b4)
  • Move Felix_Arntz\AI_Services\Services\Types namespace to Felix_Arntz\AI_Services\Services\API\Types to indicate it is part of the public API. (5e34f7a)
  • Enhance content part classes by providing dedicated getter functions. (89ae723)
  • Move internal Service_Entity and Service_Entity_Query classes to their own namespace, since they are not only relevant for the REST API. (4ce7026)
  • Change built-in assistant chatbot feature to be opt-in rather than opt-out. (9279850, #15)
  • Rename ai-store asset to ai and settings-store asset to settings and adjust JS globals accordingly, keeping old ai-store asset and JS global available for backward compatibility. (fbe4916)
  • Strengthen prompt content validation and add support for OpenAI audio input. (350c85d)
  • Allow passing through arbitrary parameters to built-in service APIs. (81254f6)
  • Enhance generation config transformation to support equivalent arguments across the built-in service APIs for Anthropic, Google, and OpenAI. (69a99bf)
  • Validate feature model param in REST API and mark relevant parameters as required. (2032690)
  • Enhance chatbot to rely on feature identifier instead of custom property to inject model params. (962750b)
  • Consistently handle the Google-specific safetySettings model parameter, expecting an array of Safety_Setting instances. (a74e51c)
  • Allow passing system instruction as data array to REST endpoint. (7b4916a)
  • Use camelCase arguments for model params for more consistency with underlying APIs. (946c448)

Bug Fixes:

Documentation:

  • Update documentation to cover WP-CLI usage and latest API enhancements. (21ab225)
  • Improve documentation to cover how to process generative model responses. (c40c89d)

0.1.1

Bug Fixes:

  • Update Prompt API to latest shape. Props tomayac. (#11)
  • Fix bug preventing inline data to be processed by Google AI API. (cf57baf)
  • Fix OpenAI model configuration to only provide multimodal capabilities for GPT-4 models. (42ba79b)
  • Fix bug where REST endpoint to generate content did not accept content in its complex shape. (2e0687f)

0.1.0

VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17