MCPcopy Create free account
hub / github.com/astercloud/aster / getEvals

Method getEvals

studio/src/api/client.ts:178–181  ·  view source on GitHub ↗
(opts: EvalQueryOpts = {})

Source from the content-addressed store, hash-verified

176
177 // Evaluations
178 async getEvals(opts: EvalQueryOpts = {}): Promise<EvalListResult> {
179 const query = this.buildQueryString(opts);
180 return this.fetch<EvalListResult>(`/eval/evals${query}`);
181 }
182
183 async getEval(id: string): Promise<EvalRecord> {
184 return this.fetch<EvalRecord>(`/eval/evals/${id}`);

Callers 1

useEvalsFunction · 0.80

Calls 2

buildQueryStringMethod · 0.95
fetchMethod · 0.95

Tested by

no test coverage detected