JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "5234c83c45c2cf42d44c0e330bee3c13.php"
Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/storage/framework/views/5234c83c45c2cf42d44c0e330bee3c13.php
File size: 3.37 KB
MIME-type: text/x-php
Charset: utf-8
<?php $__env->startPush('title', get_phrase('Open Ai Settings')); ?>
<?php $__env->startPush('meta'); ?><?php $__env->stopPush(); ?>
<?php $__env->startPush('css'); ?><?php $__env->stopPush(); ?>
<?php $__env->startSection('content'); ?>
<!-- Mani section header and breadcrumb -->
<div class="ol-card radius-8px">
<div class="ol-card-body my-3 py-4 px-20px">
<div class="d-flex align-items-center justify-content-between gap-3 flex-wrap flex-md-nowrap">
<h4 class="title fs-16px">
<i class="fi-rr-settings-sliders me-2"></i>
<?php echo e(get_phrase('Open AI Settings')); ?>
</h4>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="ol-card p-4">
<h3 class="title text-14px mb-3"><?php echo e(get_phrase('Manage your open ai settings')); ?></h3>
<div class="ol-card-body">
<form action="<?php echo e(route('admin.open.ai.settings.update')); ?>" method="post">
<?php echo csrf_field(); ?>
<div class="mb-3">
<label class="form-label ol-form-label" for=""><?php echo e(get_phrase('Select ai model')); ?></label>
<select class="ol-form-control ol-select2" name="open_ai_model">
<option value="gpt-3.5-turbo-0125" <?php if(get_settings('open_ai_model') == 'gpt-3.5-turbo-0125'): ?> selected <?php endif; ?>>gpt-3.5-turbo-0125</option>
<option value="gpt-4-0125-preview" <?php if(get_settings('open_ai_model') == 'gpt-4-0125-preview'): ?> selected <?php endif; ?>>gpt-4-0125-preview (<?php echo e(get_phrase('Required premium account')); ?>)
</option>
</select>
</div>
<div class="mb-3">
<label class="form-label ol-form-label" for="open_ai_max_token"><?php echo e(get_phrase('Max tokens')); ?></label>
<input class="form-control ol-form-control" type="number" id="open_ai_max_token" value="<?php echo e(get_settings('open_ai_max_token')); ?>" name="open_ai_max_token" min="20"
max="2048" required>
</div>
<div class="mb-3">
<label class="form-label ol-form-label" for="ai_secret_key"><?php echo e(get_phrase('Secret key')); ?></label>
<input class="form-control ol-form-control" type="text" id="open_ai_secret_key" value="<?php echo e(get_settings('open_ai_secret_key')); ?>" name="open_ai_secret_key"
required="">
</div>
<div class="mb-3">
<button type="submit" class="btn ol-btn-primary"><?php echo e(get_phrase('Save changes')); ?></button>
</div>
</form>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htdocs\Arise\resources\views/admin/open_ai/settings.blade.php ENDPATH**/ ?>