FireflyChat FireflyChat is a graphical application platform for LLM developed by the Firefly team. Users can quickly experience the actual use of various large models on the visual WebUI provided by FireflyChat. Installation Note: The system firmware of AIBOX-3588 has preconfigured FireflyChat and imported the basic model. You can use it directly.If FireflyChat does not exist in the firmware, you can download the corresponding AI firmware or install FireflyChat yourself. You need to obtain the required installation package from the Download Center to install FireflyChat. There are two installation packages, which are "fireflychat_x.x.x_arm64.deb" and "libfirefly-ai_x.x.x_arm64.deb". After obtaining the installation package, transfer it to AIBOX-3588 and run the following command to install it: # Install venv sudo apt update sudo apt install python3-venv # Install FireflyChat sudo dpkg -i libfirefly-ai_*_arm64.deb sudo dpkg -i fireflychat_*_arm64.deb After installing FireflyChat, you need to import the model file to FireflyChat to use it properly. Model import LLM After obtaining the model file, transfer it to AIBOX-3588 and run the following command to import it: # Move the model file location, where replace with the actual model file path sudo mv /userdata/firefly_userdata/models/LLM/ # Restart the FireflyChat service sudo systemctl restart FireflyChat Software usage WebUI usage (Main usage methods) FireflyChat will run automatically after it is installed successfully. You can directly access FireflyChat by entering ":7860" in the browser. Note: must be replaced with the actual IP address, for example:"172.16.11.18:7860". Software background management FireflyChat is an application registered as the systemd service. You can control the running status of FireflyChat by running the following commands: # Stop FireflyChat sudo systemctl stop FireflyChat # Restart FireflyChat sudo systemctl restart FireflyChat # Disable the automatic startup of FireflyChat sudo systemctl disable FireflyChat # Viewing run logs sudo journalctl -u FireflyChat