mcp-core.php
1 day ago
mcp-oauth.php
1 month ago
mcp-rest.php
3 weeks ago
mcp.conf
1 year ago
mcp.js
8 months ago
mcp.md
8 months ago
mcp.php
1 week ago
wpai-connectors.php
2 months ago
wpai-gateway-availability.php
2 months ago
wpai-gateway-directory.php
2 months ago
wpai-gateway-image-model.php
2 months ago
wpai-gateway-model.php
2 months ago
wpai-gateway-providers.php
2 months ago
wpai-gateway.php
2 months ago
wpai-gateway-providers.php
117 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Per-id provider adapters. Each one is an AI Engine-backed class registered |
| 4 | * in AiClient under a specific provider id (anthropic, google, openai, …) so |
| 5 | * that `wp_ai_client_prompt()->using_provider('anthropic')` — wherever it |
| 6 | * appears in the WP AI framework — transparently routes through AI Engine. |
| 7 | * |
| 8 | * All subclasses share `Meow_MWAI_Labs_WPAI_Gateway_Model` for dispatch. They |
| 9 | * only differ in metadata (id, name, engine type) and are scoped to their |
| 10 | * matching engine type for the directory and availability check. |
| 11 | */ |
| 12 | |
| 13 | use WordPress\AiClient\Providers\AbstractProvider; |
| 14 | use WordPress\AiClient\Providers\Contracts\ModelMetadataDirectoryInterface; |
| 15 | use WordPress\AiClient\Providers\Contracts\ProviderAvailabilityInterface; |
| 16 | use WordPress\AiClient\Providers\DTO\ProviderMetadata; |
| 17 | use WordPress\AiClient\Providers\Enums\ProviderTypeEnum; |
| 18 | use WordPress\AiClient\Providers\Http\Enums\RequestAuthenticationMethod; |
| 19 | use WordPress\AiClient\Providers\Models\Contracts\ModelInterface; |
| 20 | use WordPress\AiClient\Providers\Models\DTO\ModelMetadata; |
| 21 | |
| 22 | abstract class Meow_MWAI_Labs_WPAI_Gateway_Provider_Base extends AbstractProvider { |
| 23 | |
| 24 | /** Provider id, e.g. 'anthropic'. Must match the AI Engine engine type. */ |
| 25 | abstract protected static function provider_id(): string; |
| 26 | |
| 27 | /** Human-readable name, e.g. 'Anthropic'. */ |
| 28 | abstract protected static function provider_name(): string; |
| 29 | |
| 30 | /** Anchor URL for "where to get a key" (nullable). */ |
| 31 | protected static function credentials_url(): ?string { return null; } |
| 32 | |
| 33 | protected static function createModel( |
| 34 | ModelMetadata $modelMetadata, |
| 35 | ProviderMetadata $providerMetadata |
| 36 | ): ModelInterface { |
| 37 | foreach ( $modelMetadata->getSupportedCapabilities() as $cap ) { |
| 38 | if ( $cap->isImageGeneration() ) { |
| 39 | return new Meow_MWAI_Labs_WPAI_Gateway_ImageModel( $modelMetadata, $providerMetadata ); |
| 40 | } |
| 41 | } |
| 42 | return new Meow_MWAI_Labs_WPAI_Gateway_Model( $modelMetadata, $providerMetadata ); |
| 43 | } |
| 44 | |
| 45 | protected static function createProviderMetadata(): ProviderMetadata { |
| 46 | return new ProviderMetadata( |
| 47 | static::provider_id(), |
| 48 | static::provider_name(), |
| 49 | ProviderTypeEnum::cloud(), |
| 50 | static::credentials_url(), |
| 51 | RequestAuthenticationMethod::apiKey(), |
| 52 | /* translators: %s: provider name. */ |
| 53 | sprintf( __( '%s via AI Engine. Keys and dispatch are handled by the AI Engine plugin.', 'ai-engine' ), static::provider_name() ) |
| 54 | ); |
| 55 | } |
| 56 | |
| 57 | protected static function createProviderAvailability(): ProviderAvailabilityInterface { |
| 58 | return new Meow_MWAI_Labs_WPAI_Gateway_Availability( static::provider_id() ); |
| 59 | } |
| 60 | |
| 61 | protected static function createModelMetadataDirectory(): ModelMetadataDirectoryInterface { |
| 62 | return new Meow_MWAI_Labs_WPAI_Gateway_Directory( static::provider_id() ); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | class Meow_MWAI_Labs_WPAI_Gateway_Provider_Anthropic extends Meow_MWAI_Labs_WPAI_Gateway_Provider_Base { |
| 67 | protected static function provider_id(): string { return 'anthropic'; } |
| 68 | protected static function provider_name(): string { return 'Anthropic'; } |
| 69 | protected static function credentials_url(): ?string { return 'https://console.anthropic.com/settings/keys'; } |
| 70 | } |
| 71 | |
| 72 | class Meow_MWAI_Labs_WPAI_Gateway_Provider_OpenAI extends Meow_MWAI_Labs_WPAI_Gateway_Provider_Base { |
| 73 | protected static function provider_id(): string { return 'openai'; } |
| 74 | protected static function provider_name(): string { return 'OpenAI'; } |
| 75 | protected static function credentials_url(): ?string { return 'https://platform.openai.com/api-keys'; } |
| 76 | } |
| 77 | |
| 78 | class Meow_MWAI_Labs_WPAI_Gateway_Provider_Google extends Meow_MWAI_Labs_WPAI_Gateway_Provider_Base { |
| 79 | protected static function provider_id(): string { return 'google'; } |
| 80 | protected static function provider_name(): string { return 'Google'; } |
| 81 | protected static function credentials_url(): ?string { return 'https://aistudio.google.com/api-keys'; } |
| 82 | } |
| 83 | |
| 84 | class Meow_MWAI_Labs_WPAI_Gateway_Provider_Mistral extends Meow_MWAI_Labs_WPAI_Gateway_Provider_Base { |
| 85 | protected static function provider_id(): string { return 'mistral'; } |
| 86 | protected static function provider_name(): string { return 'Mistral'; } |
| 87 | protected static function credentials_url(): ?string { return 'https://console.mistral.ai/api-keys/'; } |
| 88 | } |
| 89 | |
| 90 | class Meow_MWAI_Labs_WPAI_Gateway_Provider_OpenRouter extends Meow_MWAI_Labs_WPAI_Gateway_Provider_Base { |
| 91 | protected static function provider_id(): string { return 'openrouter'; } |
| 92 | protected static function provider_name(): string { return 'OpenRouter'; } |
| 93 | protected static function credentials_url(): ?string { return 'https://openrouter.ai/keys'; } |
| 94 | } |
| 95 | |
| 96 | class Meow_MWAI_Labs_WPAI_Gateway_Provider_Perplexity extends Meow_MWAI_Labs_WPAI_Gateway_Provider_Base { |
| 97 | protected static function provider_id(): string { return 'perplexity'; } |
| 98 | protected static function provider_name(): string { return 'Perplexity'; } |
| 99 | protected static function credentials_url(): ?string { return 'https://www.perplexity.ai/settings/api'; } |
| 100 | } |
| 101 | |
| 102 | class Meow_MWAI_Labs_WPAI_Gateway_Provider_Replicate extends Meow_MWAI_Labs_WPAI_Gateway_Provider_Base { |
| 103 | protected static function provider_id(): string { return 'replicate'; } |
| 104 | protected static function provider_name(): string { return 'Replicate'; } |
| 105 | protected static function credentials_url(): ?string { return 'https://replicate.com/account/api-tokens'; } |
| 106 | } |
| 107 | |
| 108 | class Meow_MWAI_Labs_WPAI_Gateway_Provider_Ollama extends Meow_MWAI_Labs_WPAI_Gateway_Provider_Base { |
| 109 | protected static function provider_id(): string { return 'ollama'; } |
| 110 | protected static function provider_name(): string { return 'Ollama'; } |
| 111 | } |
| 112 | |
| 113 | class Meow_MWAI_Labs_WPAI_Gateway_Provider_Azure extends Meow_MWAI_Labs_WPAI_Gateway_Provider_Base { |
| 114 | protected static function provider_id(): string { return 'azure'; } |
| 115 | protected static function provider_name(): string { return 'Azure OpenAI'; } |
| 116 | } |
| 117 |