Common Questions 🤔

❓How to Use the Free OpenAI GPT-3.5 Model?

OpenAI has announced that ChatGPT with 3.5 is now freeopen in new window, 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 to openai
  • Fill in openai_api_key with any value, for example, '123456'
  • Change openai_base_url to http://localhost:3040/v1/
  • Set openai_model_name to gpt-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

issue 56open in new window

failed to generate audio, maybe the network is not available. 
if you are in China, please use a VPN.

issue 44open in new window

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

issue 33open in new window

  1. Follow the example configuration provided download address to install https://imagemagick.org/archive/binaries/ImageMagick-7.1.1-30-Q16-x64-static.exe, using the static library
  2. Do not install in a path with Chinese characters to avoid unpredictable issues

issue 54open in new window

For Linux systems, you can manually install it, refer to https://cn.linux-console.net/?p=16978

Thanks to @wangwenqiao666open in new window for their research and exploration