wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_ai_client_prompt › WordPress Function

Seit7.0.0
Veraltetn/v
wp_ai_client_prompt ( $prompt = null )
Parameter:
  • (string|WordPressAiClientMessagesDTOMessagePart|WordPressAiClientMessagesDTOMessage|array|list<string|WordPressAiClientMessagesDTOMessagePart|array>|list<WordPressAiClientMessagesDTOMessage>|null) $prompt Optional. Initial prompt content. A string for simple text prompts, a MessagePart or Message object for structured content, an array for a message array shape, or a list of parts or messages for multi-turn conversations. Default null.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (WP_AI_Client_Prompt_Builder) The prompt builder instance.
Definiert in:
Codex:

Creates a new AI prompt builder using the default provider registry.

This is the main entry point for generating AI content in WordPress. It returns a fluent builder that can be used to configure and execute AI prompts. The prompt can be provided as a simple string for basic text prompts, or as more complex types for advanced use cases like multi-modal content or conversation history.


Quellcode

function wp_ai_client_prompt( $prompt = null ): WP_AI_Client_Prompt_Builder {
	return new WP_AI_Client_Prompt_Builder( AiClient::defaultRegistry(), $prompt );
}