gpt
gpt
目录
[toc]
案例:WeTab上的自带的ChatAI(收费)
(8.8元/月,体验不错
)
2023年8月19日16:35:10 测试使用
WeTab上的自带的
🚩 你这个ChatAI pro和原生的chat有什么区别吗?
作为 ChatAI Pro 版本,我与免费版本的 ChatAI 有以下区别:
- 无限的额度:免费版本的 ChatAI 每天有一定的使用限额,而 Pro 版本没有限额,可以无限使用。
- 更强大的模型:Pro 版本使用的是 GPT-3.5 模型,相比免费版的 GPT-3 模型,具备更高的智能和语言理解能力。
- 更高的流畅度:Pro 版本运行在更强大的服务器上,并且拥有更多的计算资源,因此响应速度更快,交互更流畅。
- 更深入的对话:Pro 版本在对话中能够保持更长的上下文记忆,理解更复杂的问题和对话逻辑,并提供更连贯的回答。
总而言之,ChatAI Pro 版本拥有更强大的功能和性能,提供更高质量的智能回答和对话体验。但无论是免费版还是 Pro 版,我都会尽力为用户提供最佳的帮助和回答。
案例:chatgpt8(白嫖,体验不错
,目前在用)
2023.10.16
999免费次数;
使用体验还不错;
用这个神奇的聊天工具,我的生活变得更加便利了。不需要魔法,不需要海外手机号码,来试试吧:Chat8。点击使用: https://chat.chat828.com/#/register?bronk_on=575095
- 测试效果
2023年10月16日16:08:07
python
import subprocess
# 要执行的命令列表
commands = [
'ls',
'echo "Hello, world!"',
'df -h'
]
# 循环遍历命令列表并执行每个命令
for command in commands:
try:
# 执行命令,并等待其完成
result = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
# 打印命令的输出
print(f'Command: {command}')
print(f'Stdout: {result.stdout}')
print(f'Stderr: {result.stderr}')
print(f'Return code: {result.returncode}')
except Exception as e:
print(f'Error executing command: {command}')
print(f'Error: {str(e)}')
wetab测试结果:
python
import subprocess
# 定义要执行的命令列表
commands = [
"ls",
"pwd",
"echo 'Hello, World!'"
]
# 遍历命令列表,并执行每个命令
for cmd in commands:
# 使用subprocess模块执行命令
result = subprocess.run(cmd, shell=True, capture_output=True, text=True)
# 输出命令执行结果
if result.returncode == 0:
print(f"命令 '{cmd}' 执行成功:")
print(result.stdout)
else:
print(f"命令 '{cmd}' 执行失败:")
print(result.stderr)
- vip价格
- 谷歌浏览器可以登录,但是心愿浏览器好像登录不上。。。
案例:https://chat.finechat.ai/
案例:fastgpt
问题:如何搞一个原生gpt呢?
FAQ
chatgpt4是可以上传图片的
更新于:2023年10月13日09:49:51
🚩
chatgpt4 安卓端是可以用语音的
更新于:2023年10月13日09:49:51