PluginProbe
WPBot – AI ChatBot for Live Support, Lead Generation, WordPress Automation, AI Services / 8.5.6
WPBot – AI ChatBot for Live Support, Lead Generation, WordPress Automation, AI Services v8.5.6
8.7.7 8.7.6 8.7.5 8.7.4 8.7.3 8.7.2 8.7.1 8.7.0 8.6.9 8.6.8 8.6.7 8.6.6 8.6.5 8.6.4 8.6.2 8.6.1 8.6.0 8.5.9 8.5.8 8.5.7 8.5.6 8.5.5 8.5.4 8.5.3 8.5.2 All 533 releases
chatbot / includes / integration / openai / admin / admin_ui2.php

admin_ui2.php in WPBot – AI ChatBot for Live Support, Lead Generation, WordPress Automation, AI Services 8.5.6, at includes/integration/openai/admin/admin_ui2.php

45 lines 3.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 <div class="card-body p-sm-0">
3 <!-- <div class="alert alert-danger" role="alert">
4 <?php
5 if (!defined('ABSPATH')) exit; // Exit if accessed directly
6 // echo esc_html__('OpenAI has disabled some of the older models. Please use GPT 3.5 or 4 to Fine tune. You need to update the dataset and Fine tune again. Please check the Help section for details.', 'chatbot'); ?>
7 </div> -->
8 <ul class="nav nav-tabs">
9 <li class="active"><a data-toggle="tab" href="#wp-chatbot-openai-settings"><span class="wpwbot-admin-tab-icon "> <i class="dashicons dashicons-admin-generic"></i> </span><?php echo esc_html__('OpenAI settings', 'chatbot'); ?></a></li>
10 <li><a data-toggle="tab" href="#wp-chatbot-openai-rag"><span class="wpwbot-admin-tab-icon "> <i class="dashicons dashicons-admin-generic"></i> </span><?php echo esc_html__('RAG', 'chatbot'); ?></a></li>
11 <li><a data-toggle="tab" href="#wp-chatbot-img_generator"><span class="wpwbot-admin-tab-icon "> <i class="dashicons dashicons-format-gallery"></i> </span><?php echo esc_html__('AI Image Generator', 'chatbot'); ?></a></li>
12 <li><a data-toggle="tab" href="#wp-chatbot-content_writer"><span class="wpwbot-admin-tab-icon "> <i class="dashicons dashicons-format-status"></i> </span><?php echo esc_html__('AI Article Generator', 'chatbot'); ?></a></li>
13 <li><a data-toggle="tab" href="#wp-chatbot-openai-help"><span class="wpwbot-admin-tab-icon "> <i class="dashicons dashicons-editor-help"></i> </span><?php echo esc_html__('Help', 'chatbot'); ?></a></li>
14 </ul>
15
16 <div class="tab-content">
17 <div id="wp-chatbot-openai-settings" class="tab-pane in active">
18 <?php require_once(QCLD_wpCHATBOT_PLUGIN_DIR_PATH . 'includes/integration/openai/admin/settings.php'); ?>
19 </div>
20 <div id="wp-chatbot-openai-rag" class="tab-pane">
21 <?php
22 require_once(QCLD_wpCHATBOT_PLUGIN_DIR_PATH . 'includes/integration/openai/admin/openai-rag.php');
23 ?>
24 </div>
25 <div id="wp-chatbot-img_generator" class="tab-pane">
26 <div class="row">
27 <div class="col-xs-12">
28 <?php require_once(QCLD_wpCHATBOT_PLUGIN_DIR_PATH . 'includes/integration/openai/admin/img_generator.php' ); ?>
29 </div>
30 </div>
31 </div>
32 <div id="wp-chatbot-content_writer" class="tab-pane">
33 <div class="row">
34 <div class="col-xs-12">
35 <?php require_once(QCLD_wpCHATBOT_PLUGIN_DIR_PATH . 'includes/integration/openai/admin/content_writer.php' ); ?>
36 </div>
37 </div>
38 </div>
39 <div id="wp-chatbot-openai-help" class="tab-pane">
40 <?php require_once(QCLD_wpCHATBOT_PLUGIN_DIR_PATH . 'includes/integration/openai/admin/help.php' ); ?>
41 </div>
42 </div>
43 </div>
44
45