Freedom GPT本地运行 Alpaca 模型
Freedom GPT 是一个桌面应用程序,允许用户在他们的本地机器上运行 Alpaca 模型,使用 Electron 和 React 构建。
需求
- Node.js
- Yarn
- Git
直接运行应用程序(仅限 Mac 和 Windows)
git clone https://github.com/ohmplatform/FreedomGPT.git freedom-gpt
cd freedom-gpt
yarn install
yarn start:prod
从源代码构建 (Windows)
- 下载并安装 CMake: https://cmake.org/download/
- 逐条运行以下命令:
cd alpaca.cpp
cmake .
cmake --build . --config Release
现在应该有一个 Release 文件夹,里面有一个 chat.exe 文件,可以运行此文件来测试聊天客户端。
更改 API 网址
默认使用 http://localhost:8889 作为 API URL,可以在文件 src/index.ts 中更改它
运行应用程序
要运行该应用程序,请在您的终端中运行以下命令:
yarn start
⦻ Make sure you are in the root directory of the project.
评论