26 lines
1.0 KiB
TypeScript
26 lines
1.0 KiB
TypeScript
import { fetchAPI, type ModelUsageResponse, type SystemConfig, type SystemHealth, type SystemStats } from './index';
|
|
|
|
export async function getSystemStats(): Promise<SystemStats> {
|
|
return fetchAPI<SystemStats>('/status/stats');
|
|
}
|
|
|
|
export async function getSystemConfig(): Promise<SystemConfig> {
|
|
return fetchAPI<SystemConfig>('/status/config');
|
|
}
|
|
|
|
export async function getSystemHealth(): Promise<SystemHealth> {
|
|
return fetchAPI<SystemHealth>('/status/health');
|
|
}
|
|
|
|
/** Passive read: current connection status + cumulative token usage for all 4 AI model roles. */
|
|
export async function getModelUsage(): Promise<ModelUsageResponse> {
|
|
return fetchAPI<ModelUsageResponse>('/status/models');
|
|
}
|
|
|
|
/** Active check: sends one minimal request to each enabled model, then returns fresh statuses. */
|
|
export async function pingModelConnections(): Promise<ModelUsageResponse> {
|
|
return fetchAPI<ModelUsageResponse>('/status/models/ping', { method: 'POST' });
|
|
}
|
|
|
|
export type { ModelUsageResponse, SystemConfig, SystemHealth, SystemStats };
|