| @@ -515,9 +515,8 @@ | ||
| 515 | 515 | <?php |
| 516 | 516 | $content_model = $options['content_model'] ?? ($options['model'] ?? 'gpt-5.1-chat-latest'); |
| 517 | 517 | $models = array( |
| 518 | 518 | 'OpenAI' => array( |
| 519 | - 'gpt-5.5' => 'GPT-5.5', | |
| 520 | 519 | 'gpt-5.4' => 'GPT-5.4', |
| 521 | 520 | 'gpt-5.2' => 'GPT-5.2', |
| 522 | 521 | 'gpt-5.1-chat-latest' => 'GPT-5.1', |
| 523 | 522 | 'gpt-5' => 'GPT-5', |
| @@ -522,25 +521,15 @@ | ||
| 522 | 521 | 'gpt-5.1-chat-latest' => 'GPT-5.1', |
| 523 | 522 | 'gpt-5' => 'GPT-5', |
| 524 | 523 | ), |
| 525 | 524 | 'Anthropic' => array( |
| 526 | - 'claude-fable-5' => 'Claude Fable 5', | |
| 527 | - 'claude-opus-4-8' => 'Claude Opus 4.8', | |
| 528 | - 'claude-opus-4-7' => 'Claude Opus 4.7', | |
| 529 | 525 | 'claude-opus-4-6' => 'Claude Opus 4.6', |
| 530 | - 'claude-sonnet-5' => 'Claude Sonnet 5', | |
| 531 | 526 | 'claude-sonnet-4-6' => 'Claude Sonnet 4.6', |
| 532 | 527 | 'claude-haiku-4-5-20251001' => 'Claude Haiku 4.5', |
| 533 | 528 | ), |
| 534 | 529 | 'Google' => array( |
| 535 | - 'gemini-3.5-flash' => 'Gemini 3.5 Flash', | |
| 536 | - 'gemini-3.1-pro-preview' => 'Gemini 3.1 Pro', | |
| 537 | - 'gemini-3-flash-preview' => 'Gemini 3 Flash', | |
| 538 | - 'gemini-3.1-flash-lite' => 'Gemini 3.1 Flash-Lite', | |
| 539 | - 'gemini-3.1-flash-lite-preview' => 'Gemini 3.1 Flash-Lite (Preview)', | |
| 540 | - 'gemini-2.5-pro' => 'Gemini 2.5 Pro', | |
| 541 | - 'gemini-2.5-flash' => 'Gemini 2.5 Flash', | |
| 542 | - 'gemini-2.5-flash-lite' => 'Gemini 2.5 Flash-Lite', | |
| 530 | + 'gemini-3-pro-preview' => 'Gemini 3 Pro', | |
| 531 | + 'gemini-2.5-pro' => 'Gemini 2.5 Pro', | |
| 543 | 532 | ), |
| 544 | 533 | 'xAI' => array( |
| 545 | 534 | 'grok-4-0709' => 'Grok 4', |
| 546 | 535 | 'grok-4-1-fast-non-reasoning' => 'Grok 4.1 Fast', |
| @@ -567,9 +556,8 @@ | ||
| 567 | 556 | <div class="mxch-field-control"> |
| 568 | 557 | <?php $image_model = $options['content_image_model'] ?? 'gpt-image-1.5'; ?> |
| 569 | 558 | <select id="mxch-image-model" data-field="content_image_model" class="mxch-cg-select"> |
| 570 | 559 | <optgroup label="<?php esc_attr_e('OpenAI', 'mxchat'); ?>"> |
| 571 | - <option value="gpt-image-2" <?php selected($image_model, 'gpt-image-2'); ?>><?php esc_html_e('GPT Image 2 (Latest)', 'mxchat'); ?></option> | |
| 572 | 560 | <option value="gpt-image-1.5" <?php selected($image_model, 'gpt-image-1.5'); ?>><?php esc_html_e('GPT Image 1.5', 'mxchat'); ?></option> |
| 573 | 561 | </optgroup> |
| 574 | 562 | <optgroup label="<?php esc_attr_e('xAI', 'mxchat'); ?>"> |
| 575 | 563 | <option value="grok-imagine-image-pro" <?php selected($image_model, 'grok-imagine-image-pro'); ?>><?php esc_html_e('Grok Imagine Pro', 'mxchat'); ?></option> |
| @@ -583,32 +571,8 @@ | ||
| 583 | 571 | </div> |
| 584 | 572 | <p class="mxch-field-description"><?php esc_html_e('Select the AI model used for generating images within your content.', 'mxchat'); ?></p> |
| 585 | 573 | </div> |
| 586 | 574 | |
| 587 | - <!-- Image Quality (GPT Image only) --> | |
| 588 | - <div class="mxch-field"> | |
| 589 | - <label class="mxch-field-label" for="mxch-image-quality"><?php esc_html_e('Image Quality', 'mxchat'); ?></label> | |
| 590 | - <div class="mxch-field-control"> | |
| 591 | - <?php $image_quality = $options['content_image_quality'] ?? 'auto'; ?> | |
| 592 | - <?php $quality_supported = (strpos($image_model, 'gpt-image') === 0); ?> | |
| 593 | - <select id="mxch-image-quality" data-field="content_image_quality" class="mxch-cg-select"<?php echo $quality_supported ? '' : ' disabled'; ?>> | |
| 594 | - <option value="auto" <?php selected($image_quality, 'auto'); ?>><?php esc_html_e('Auto (default)', 'mxchat'); ?></option> | |
| 595 | - <option value="low" <?php selected($image_quality, 'low'); ?>><?php esc_html_e('Low (fastest, cheapest)', 'mxchat'); ?></option> | |
| 596 | - <option value="medium" <?php selected($image_quality, 'medium'); ?>><?php esc_html_e('Medium', 'mxchat'); ?></option> | |
| 597 | - <option value="high" <?php selected($image_quality, 'high'); ?>><?php esc_html_e('High (best, slowest)', 'mxchat'); ?></option> | |
| 598 | - </select> | |
| 599 | - </div> | |
| 600 | - <p class="mxch-field-description"><?php esc_html_e('Quality control for OpenAI GPT Image models only. Grok Imagine and Gemini image models ignore this setting (their APIs do not expose an equivalent parameter).', 'mxchat'); ?></p> | |
| 601 | - </div> | |
| 602 | - <script>(function(){ | |
| 603 | - var m = document.getElementById('mxch-image-model'); | |
| 604 | - var q = document.getElementById('mxch-image-quality'); | |
| 605 | - if (!m || !q || q._wired) { return; } q._wired = true; | |
| 606 | - function sync(){ q.disabled = (m.value || '').indexOf('gpt-image') !== 0; } | |
| 607 | - m.addEventListener('change', sync); | |
| 608 | - sync(); | |
| 609 | - })();</script> | |
| 610 | - | |
| 611 | 575 | <!-- Enable Image Generation --> |
| 612 | 576 | <div class="mxch-field"> |
| 613 | 577 | <label class="mxch-toggle"> |
| 614 | 578 | <?php $enable_images = $options['content_enable_images'] ?? 'on'; ?> |
| @@ -617,35 +581,8 @@ | ||
| 617 | 581 | <span class="mxch-toggle-label"><?php esc_html_e('Enable Image Generation', 'mxchat'); ?></span> |
| 618 | 582 | </label> |
| 619 | 583 | <p class="mxch-field-description"><?php esc_html_e('When enabled, AI will generate and place images throughout your content. When disabled, pages are generated with text-only layouts.', 'mxchat'); ?></p> |
| 620 | 584 | </div> |
| 621 | - | |
| 622 | - <!-- Images per Article --> | |
| 623 | - <div class="mxch-field"> | |
| 624 | - <label class="mxch-field-label" for="mxch-image-count"><?php esc_html_e('Images per Article', 'mxchat'); ?></label> | |
| 625 | - <div class="mxch-field-control"> | |
| 626 | - <?php $image_count = max(1, min(5, (int) ($options['content_image_count'] ?? 3))); ?> | |
| 627 | - <?php $images_on = ($options['content_enable_images'] ?? 'on') === 'on'; ?> | |
| 628 | - <div class="mxch-cg-slider-row"> | |
| 629 | - <input type="range" min="1" max="5" step="1" value="<?php echo esc_attr($image_count); ?>" | |
| 630 | - data-field="content_image_count" id="mxch-image-count" class="mxch-cg-slider"<?php echo $images_on ? '' : ' disabled'; ?>> | |
| 631 | - <span id="mxch-image-count-val" class="mxch-cg-slider-value"><?php echo esc_html($image_count); ?></span> | |
| 632 | - </div> | |
| 633 | - </div> | |
| 634 | - <p class="mxch-field-description"><?php esc_html_e('How many images to generate and place in each article (1–5). Default 3. The AI may generate fewer if the article has few sections suited to imagery.', 'mxchat'); ?></p> | |
| 635 | - </div> | |
| 636 | - <script>(function(){ | |
| 637 | - var s = document.getElementById('mxch-image-count'); | |
| 638 | - var v = document.getElementById('mxch-image-count-val'); | |
| 639 | - if (!s || !v || s._wired) { return; } s._wired = true; | |
| 640 | - s.addEventListener('input', function(){ v.textContent = s.value; }); | |
| 641 | - var e = document.querySelector('[data-field="content_enable_images"]'); | |
| 642 | - if (e) { | |
| 643 | - var syncCount = function(){ s.disabled = !e.checked; }; | |
| 644 | - e.addEventListener('change', syncCount); | |
| 645 | - syncCount(); | |
| 646 | - } | |
| 647 | - })();</script> | |
| 648 | 585 | |
| 649 | 586 | <!-- Internal Linking (Pro) --> |
| 650 | 587 | <div class="mxch-field mxch-cg-pro-field<?php echo $pro_internal_linking ? '' : ' mxch-cg-pro-locked'; ?>"> |
| 651 | 588 | <label class="mxch-toggle"> |