ai_optimization_llm_response
Retrieve structured AI responses from models like Claude, Gemini, or ChatGPT for SEO optimization tasks, with web search capability for current information.
Instructions
This endpoint allows you to retrieve structured responses from a specific AI model, based on the input parameters
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| llm_type | Yes | type of llm. Must be one of: 'claude', 'gemini', 'chat_gpt', 'perplexity' | |
| user_prompt | Yes | Prompt for the AI model. The question or task you want to send to the AI model. You can specify up to 500 characters in the user_prompt field | |
| model_name | Yes | name of the AI model. consists of the actual model name and version name. if not sure which model to use, first call the ai_optimization_llm_models tool to get list of available models for the specified llm_type | |
| temperature | No | randomness of the AI response optional field higher values make output more diverse; lower values make output more focused; | |
| top_p | No | diversity of the AI response, optional field, controls diversity of the response by limiting token selection; | |
| web_search | No | enable web search for current information. When enabled, the AI model can access and cite current web information; |