@mastra/client-js 0.1.0-alpha.12 → 0.1.0-alpha.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/resources/agent.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -125,7 +125,7 @@ var Agent = class extends BaseResource {
|
|
|
125
125
|
* @returns Promise containing live agent evaluations
|
|
126
126
|
*/
|
|
127
127
|
liveEvals() {
|
|
128
|
-
return this.request(`/api/agents/${this.agentId}/evals/
|
|
128
|
+
return this.request(`/api/agents/${this.agentId}/evals/ci`);
|
|
129
129
|
}
|
|
130
130
|
};
|
|
131
131
|
|
package/package.json
CHANGED
package/src/resources/agent.ts
CHANGED
|
@@ -110,6 +110,6 @@ export class Agent extends BaseResource {
|
|
|
110
110
|
* @returns Promise containing live agent evaluations
|
|
111
111
|
*/
|
|
112
112
|
liveEvals(): Promise<GetEvalsByAgentIdResponse> {
|
|
113
|
-
return this.request(`/api/agents/${this.agentId}/evals/
|
|
113
|
+
return this.request(`/api/agents/${this.agentId}/evals/ci`);
|
|
114
114
|
}
|
|
115
115
|
}
|