File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 21
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-cda2d45e20e1f02206e927055340f82767dae13b0fd16849300b7b1252246e90 .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-27e00076c32b4d01f49438c1db3d4efd946ea82e8e2af8d9ad0af43b2ed0cc58 .yml
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export interface Evaluation {
56
56
promptId : string ;
57
57
58
58
/**
59
- * The variables to in the prompt when evaluating the prompt.
59
+ * The template variables added to the prompt when executing the prompt.
60
60
*/
61
61
variables : Record < string , string | null > ;
62
62
}
@@ -127,7 +127,7 @@ export interface EvaluationCreateParams {
127
127
promptId : string ;
128
128
129
129
/**
130
- * The variables to in the prompt when evaluating the prompt.
130
+ * The template variables added to the prompt when executing the prompt.
131
131
*/
132
132
variables : Record < string , string | null > ;
133
133
}
@@ -192,7 +192,7 @@ export interface EvaluationUpdateParams {
192
192
promptId : string ;
193
193
194
194
/**
195
- * The variables to in the prompt when evaluating the prompt.
195
+ * The template variables added to the prompt when executing the prompt.
196
196
*/
197
197
variables : Record < string , string | null > ;
198
198
}
Original file line number Diff line number Diff line change @@ -657,9 +657,9 @@ export interface PromptGetParametersParams {
657
657
user ?: string ;
658
658
659
659
/**
660
- * The template variables added to the prompt when running the prompt.
660
+ * The template variables added to the prompt when executing the prompt.
661
661
*/
662
- variables ?: Record < string , unknown > ;
662
+ variables ?: Record < string , string | null > ;
663
663
}
664
664
665
665
export namespace PromptGetParametersParams {
Original file line number Diff line number Diff line change @@ -374,7 +374,7 @@ describe('resource prompts', () => {
374
374
} ,
375
375
] ,
376
376
user : 'string' ,
377
- variables : { foo : { } } ,
377
+ variables : { foo : 'string' } ,
378
378
} ,
379
379
{ path : '/_stainless_unknown_path' } ,
380
380
) ,
You can’t perform that action at this time.
0 commit comments