| 939 | } |
| 940 | |
| 941 | export interface SharedPoolStats { |
| 942 | accounts: { |
| 943 | total_shared: number; |
| 944 | active_shared: number; |
| 945 | inactive_shared: number; |
| 946 | }; |
| 947 | quotas_by_model: Record<string, SharedPoolModelStats>; |
| 948 | note?: string; |
| 949 | } |
| 950 | |
| 951 | /** |
| 952 | * 获取用户配额池 |
nothing calls this directly
no outgoing calls
no test coverage detected