We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c69977e commit de56d1cCopy full SHA for de56d1c
src/types/maestro/MaestroRunResponse.ts
@@ -32,6 +32,11 @@ type DataSources = {
32
web_search?: WebSearchResult[];
33
};
34
35
+type ErrorObject = {
36
+ message: string;
37
+};
38
+
39
40
export interface MaestroRunResponse {
41
/*
42
The ID of the maestro run for polling the status.
@@ -50,4 +55,8 @@ export interface MaestroRunResponse {
50
55
Detailed results for each requirement.
51
56
*/
52
57
requirements_result: MaestroRunRequirementResult;
58
+ /*
59
+ Error object, present if the run failed.
60
+ */
61
+ error?: ErrorObject | null;
53
62
}
0 commit comments