This commit is contained in:
archer 2025-12-08 21:45:21 +08:00
parent cee7dceecc
commit e03aaff3e9
No known key found for this signature in database
GPG Key ID: 4446499B846D4A9E
5 changed files with 9 additions and 4 deletions

View File

@ -56,3 +56,4 @@ curl --location --request POST 'https://{{host}}/api/admin/initv4144' \
## 插件
1. 新增 GLM4.6 与 DS3.2 系列模型预设。

View File

@ -34,7 +34,7 @@
"document/content/docs/introduction/development/openapi/chat.mdx": "2025-11-14T13:21:17+08:00",
"document/content/docs/introduction/development/openapi/dataset.mdx": "2025-09-29T11:34:11+08:00",
"document/content/docs/introduction/development/openapi/intro.mdx": "2025-09-29T11:34:11+08:00",
"document/content/docs/introduction/development/openapi/share.mdx": "2025-12-08T16:10:51+08:00",
"document/content/docs/introduction/development/openapi/share.mdx": "2025-12-08T21:02:38+08:00",
"document/content/docs/introduction/development/proxy/cloudflare.mdx": "2025-07-23T21:35:03+08:00",
"document/content/docs/introduction/development/proxy/http_proxy.mdx": "2025-07-23T21:35:03+08:00",
"document/content/docs/introduction/development/proxy/nginx.mdx": "2025-07-23T21:35:03+08:00",
@ -118,7 +118,7 @@
"document/content/docs/upgrading/4-14/4141.mdx": "2025-11-19T10:15:27+08:00",
"document/content/docs/upgrading/4-14/4142.mdx": "2025-11-18T19:27:14+08:00",
"document/content/docs/upgrading/4-14/4143.mdx": "2025-11-26T20:52:05+08:00",
"document/content/docs/upgrading/4-14/4144.mdx": "2025-12-08T17:57:59+08:00",
"document/content/docs/upgrading/4-14/4144.mdx": "2025-12-08T21:02:38+08:00",
"document/content/docs/upgrading/4-8/40.mdx": "2025-08-02T19:38:37+08:00",
"document/content/docs/upgrading/4-8/41.mdx": "2025-08-02T19:38:37+08:00",
"document/content/docs/upgrading/4-8/42.mdx": "2025-08-02T19:38:37+08:00",

View File

@ -26,4 +26,4 @@ try {
console.log(error);
}
export const TrackModel = getMongoModel<TrackSchemaType>('track', TrackSchema);
export const TrackModel = getMongoModel<TrackSchemaType>('tracks', TrackSchema);

View File

@ -76,6 +76,8 @@ COPY --from=maindeps /app/node_modules/@zilliz/milvus2-sdk-node ./node_modules/@
COPY --from=builder /app/projects/app/package.json ./package.json
# copy config
COPY ./projects/app/data/config.json /app/data/config.json
# copy test.mp3
COPY ./projects/app/data/test.mp3 /app/data/test.mp3
# copy GeoLite2-City.mmdb
COPY ./projects/app/data/GeoLite2-City.mmdb /app/data/GeoLite2-City.mmdb

View File

@ -125,7 +125,7 @@ export const useSystemStore = create<State>()(
return null;
},
gitStar: 25000,
gitStar: 26500,
async loadGitStar() {
if (!get().feConfigs?.show_git) return;
try {
@ -255,6 +255,8 @@ export const useSystemStore = create<State>()(
{
name: 'globalStore',
partialize: (state) => ({
gitStar: state.gitStar,
loginStore: state.loginStore,
initDataBufferId: state.initDataBufferId,
feConfigs: state.feConfigs,