PluginProbe
WPBot – AI ChatBot for Live Support, Lead Generation, WordPress Automation, AI Services / 4.8.9
WPBot – AI ChatBot for Live Support, Lead Generation, WordPress Automation, AI Services v4.8.9
8.7.8 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 All 534 releases
← All changes | qcld-openai-bot.php +41 -49 8.7.44.8.9 View file →
@@ -1,21 +1,13 @@
1 -<!-- //not used -->
1 +
2 2 <div class="qcl-openai">
3 3 <div class="row gx-0">
4 4 <div class="col-xs-12">
5 - <div class="card admin-maxwith qcld-openai-main-box">
5 + <div class="card admin-maxwith">
6 6 <div class="card-header bg-dark text-white py-sm-4 border-0">
7 -
8 -
9 -
10 7 <div class="row">
11 8 <div class="col-auto me-auto">
12 - <h4>
13 - <?php
14 - if (!defined('ABSPATH')) exit; // Exit if accessed directly
15 - esc_html_e( 'OpenAI Settings','chatbot');
16 - ?>
17 - </h4>
9 + <h4><?php esc_html_e( 'OpenAI Settings','openai_addon');?></h4>
18 10 </div>
19 11 <div class="col-auto">
20 12 <!-- <img class="img-fluid" src="<?php //echo esc_url(QCLD_openai_addon_PLUGIN_URL.'image/logo.jpg'); ?>"/> -->
21 13 </div>
@@ -25,78 +17,78 @@
25 17 <div class="row g-0">
26 18 <div class="p-sm-3 bg-dark rl-col-custom"></div>
27 19 <div class="col-sm-10">
28 20 <div class="form-check form-switch my-4">
29 - <input class="form-check-input" type="checkbox" <?php echo esc_attr( (get_option( 'ai_enabled') == 1) ? 'checked' :'' );?> role="switch" value="" id="is_ai_enabled">
21 + <input class="form-check-input" type="checkbox" <?php echo (get_option( 'ai_enabled') == 1) ? 'checked' :'';?> role="switch" value="" id="is_ai_enabled">
30 22 <label class="form-check-label" for="is_ai_enabled">
31 - <?php esc_html_e( 'Enable OpenAI','chatbot');?>
23 + <?php esc_html_e( 'Enable Open AI','openai_addon');?>
32 24 </label>
33 25 </div>
34 26 <div class="form-check form-switch my-4">
35 - <input class="form-check-input" type="checkbox" <?php echo esc_attr( (get_option( 'ai_only_mode') == 1) ? 'checked' :'');?> role="switch" value="" id="is_ai_only_mode">
27 + <input class="form-check-input" type="checkbox" <?php echo (get_option( 'ai_only_mode') == 1) ? 'checked' :'';?> role="switch" value="" id="is_ai_only_mode">
36 28 <label class="form-check-label" for="is_ai_only_mode">
37 - <?php esc_html_e( 'Enable OpenAI only mode and hide other chatBot features','chatbot');?>
29 + <?php esc_html_e( 'Enable OpenAI only mode and hide other chatBot features','openai_addon');?>
38 30 </label>
39 31 </div>
40 32 <div class="mb-3">
41 - <label for="api_key" class="form-label"><?php esc_html_e( 'Api key','chatbot');?></label>
42 - <input type="text" class="form-control" id="api_key" name="api_key" placeholder="Api key" value="<?php echo esc_attr( get_option( 'open_ai_api_key') ); ?>">
33 + <label for="api_key" class="form-label"><?php esc_html_e( 'Api key','openai_addon');?></label>
34 + <input type="text" class="form-control" id="api_key" name="api_key" placeholder="Api key" value="<?php echo get_option( 'open_ai_api_key'); ?>">
43 35 </div>
44 36 <div class="mb-3">
45 - <label for="max_tokens" class="form-label"><?php esc_html_e( 'Max tokens (0-4000) Depending on the model','chatbot');?></label>
46 - <input id="max_tokens" class="form-control" type="text" name="max_tokens" value="<?php echo esc_attr( get_option( 'openai_max_tokens') ); ?>">
37 + <label for="max_tokens" class="form-label"><?php esc_html_e( 'Max tokens (0-4000) Depending on the model','openai_addon');?></label>
38 + <input id="max_tokens" class="form-control" type="text" name="max_tokens" value="<?php echo get_option( 'openai_max_tokens'); ?>">
47 39 </div>
48 40 <div class="mb-3">
49 - <div class="row gx-0"><div class="col-8"><label for="temperature" class="form-label"><?php esc_html_e( 'Temperature','chatbot');?></label></div><div class="col-4 me-auto text-end"><span name="temperatureout" id="temperatureout" ><?php echo esc_html( get_option( 'openai_temperature') ); ?></span></div></div>
50 - <input id="temperature" type="range" class="form-range" min="0" max="1" step="0.01" name="temperature" value="<?php echo esc_attr( get_option( 'openai_temperature') ); ?>" onchange="updateTemp(this.value);" />
51 - <label class="mb-3"><small><?php esc_html_e( 'Temperature is a value between 0 and 1 that essentially lets you control how confident the model should be when making these predictions','chatbot');?></small></label>
41 + <div class="row gx-0"><div class="col-8"><label for="temperature" class="form-label"><?php esc_html_e( 'Temperature','openai_addon');?></label></div><div class="col-4 me-auto text-end"><span name="temperatureout" id="temperatureout" ><?php echo get_option( 'openai_temperature'); ?></span></div></div>
42 + <input id="temperature" type="range" class="form-range" min="0" max="1" step="0.01" name="temperature" value="<?php echo get_option( 'openai_temperature'); ?>" onchange="updateTemp(this.value);" />
43 + <label class="mb-3"><small><?php esc_html_e( 'Temperature is a value between 0 and 1 that essentially lets you control how confident the model should be when making these predictions','openai_addon');?></small></label>
52 44 <span name="temperatureout" id="temperatureout" ><?php // echo get_option( 'openai_temperature'); ?></span>
53 45 </div>
54 46 <div class="mb-3">
55 - <div class="row gx-0"><div class="col-8"><label for="presence_penalty" class="form-label"><?php esc_html_e( 'Presence Penalty','chatbot');?></label></div><div class="col-4 me-auto text-end"><span id="presence_penalty_out" ><?php echo esc_html( get_option( 'presence_penalty') ); ?></span></div></div>
56 - <input id="presence_penalty" type="range" class="form-range" min="-2" max="2" step="0.1" name="presence_penalty" value="<?php echo esc_attr( get_option( 'presence_penalty') ); ?>">
57 - <p class="mb-3"><small><?php esc_html_e( 'Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model’s likelihood to talk about new topics.','chatbot');?></small></p>
47 + <div class="row gx-0"><div class="col-8"><label for="presence_penalty" class="form-label"><?php esc_html_e( 'Presence Penalty','openai_addon');?></label></div><div class="col-4 me-auto text-end"><span id="presence_penalty_out" ><?php echo get_option( 'presence_penalty'); ?></span></div></div>
48 + <input id="presence_penalty" type="range" class="form-range" min="-2" max="2" step="0.1" name="presence_penalty" value="<?php echo get_option( 'presence_penalty'); ?>">
49 + <p class="mb-3"><small><?php esc_html_e( 'Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model’s likelihood to talk about new topics.','openai_addon');?></small></p>
58 50 </div>
59 51 <div class="mb-3">
60 - <div class="row gx-0"><div class="col-8"><label for="frequency_penalty" class="form-label"><?php esc_html_e( 'Frequency penalty','chatbot');?></label></div><div class="col-4 me-auto text-end"><span id="frequency_penalty_out" ><?php echo esc_html( get_option( 'frequency_penalty') ); ?></span></div></div>
61 - <input id="frequency_penalty" type="range" class="form-range" min="-2" max="2" step="0.1" name="frequency_penalty" value="<?php echo esc_attr( get_option( 'frequency_penalty') ); ?>">
62 - <label><small><?php esc_html_e( 'Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model’s likelihood to repeat the same line verbatim.','chatbot');?></small></label>
52 + <div class="row gx-0"><div class="col-8"><label for="frequency_penalty" class="form-label"><?php esc_html_e( 'Frequency penalty','openai_addon');?></label></div><div class="col-4 me-auto text-end"><span id="frequency_penalty_out" ><?php echo get_option( 'frequency_penalty'); ?></span></div></div>
53 + <input id="frequency_penalty" type="range" class="form-range" min="-2" max="2" step="0.1" name="frequency_penalty" value="<?php echo get_option( 'frequency_penalty'); ?>">
54 + <label><small><?php esc_html_e( 'Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model’s likelihood to repeat the same line verbatim.','openai_addon','openai_addon');?></small></label>
63 55 </div>
64 56
65 57 <div class="mb-3">
66 - <label for="max_tokens" id="openai_engines" class="form-label"><?php esc_html_e( 'Engines','chatbot');?></label>
58 + <label for="max_tokens" id="openai_engines" class="form-label"><?php esc_html_e( 'Engines','openai_addon');?></label>
67 59 <select class="form-select" aria-label="Default select example" name="openai_engines" id="openai_engines">
68 - <option <?php echo esc_attr( ((get_option( 'openai_engines') == '') ? 'selected' : '') ); ?>><?php esc_html_e( 'Please select Engines','chatbot');?></option>
69 - <option value="text-davinci-003" <?php echo esc_attr( ((get_option( 'openai_engines') == 'text-davinci-003') ? 'selected' : '') ); ?>><?php esc_html_e( 'Davinci (GPT-3 model)','chatbot');?></option>
70 - <option value="text-davinci-001" <?php echo esc_attr( ((get_option( 'openai_engines') == 'text-davinci-001') ? 'selected' : '') ); ?>><?php esc_html_e( 'Davinci','chatbot');?></option>
71 - <option value="text-ada-001" <?php echo esc_attr( ((get_option( 'openai_engines') == 'text-ada-001') ? 'selected' : '') ); ?>><?php esc_html_e( 'Ada','chatbot');?></option>
72 - <option value="text-curie-001" <?php echo esc_attr( ((get_option( 'openai_engines') == 'text-curie-001') ? 'selected' : '') ); ?>><?php esc_html_e( 'Curie','chatbot');?></option>
73 - <option value="text-babbage-001" <?php echo esc_attr( ((get_option( 'openai_engines') == 'text-babbage-001') ? 'selected' : '' ) ); ?>><?php esc_html_e( 'Babbag','chatbot');?></option>
60 + <option <?php echo ((get_option( 'openai_engines') == '') ? 'selected' : '') ; ?>><?php esc_html_e( 'Please select Engines','openai_addon');?></option>
61 + <option value="text-davinci-003" <?php echo ((get_option( 'openai_engines') == 'text-davinci-003') ? 'selected' : '') ; ?>><?php esc_html_e( 'Davinci (GPT-3 model)','openai_addon');?></option>
62 + <option value="text-davinci-001" <?php echo ((get_option( 'openai_engines') == 'text-davinci-001') ? 'selected' : '') ; ?>><?php esc_html_e( 'Davinci','openai_addon');?></option>
63 + <option value="text-ada-001" <?php echo ((get_option( 'openai_engines') == 'text-ada-001') ? 'selected' : '') ; ?>><?php esc_html_e( 'Ada','openai_addon');?></option>
64 + <option value="text-curie-001" <?php echo ((get_option( 'openai_engines') == 'text-curie-001') ? 'selected' : '') ; ?>><?php esc_html_e( 'Curie','openai_addon');?></option>
65 + <option value="text-babbage-001" <?php echo ((get_option( 'openai_engines') == 'text-babbage-001') ? 'selected' : '' ); ?>><?php esc_html_e( 'Babbag','openai_addon');?></option>
74 66 </select>
75 67 </div>
76 68
77 69 <div class="mb-3">
78 70
79 - <label for="qcld_openai_prompt" class="form-label"><?php esc_html_e( 'Select Prompt','chatbot');?></label>
71 + <label for="qcld_openai_prompt" class="form-label"><?php esc_html_e( 'Select Prompt','openai_addon');?></label>
80 72 <select class="form-select" aria-label="Default select example" name="qcld_openai_prompt" id="qcld_openai_prompt">
81 - <option <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == '') ? 'selected' : '') ); ?>><?php esc_html_e( 'Please select prompt','chatbot');?></option>
82 - <option value="q_and_a" <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == 'q_and_a') ? 'selected' : '') ); ?>><?php esc_html_e( 'Q & A','chatbot');?></option>
83 - <option value="chat" <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == 'chat') ? 'selected' : '') ); ?>><?php esc_html_e( 'Chat','chatbot');?></option>
84 - <option value="friend_chat" <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == 'friend_chat') ? 'selected' : '') ); ?>><?php esc_html_e( 'Friend Chat','chatbot');?></option>
85 - <option value="grammar_correction" <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == 'grammar_correction') ? 'selected' : '') ); ?>><?php esc_html_e( 'Grammar correction','chatbot');?></option>
86 - <option value="marv_sarcastic_chatbot" <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == 'marv_sarcastic_chatbot') ? 'selected' : '') ); ?>><?php esc_html_e( 'Marv the sarcastic chat bot','chatbot');?></option>
87 - <option value="micro_horror" <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == 'micro_horror') ? 'selected' : '') ); ?>><?php esc_html_e( 'Two-Sentence Horror Story:','chatbot');?></option>
88 - <option value="write_poem" <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == 'write_poem') ? 'selected' : '') ); ?>><?php esc_html_e( 'Write a poem (in English)','chatbot');?></option>
89 - <option value="any_command" <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == 'any_command') ? 'selected' : '') ); ?>><?php esc_html_e( 'Any command','chatbot');?></option>
90 - <option value="custom_prompt" <?php echo esc_attr( ((get_option( 'qcld_openai_prompt') == 'custom_prompt') ? 'selected' : '') ); ?>><?php esc_html_e( 'Custom prompt will be appended before the user`s queries','chatbot');?></option>
73 + <option <?php echo ((get_option( 'qcld_openai_prompt') == '') ? 'selected' : '') ; ?>><?php esc_html_e( 'Please select prompt','openai_addon');?></option>
74 + <option value="q_and_a" <?php echo ((get_option( 'qcld_openai_prompt') == 'q_and_a') ? 'selected' : '') ; ?>><?php esc_html_e( 'Q & A','openai_addon');?></option>
75 + <option value="chat" <?php echo ((get_option( 'qcld_openai_prompt') == 'chat') ? 'selected' : '') ; ?>><?php esc_html_e( 'Chat','openai_addon');?></option>
76 + <option value="friend_chat" <?php echo ((get_option( 'qcld_openai_prompt') == 'friend_chat') ? 'selected' : '') ; ?>><?php esc_html_e( 'Friend Chat','openai_addon');?></option>
77 + <option value="grammar_correction" <?php echo ((get_option( 'qcld_openai_prompt') == 'grammar_correction') ? 'selected' : '') ; ?>><?php esc_html_e( 'Grammar correction','openai_addon');?></option>
78 + <option value="marv_sarcastic_chatbot" <?php echo ((get_option( 'qcld_openai_prompt') == 'marv_sarcastic_chatbot') ? 'selected' : '') ; ?>><?php esc_html_e( 'Marv the sarcastic chat bot','openai_addon');?></option>
79 + <option value="micro_horror" <?php echo ((get_option( 'qcld_openai_prompt') == 'micro_horror') ? 'selected' : '') ; ?>><?php esc_html_e( 'Two-Sentence Horror Story:','openai_addon');?></option>
80 + <option value="write_poem" <?php echo ((get_option( 'qcld_openai_prompt') == 'write_poem') ? 'selected' : '') ; ?>><?php esc_html_e( 'Write a poem (in English)','openai_addon');?></option>
81 + <option value="any_command" <?php echo ((get_option( 'qcld_openai_prompt') == 'any_command') ? 'selected' : '') ; ?>><?php esc_html_e( 'Any command','openai_addon');?></option>
82 + <option value="custom_prompt" <?php echo ((get_option( 'qcld_openai_prompt') == 'custom_prompt') ? 'selected' : '') ; ?>><?php esc_html_e( 'Custom prompt will be appended before the user`s queries','openai_addon');?></option>
91 83 </select>
92 84 <div id="custom_prompt_wrapper">
93 - <input type="hidden" id="custom_promt_value" value="<?php echo esc_attr( get_option('qcld_openai_prompt_custom') ); ?>"/>
85 + <input type="hidden" id="custom_promt_value" value="<?php echo get_option('qcld_openai_prompt_custom'); ?>"/>
94 86 </div>
95 - <p class="mb-3"><small><?php esc_html_e( 'Please Select a prompt. The default value of the prompt is Q&A','chatbot');?></small></p>
87 + <p class="mb-3"><small><?php esc_html_e( 'Please Select a prompt. The default value of the prompt is Q&A','openai_addon');?></small></p>
96 88 </div>
97 89
98 - <a class="btn btn-success" id="save_setting"><?php esc_html_e( 'Save settings','chatbot');?></a>
90 + <a class="btn btn-success" id="save_setting"><?php esc_html_e( 'Save settings','openai_addon');?></a>
99 91 </div>
100 92 <div class="p-sm-3 bg-dark rl-col-custom ms-auto"></div>
101 93 </div>
102 94 <div class="card-footer bg-dark text-white py-sm-4 border-0"></div>