AI模型聚合管理中转分发系统,一个应用管理您的所有AI模型,支持将多种大模型转为统一格式调用,支持OpenAI、Claude、Gemini等格式,可供个人或者企业内部管理与分发渠道使用。
|
|
2 years ago | |
|---|---|---|
| .github | 2 years ago | |
| common | 2 years ago | |
| controller | 2 years ago | |
| middleware | 2 years ago | |
| model | 2 years ago | |
| router | 2 years ago | |
| web | 2 years ago | |
| .gitignore | 2 years ago | |
| Dockerfile | 2 years ago | |
| LICENSE | 2 years ago | |
| README.en.md | 2 years ago | |
| README.md | 2 years ago | |
| go.mod | 2 years ago | |
| go.sum | 2 years ago | |
| main.go | 2 years ago |
中文 | English
Download · Tutorial · Feedback · Demo
Download built binary from GitHub Releases or build from source:
git clone https://github.com/songquanpeng/gin-template.git
go mod download
go build -ldflags "-s -w" -o gin-template
````
2. Run it:
shell chmod u+x gin-template ./gin-template --port 3000 --log-dir ./logs ```
root and the password is 123456.Execute: docker run -d --restart always -p 3000:3000 -v /home/ubuntu/data/gin-template:/data -v /etc/ssl/certs:/etc/ssl/certs:ro justsong/gin-template
Data will be saved in /home/ubuntu/data/gin-template.
The system works out of the box.
You can configure the system by set environment variables or specify command line arguments.
After the system starts, use root user to log in to the system and do further configuration.
REDIS_CONN_STRING: when set, Redis will be used as the storage for request rate limitation instead of memory storage.REDIS_CONN_STRING=redis://default:redispw@localhost:49153SESSION_SECRET: when set, a fixed session key will be used so that the logged-in users' cookie remains valid across system reboots.SESSION_SECRET=random_stringSQL_DSN: when set, the target SQL database will be used instead of SQLite.SQL_DSN=root:123456@tcp(localhost:3306)/gin-template--port <port_number>: specify the port number, the default value is 3000.--port 3000--log-dir <log_dir>: specify the log dir, if not set, the log won't be saved.--log-dir ./logs--version: print the version and exit.