Common Questions 🤔
❓How to Use the Free OpenAI GPT-3.5 Model?
OpenAI has announced that ChatGPT with 3.5 is now free, and developers have wrapped it into an API for direct usage.
Ensure you have Docker installed and running. Execute the following command to start the Docker service:
docker run -p 3040:3040 missuo/freegpt35
Once successfully started, modify the config.toml
configuration as follows:
- Set
llm_provider
toopenai
- Fill in
openai_api_key
with any value, for example, '123456' - Change
openai_base_url
tohttp://localhost:3040/v1/
- Set
openai_model_name
togpt-3.5-turbo
❓RuntimeError: No ffmpeg exe could be found
Normally, ffmpeg will be automatically downloaded and detected. However, if your environment has issues preventing automatic downloads, you may encounter the following error:
RuntimeError: No ffmpeg exe could be found.
Install ffmpeg on your system, or set the IMAGEIO_FFMPEG_EXE environment variable.
In this case, you can download ffmpeg from https://www.gyan.dev/ffmpeg/builds/, unzip it, and set ffmpeg_path
to your actual installation path.
[app]
# Please set according to your actual path, note that Windows path separators are \\
ffmpeg_path = "C:\\Users\\harry\\Downloads\\ffmpeg.exe"
❓Error generating audio or downloading videos
failed to generate audio, maybe the network is not available.
if you are in China, please use a VPN.
failed to download videos, maybe the network is not available.
if you are in China, please use a VPN.
This is likely due to network issues preventing access to foreign services. Please use a VPN to resolve this.
❓ImageMagick is not installed on your computer
- Follow the
example configuration
provideddownload address
to install https://imagemagick.org/archive/binaries/ImageMagick-7.1.1-30-Q16-x64-static.exe, using the static library - Do not install in a path with Chinese characters to avoid unpredictable issues
For Linux systems, you can manually install it, refer to https://cn.linux-console.net/?p=16978
Thanks to @wangwenqiao666 for their research and exploration