MCPcopy Create free account
hub / github.com/QuantiaAI/helm-agents / apiGet

Function apiGet

apps/web/src/api/client.ts:84–86  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

82}
83
84export function apiGet<T>(path: string): Promise<T> {
85 return request<T>(path);
86}
87
88export function apiPut<T>(path: string, body: unknown): Promise<T> {
89 return request<T>(path, { method: "PUT", body: JSON.stringify(body) });

Callers 6

HistoryFunction · 0.90
HealthFunction · 0.90
loadModelsFunction · 0.90
RunDetailFunction · 0.90
analyze.test.tsxFile · 0.85

Calls 1

requestFunction · 0.85

Tested by

no test coverage detected