Skip to content

gpt

gpt

image-20231016160701783

目录

[toc]

案例:WeTab上的自带的ChatAI(收费)

8.8元/月,体验不错

2023年8月19日16:35:10 测试使用

WeTab上的自带的

image-20230819161037672

🚩 你这个ChatAI pro和原生的chat有什么区别吗?

作为 ChatAI Pro 版本,我与免费版本的 ChatAI 有以下区别:

  1. 无限的额度:免费版本的 ChatAI 每天有一定的使用限额,而 Pro 版本没有限额,可以无限使用。
  2. 更强大的模型:Pro 版本使用的是 GPT-3.5 模型,相比免费版的 GPT-3 模型,具备更高的智能和语言理解能力。
  3. 更高的流畅度:Pro 版本运行在更强大的服务器上,并且拥有更多的计算资源,因此响应速度更快,交互更流畅。
  4. 更深入的对话:Pro 版本在对话中能够保持更长的上下文记忆,理解更复杂的问题和对话逻辑,并提供更连贯的回答。

总而言之,ChatAI Pro 版本拥有更强大的功能和性能,提供更高质量的智能回答和对话体验。但无论是免费版还是 Pro 版,我都会尽力为用户提供最佳的帮助和回答。

image-20230824063419420

image-20230823223457815

案例:chatgpt8(白嫖,体验不错,目前在用)

2023.10.16

999免费次数;

使用体验还不错;

image-20231016161415348

image-20231016160732299

https://x.chat838.com/

image-20231019193350552

用这个神奇的聊天工具,我的生活变得更加便利了。不需要魔法,不需要海外手机号码,来试试吧:Chat8。点击使用: https://chat.chat828.com/#/register?bronk_on=575095

image-20231016160701783

  • 测试效果

2023年10月16日16:08:07

image-20231016160816759

image-20231016160838736

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测试结果:

image-20231016160910571

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价格

image-20231016161130415

  • 谷歌浏览器可以登录,但是心愿浏览器好像登录不上。。。

image-20231016161825076

image-20231016161852667

案例:https://chat.finechat.ai/

image-20231117224844132

案例:fastgpt

image-20231117225015567

问题:如何搞一个原生gpt呢?

FAQ

chatgpt4是可以上传图片的

更新于:2023年10月13日09:49:51

image-20231030124209910

🚩

image-20231013094757779

image-20231030124241142

chatgpt4 安卓端是可以用语音的

更新于:2023年10月13日09:49:51

image-20231030124134635