mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
#I9ROJ3 [app_chatgpt] V16.0 升级支持最新OpenAI official Python库
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
'name': 'ChatGPT4, China Ali,AiGC Center.Ai服务中心,聚合全网Ai',
|
'name': 'ChatGPT4, China Ali,AiGC Center.Ai服务中心,聚合全网Ai',
|
||||||
'version': '16.24.04.19',
|
'version': '16.24.05.23',
|
||||||
'author': 'odooai.cn',
|
'author': 'odooai.cn',
|
||||||
'company': 'odooai.cn',
|
'company': 'odooai.cn',
|
||||||
'maintainer': 'odooai.cn',
|
'maintainer': 'odooai.cn',
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import openai.openai_object
|
import requests
|
||||||
import requests, json
|
import json
|
||||||
import openai
|
|
||||||
import base64
|
import base64
|
||||||
|
import logging
|
||||||
|
from openai import OpenAI
|
||||||
|
from openai import AzureOpenAI
|
||||||
|
|
||||||
from odoo import api, fields, models, modules, tools, _
|
from odoo import api, fields, models, modules, tools, _
|
||||||
from odoo.exceptions import UserError
|
from odoo.exceptions import UserError
|
||||||
|
|
||||||
import logging
|
|
||||||
_logger = logging.getLogger(__name__)
|
_logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
@@ -23,19 +24,18 @@ class AiRobot(models.Model):
|
|||||||
# update ai_robot set ai_model=set_ai_model
|
# update ai_robot set ai_model=set_ai_model
|
||||||
ai_model = fields.Char(string="AI Model", required=True, default='auto', help='Customize input')
|
ai_model = fields.Char(string="AI Model", required=True, default='auto', help='Customize input')
|
||||||
set_ai_model = fields.Selection(string="Quick Set Model", selection=[
|
set_ai_model = fields.Selection(string="Quick Set Model", selection=[
|
||||||
('gpt-3.5-turbo-0125', 'gpt-3.5-turbo-0125(Default and Latest)'),
|
('gpt-3.5-turbo-0125', 'GPT 3.5 Turbo(Default and Latest)'),
|
||||||
('gpt-3.5-turbo-0613', 'gpt-3.5-turbo-0613'),
|
('gpt-4o', 'GPT-4o'),
|
||||||
('gpt-3.5-turbo-16k-0613', 'gpt-3.5-turbo-16k-0613(Big text)'),
|
('gpt-4-turbo', 'GPT-4 Turbo'),
|
||||||
('gpt-4', 'Chatgpt 4'),
|
('gpt-4', 'Chatgpt 4'),
|
||||||
('gpt-4-32k', 'Chatgpt 4 32k'),
|
('gpt-4-32k', 'Chatgpt 4 32k'),
|
||||||
('gpt-3.5-turbo', 'Chatgpt 3.5 Turbo'),
|
|
||||||
('gpt-3.5-turbo-0301', 'Chatgpt 3.5 Turbo on 20230301'),
|
|
||||||
('text-davinci-003', 'Chatgpt 3 Davinci'),
|
('text-davinci-003', 'Chatgpt 3 Davinci'),
|
||||||
('code-davinci-002', 'Chatgpt 2 Code Optimized'),
|
('code-davinci-002', 'Chatgpt 2 Code Optimized'),
|
||||||
('text-davinci-002', 'Chatgpt 2 Davinci'),
|
('text-davinci-002', 'Chatgpt 2 Davinci'),
|
||||||
('dall-e2', 'Dall-E Image'),
|
('dall-e2', 'Dall-E Image'),
|
||||||
], default='gpt-3.5-turbo-0125',
|
], default='gpt-3.5-turbo-0125',
|
||||||
help="""
|
help="""
|
||||||
|
GPT-4o: It is multimodal (accepting text or image inputs and outputting text), and it has the same high intelligence as GPT-4 Turbo but is much more efficient—it generates text 2x faster and is 50% cheaper.
|
||||||
GPT-4: Can understand Image, generate natural language or code.
|
GPT-4: Can understand Image, generate natural language or code.
|
||||||
GPT-3.5: A set of models that improve on GPT-3 and can understand as well as generate natural language or code
|
GPT-3.5: A set of models that improve on GPT-3 and can understand as well as generate natural language or code
|
||||||
DALL·E: A model that can generate and edit images given a natural language prompt
|
DALL·E: A model that can generate and edit images given a natural language prompt
|
||||||
@@ -172,11 +172,14 @@ GPT-3 A set of models that can understand and generate natural language
|
|||||||
res_post, usage, is_ai = self.get_ai_post(res, author_id, answer_id, param)
|
res_post, usage, is_ai = self.get_ai_post(res, author_id, answer_id, param)
|
||||||
return res
|
return res
|
||||||
|
|
||||||
def get_ai_post(self, res, author_id=False, answer_id=False, param={}):
|
def get_ai_post(self, res, author_id=False, answer_id=False, param=None):
|
||||||
# hook,高级版要替代
|
# hook,高级版要替代
|
||||||
if res and author_id and isinstance(res, openai.openai_object.OpenAIObject) or isinstance(res, list) or isinstance(res, dict):
|
if param is None:
|
||||||
# 返回是个对象,那么就是ai
|
param = {}
|
||||||
# if isinstance(res, dict):
|
if not res or not author_id or (not isinstance(res, list) and not isinstance(res, dict)):
|
||||||
|
return res, False, False
|
||||||
|
usage = content = data = None
|
||||||
|
try:
|
||||||
if self.provider == 'openai':
|
if self.provider == 'openai':
|
||||||
# openai 格式处理
|
# openai 格式处理
|
||||||
usage = res['usage']
|
usage = res['usage']
|
||||||
@@ -184,17 +187,38 @@ GPT-3 A set of models that can understand and generate natural language
|
|||||||
# _logger.warning('===========Ai响应:%s' % content)
|
# _logger.warning('===========Ai响应:%s' % content)
|
||||||
elif self.provider == 'azure':
|
elif self.provider == 'azure':
|
||||||
# azure 格式
|
# azure 格式
|
||||||
usage = json.loads(json.dumps(res['usage']))
|
usage = res['usage']
|
||||||
content = json.loads(json.dumps(res['choices'][0]['message']['content']))
|
content = res['choices'][0]['message']['content']
|
||||||
else:
|
else:
|
||||||
usage = False
|
usage = False
|
||||||
content = res
|
content = res
|
||||||
data = content.replace(' .', '.').strip()
|
data = content.replace(' .', '.').strip()
|
||||||
return data, usage, True
|
return data, usage, True
|
||||||
else:
|
except Exception as e:
|
||||||
# 直接返回错误语句,那么就是非ai
|
_logger.error('==========app_chatgpt get_ai_post Error: %s' % e)
|
||||||
return res, False, False
|
return res, False, False
|
||||||
|
|
||||||
|
# if res and author_id and isinstance(res, openai.openai_object.OpenAIObject) or isinstance(res, list) or isinstance(res, dict):
|
||||||
|
# # 返回是个对象,那么就是ai
|
||||||
|
# # if isinstance(res, dict):
|
||||||
|
# if self.provider == 'openai':
|
||||||
|
# # openai 格式处理
|
||||||
|
# usage = res['usage']
|
||||||
|
# content = res['choices'][0]['message']['content']
|
||||||
|
# # _logger.warning('===========Ai响应:%s' % content)
|
||||||
|
# elif self.provider == 'azure':
|
||||||
|
# # azure 格式
|
||||||
|
# usage = json.loads(json.dumps(res['usage']))
|
||||||
|
# content = json.loads(json.dumps(res['choices'][0]['message']['content']))
|
||||||
|
# else:
|
||||||
|
# usage = False
|
||||||
|
# content = res
|
||||||
|
# data = content.replace(' .', '.').strip()
|
||||||
|
# return data, usage, True
|
||||||
|
# else:
|
||||||
|
# # 直接返回错误语句,那么就是非ai
|
||||||
|
# return res, False, False
|
||||||
|
|
||||||
def get_ai_system(self, content=None):
|
def get_ai_system(self, content=None):
|
||||||
# 获取基础ai角色设定, role system
|
# 获取基础ai角色设定, role system
|
||||||
sys_content = content or self.sys_content
|
sys_content = content or self.sys_content
|
||||||
@@ -254,56 +278,7 @@ GPT-3 A set of models that can understand and generate natural language
|
|||||||
else:
|
else:
|
||||||
stop = ["Human:", "AI:"]
|
stop = ["Human:", "AI:"]
|
||||||
# 以下处理 open ai
|
# 以下处理 open ai
|
||||||
if self.ai_model in ['gpt-3.5-turbo', 'gpt-3.5-turbo-0301']:
|
if self.ai_model == 'dall-e2':
|
||||||
# 基本与 azure 同,要处理 api_base
|
|
||||||
openai.api_key = self.openapi_api_key
|
|
||||||
openai.api_base = o_url.replace('/chat/completions', '')
|
|
||||||
if isinstance(data, list):
|
|
||||||
messages = data
|
|
||||||
else:
|
|
||||||
messages = [{"role": "user", "content": data}]
|
|
||||||
# Ai角色设定,如果没设定则再处理
|
|
||||||
if messages[0].get('role') != 'system':
|
|
||||||
sys_content = self.get_ai_system(param.get('sys_content'))
|
|
||||||
if sys_content:
|
|
||||||
messages.insert(0, sys_content)
|
|
||||||
# todo: 当前反向代理方式不通,要调整为 远程主机中接受请求,post到openai,再将结果返回给请求者
|
|
||||||
# response = openai.ChatCompletion.create(
|
|
||||||
# model=self.ai_model,
|
|
||||||
# messages=messages,
|
|
||||||
# # 返回的回答数量
|
|
||||||
# n=1,
|
|
||||||
# max_tokens=max_tokens,
|
|
||||||
# temperature=temperature,
|
|
||||||
# top_p=top_p,
|
|
||||||
# frequency_penalty=frequency_penalty,
|
|
||||||
# presence_penalty=presence_penalty,
|
|
||||||
# stop=stop,
|
|
||||||
# request_timeout=request_timeout,
|
|
||||||
# )
|
|
||||||
# if 'choices' in response:
|
|
||||||
# return response
|
|
||||||
# todo: 两种方式一样,要调整 v 服务器的二次处理 /root/toai.py
|
|
||||||
pdata = {
|
|
||||||
"model": self.ai_model,
|
|
||||||
"messages": messages,
|
|
||||||
"max_tokens": max_tokens,
|
|
||||||
"temperature": temperature,
|
|
||||||
"top_p": top_p,
|
|
||||||
"frequency_penalty": frequency_penalty,
|
|
||||||
"presence_penalty": presence_penalty,
|
|
||||||
"stop": stop
|
|
||||||
}
|
|
||||||
response = requests.post(o_url, data=json.dumps(pdata), headers=headers, timeout=R_TIMEOUT)
|
|
||||||
try:
|
|
||||||
res = response.json()
|
|
||||||
if 'choices' in res:
|
|
||||||
return res
|
|
||||||
except Exception as e:
|
|
||||||
_logger.warning("Get Response Json failed: %s", e)
|
|
||||||
else:
|
|
||||||
_logger.warning('=====================Openai output data: %s' % response.json())
|
|
||||||
elif self.ai_model == 'dall-e2':
|
|
||||||
# todo: 处理 图像引擎,主要是返回参数到聊天中
|
# todo: 处理 图像引擎,主要是返回参数到聊天中
|
||||||
# image_url = response['data'][0]['url']
|
# image_url = response['data'][0]['url']
|
||||||
# https://platform.openai.com/docs/guides/images/introduction
|
# https://platform.openai.com/docs/guides/images/introduction
|
||||||
@@ -324,29 +299,112 @@ GPT-3 A set of models that can understand and generate natural language
|
|||||||
"presence_penalty": 0.1,
|
"presence_penalty": 0.1,
|
||||||
"stop": stop
|
"stop": stop
|
||||||
}
|
}
|
||||||
response = openai.ChatCompletion.create(
|
client = OpenAI(
|
||||||
model=self.ai_model,
|
api_key=self.openapi_api_key,
|
||||||
messages=data
|
timeout=R_TIMEOUT
|
||||||
)
|
)
|
||||||
# response = requests.post(o_url, data=json.dumps(pdata), headers=headers, timeout=R_TIMEOUT)
|
response = client.chat.completions.create(
|
||||||
if 'choices' in response:
|
messages=data,
|
||||||
return response
|
model=self.ai_model,
|
||||||
|
)
|
||||||
|
res = response.model_dump()
|
||||||
|
if 'choices' in res:
|
||||||
|
return res
|
||||||
else:
|
else:
|
||||||
_logger.warning('=====================openai output data: %s' % response.json())
|
_logger.warning('=====================openai output data: %s' % response.json())
|
||||||
|
|
||||||
return _("Response Timeout, please speak again.")
|
return _("Response Timeout, please speak again.")
|
||||||
|
# if self.ai_model in ['gpt-3.5-turbo', 'gpt-3.5-turbo-0301']:
|
||||||
|
# # 基本与 azure 同,要处理 api_base
|
||||||
|
# openai.api_key = self.openapi_api_key
|
||||||
|
# openai.api_base = o_url.replace('/chat/completions', '')
|
||||||
|
# if isinstance(data, list):
|
||||||
|
# messages = data
|
||||||
|
# else:
|
||||||
|
# messages = [{"role": "user", "content": data}]
|
||||||
|
# # Ai角色设定,如果没设定则再处理
|
||||||
|
# if messages[0].get('role') != 'system':
|
||||||
|
# sys_content = self.get_ai_system(param.get('sys_content'))
|
||||||
|
# if sys_content:
|
||||||
|
# messages.insert(0, sys_content)
|
||||||
|
# # todo: 当前反向代理方式不通,要调整为 远程主机中接受请求,post到openai,再将结果返回给请求者
|
||||||
|
# # response = openai.ChatCompletion.create(
|
||||||
|
# # model=self.ai_model,
|
||||||
|
# # messages=messages,
|
||||||
|
# # # 返回的回答数量
|
||||||
|
# # n=1,
|
||||||
|
# # max_tokens=max_tokens,
|
||||||
|
# # temperature=temperature,
|
||||||
|
# # top_p=top_p,
|
||||||
|
# # frequency_penalty=frequency_penalty,
|
||||||
|
# # presence_penalty=presence_penalty,
|
||||||
|
# # stop=stop,
|
||||||
|
# # request_timeout=request_timeout,
|
||||||
|
# # )
|
||||||
|
# # if 'choices' in response:
|
||||||
|
# # return response
|
||||||
|
# # todo: 两种方式一样,要调整 v 服务器的二次处理 /root/toai.py
|
||||||
|
# pdata = {
|
||||||
|
# "model": self.ai_model,
|
||||||
|
# "messages": messages,
|
||||||
|
# "max_tokens": max_tokens,
|
||||||
|
# "temperature": temperature,
|
||||||
|
# "top_p": top_p,
|
||||||
|
# "frequency_penalty": frequency_penalty,
|
||||||
|
# "presence_penalty": presence_penalty,
|
||||||
|
# "stop": stop
|
||||||
|
# }
|
||||||
|
# response = requests.post(o_url, data=json.dumps(pdata), headers=headers, timeout=R_TIMEOUT)
|
||||||
|
# try:
|
||||||
|
# res = response.json()
|
||||||
|
# if 'choices' in res:
|
||||||
|
# return res
|
||||||
|
# except Exception as e:
|
||||||
|
# _logger.warning("Get Response Json failed: %s", e)
|
||||||
|
# else:
|
||||||
|
# _logger.warning('=====================Openai output data: %s' % response.json())
|
||||||
|
# elif self.ai_model == 'dall-e2':
|
||||||
|
# # todo: 处理 图像引擎,主要是返回参数到聊天中
|
||||||
|
# # image_url = response['data'][0]['url']
|
||||||
|
# # https://platform.openai.com/docs/guides/images/introduction
|
||||||
|
# pdata = {
|
||||||
|
# "prompt": data,
|
||||||
|
# "n": 3,
|
||||||
|
# "size": "1024x1024",
|
||||||
|
# }
|
||||||
|
# return '建设中'
|
||||||
|
# else:
|
||||||
|
# pdata = {
|
||||||
|
# "model": self.ai_model,
|
||||||
|
# "prompt": data,
|
||||||
|
# "temperature": 1,
|
||||||
|
# "max_tokens": max_tokens,
|
||||||
|
# "top_p": 0.6,
|
||||||
|
# "frequency_penalty": 0.1,
|
||||||
|
# "presence_penalty": 0.1,
|
||||||
|
# "stop": stop
|
||||||
|
# }
|
||||||
|
# response = openai.ChatCompletion.create(
|
||||||
|
# model=self.ai_model,
|
||||||
|
# messages=data
|
||||||
|
# )
|
||||||
|
# # response = requests.post(o_url, data=json.dumps(pdata), headers=headers, timeout=R_TIMEOUT)
|
||||||
|
# if 'choices' in response:
|
||||||
|
# return response
|
||||||
|
# else:
|
||||||
|
# _logger.warning('=====================openai output data: %s' % response.json())
|
||||||
|
|
||||||
|
# return _("Response Timeout, please speak again.")
|
||||||
|
|
||||||
def get_azure(self, data, author_id, answer_id, param={}):
|
def get_azure(self, data, author_id, answer_id, param={}):
|
||||||
self.ensure_one()
|
self.ensure_one()
|
||||||
# only for azure
|
# only for azure
|
||||||
openai.api_type = self.provider
|
|
||||||
if not self.endpoint:
|
if not self.endpoint:
|
||||||
raise UserError(_("Please Set your AI robot's endpoint first."))
|
raise UserError(_("Please Set your AI robot's endpoint first."))
|
||||||
openai.api_base = self.endpoint
|
|
||||||
if not self.api_version:
|
if not self.api_version:
|
||||||
raise UserError(_("Please Set your AI robot's API Version first."))
|
raise UserError(_("Please Set your AI robot's API Version first."))
|
||||||
openai.api_version = self.api_version
|
|
||||||
openai.api_key = self.openapi_api_key
|
|
||||||
if self.stop:
|
if self.stop:
|
||||||
stop = self.stop.split(',')
|
stop = self.stop.split(',')
|
||||||
else:
|
else:
|
||||||
@@ -370,8 +428,15 @@ GPT-3 A set of models that can understand and generate natural language
|
|||||||
if sys_content:
|
if sys_content:
|
||||||
messages.insert(0, sys_content)
|
messages.insert(0, sys_content)
|
||||||
# 暂时不变
|
# 暂时不变
|
||||||
response = openai.ChatCompletion.create(
|
|
||||||
engine=self.engine,
|
client = AzureOpenAI(
|
||||||
|
api_version=self.api_version,
|
||||||
|
azure_endpoint=self.endpoint,
|
||||||
|
api_key=self.openapi_api_key,
|
||||||
|
timeout=request_timeout
|
||||||
|
)
|
||||||
|
response = client.chat.completions.create(
|
||||||
|
model=self.engine,
|
||||||
messages=messages,
|
messages=messages,
|
||||||
# 返回的回答数量
|
# 返回的回答数量
|
||||||
n=1,
|
n=1,
|
||||||
@@ -381,10 +446,10 @@ GPT-3 A set of models that can understand and generate natural language
|
|||||||
frequency_penalty=frequency_penalty,
|
frequency_penalty=frequency_penalty,
|
||||||
presence_penalty=presence_penalty,
|
presence_penalty=presence_penalty,
|
||||||
stop=None,
|
stop=None,
|
||||||
request_timeout=request_timeout,
|
|
||||||
)
|
)
|
||||||
if 'choices' in response:
|
res = response.model_dump()
|
||||||
return response
|
if 'choices' in res:
|
||||||
|
return res
|
||||||
else:
|
else:
|
||||||
_logger.warning('=====================azure output data: %s' % response.json())
|
_logger.warning('=====================azure output data: %s' % response.json())
|
||||||
return _("Response Timeout, please speak again.")
|
return _("Response Timeout, please speak again.")
|
||||||
|
|||||||
@@ -2,16 +2,15 @@
|
|||||||
<div class="oe_row oe_spaced" >
|
<div class="oe_row oe_spaced" >
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<h2 class="oe_slogan"> Latest ChatGPT AI Center. GPT 3.5, Ali Ai, Baidu Ai, Multi Robot Support. Chat and Training </h2>
|
<h2 class="oe_slogan"> Latest ChatGPT AI Center. GPT 3.5, Ali Ai, Baidu Ai, Multi Robot Support. Chat and Training </h2>
|
||||||
<h3 class="oe_slogan"> Support chatgpt 4 32k. 3.5 turbo, text-davinci, Integration All ChatGpt Api. </h3>
|
<h3 class="oe_slogan"> Support GPT-4o, chatgpt 4 32k. 3.5 turbo, text-davinci, Integration All ChatGpt Api. </h3>
|
||||||
<div class="oe_row">
|
<div class="oe_row">
|
||||||
<h3>Latest update: v16.23.09.27</h3>
|
<h3>Latest update: v16.24.05.23</h3>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
Add Alibaba Qwen support(search 'app_ai_ali'), update chatgpt api
|
Add Alibaba Qwen support(search 'app_ai_ali'), update chatgpt api
|
||||||
</div>
|
</div>
|
||||||
<img class="oe_demo oe_screenshot img img-fluid" src="demo02.jpg">
|
<img class="oe_demo oe_screenshot img img-fluid" src="demo02.jpg">
|
||||||
</div>
|
</div>
|
||||||
<h3>Latest update: v16.23.03.16</h3>
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<img class="oe_demo oe_screenshot img img-fluid" style="max-height: 100%;" src="banner.png">
|
<img class="oe_demo oe_screenshot img img-fluid" style="max-height: 100%;" src="banner.png">
|
||||||
</div>
|
</div>
|
||||||
@@ -111,7 +110,7 @@
|
|||||||
<div class="oe_demo oe_screenshot img img-fluid">
|
<div class="oe_demo oe_screenshot img img-fluid">
|
||||||
<img src="demo1.jpg"/>
|
<img src="demo1.jpg"/>
|
||||||
</div>
|
</div>
|
||||||
<p> You can set the Temperature higer for more creative answer.</p>
|
<p> You can set the Temperature higher for more creative answer.</p>
|
||||||
<div class="oe_demo oe_screenshot img img-fluid">
|
<div class="oe_demo oe_screenshot img img-fluid">
|
||||||
<img src="demo2.jpg"/>
|
<img src="demo2.jpg"/>
|
||||||
</div>
|
</div>
|
||||||
@@ -126,7 +125,7 @@
|
|||||||
<div class="oe_demo oe_screenshot img img-fluid">
|
<div class="oe_demo oe_screenshot img img-fluid">
|
||||||
<img src="demo2.jpg"/>
|
<img src="demo2.jpg"/>
|
||||||
</div>
|
</div>
|
||||||
<p> You can set the Temperature higer for more creative answer.</p>
|
<p> You can set the Temperature higher for more creative answer.</p>
|
||||||
<div class="oe_demo oe_screenshot img img-fluid">
|
<div class="oe_demo oe_screenshot img img-fluid">
|
||||||
<img src="demo3.jpg"/>
|
<img src="demo3.jpg"/>
|
||||||
</div>
|
</div>
|
||||||
@@ -226,6 +225,18 @@
|
|||||||
<h2 class="text-center bg-info text-white pt16 pb16">- How to setup and use -</h2>
|
<h2 class="text-center bg-info text-white pt16 pb16">- How to setup and use -</h2>
|
||||||
</section>
|
</section>
|
||||||
<section class="oe_container container">
|
<section class="oe_container container">
|
||||||
|
<div class="oe_row oe_spaced">
|
||||||
|
<h4 class="pt16">
|
||||||
|
To install this addon, you need to install official OpenAI Python dependencies.
|
||||||
|
</h4>
|
||||||
|
<code>
|
||||||
|
pip install openai
|
||||||
|
</code>
|
||||||
|
or
|
||||||
|
<code>
|
||||||
|
pip install openai --upgrade
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
<div class="oe_row oe_spaced">
|
<div class="oe_row oe_spaced">
|
||||||
<h4 class="pt16">
|
<h4 class="pt16">
|
||||||
1. Get ChatGPT Api key from openai or azure.
|
1. Get ChatGPT Api key from openai or azure.
|
||||||
@@ -261,13 +272,13 @@
|
|||||||
<img src="setup5.jpg">
|
<img src="setup5.jpg">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<h5 class="pt16">6. You can setup the Ai system context and Character.</h5>
|
<h4 class="pt16">6. You can setup the Ai system context and Character.</h4>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="oe_demo oe_screenshot img img-fluid">
|
<div class="oe_demo oe_screenshot img img-fluid">
|
||||||
<img src="setup6.jpg">
|
<img src="setup6.jpg">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<h5 class="pt16">7. You can setup Lots of channel for subjects and projects..</h5>
|
<h4 class="pt16">7. You can setup Lots of channel for subjects and projects..</h4>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="oe_demo oe_screenshot img img-fluid">
|
<div class="oe_demo oe_screenshot img img-fluid">
|
||||||
<img src="setup7.jpg">
|
<img src="setup7.jpg">
|
||||||
|
|||||||
Reference in New Issue
Block a user