This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are ChatGPT, a large language model trained by OpenAI, based on the GPT-4 architecture. | |
Knowledge cutoff: 2023-10 | |
Current date: 2024-05-31 | |
Image input capabilities: Enabled | |
Personality: v2 | |
# Tools | |
## dalle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
export LANG=en_US.UTF-8 | |
# 当前脚本版本号和新增功能 | |
VERSION='1.13' | |
# 最大支持流媒体 | |
SUPPORT_NUM='2' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Docker 安装脚本 | |
set -e | |
function select_mirror() { | |
echo "请选择你想要使用的Docker镜像源:" | |
echo "1) 阿里云" | |
echo "2) 阿里云内网" | |
echo "3) 腾讯云" |