@@ -3324,7 +3324,7 @@ impl DatasetConfiguration {
33243324 query_parameter_description: Some ( "The search query to find relevant information" . to_string( ) ) ,
33253325 price_filter_description: Some ( "The price filter to use for the search" . to_string( ) ) ,
33263326 max_price_option_description: Some ( "The maximum price to filter by" . to_string( ) ) ,
3327- min_price_option_description: Some ( "The minimum price to filter by" . to_string( ) ) ,
3327+ min_price_option_description: Some ( "The minimum price to filter by" . to_string( ) ) ,
33283328 } ) ,
33293329 } ) )
33303330 . as_object ( )
@@ -4618,6 +4618,7 @@ impl ApiKeyRequestParams {
46184618 metadata : payload. metadata ,
46194619 use_agentic_search : payload. use_agentic_search ,
46204620 only_include_docs_used : payload. only_include_docs_used ,
4621+ number_of_messages_to_include : payload. number_of_messages_to_include ,
46214622 }
46224623 }
46234624
@@ -9504,6 +9505,7 @@ impl<'de> Deserialize<'de> for CreateMessageReqPayload {
95049505 remove_stop_words : Option < bool > ,
95059506 typo_options : Option < TypoOptions > ,
95069507 pub only_include_docs_used : Option < bool > ,
9508+ pub number_of_messages_to_include : Option < u64 > ,
95079509 }
95089510
95099511 let mut helper = Helper :: deserialize ( deserializer) ?;
@@ -9545,6 +9547,7 @@ impl<'de> Deserialize<'de> for CreateMessageReqPayload {
95459547 typo_options : helper. typo_options ,
95469548 use_agentic_search : helper. use_agentic_search ,
95479549 only_include_docs_used : helper. only_include_docs_used ,
9550+ number_of_messages_to_include : helper. number_of_messages_to_include ,
95489551 } )
95499552 }
95509553}
@@ -9580,6 +9583,7 @@ impl<'de> Deserialize<'de> for RegenerateMessageReqPayload {
95809583 pub rag_context : Option < String > ,
95819584 pub use_agentic_search : Option < bool > ,
95829585 pub only_include_docs_used : Option < bool > ,
9586+ pub number_of_messages_to_include : Option < u64 > ,
95839587 }
95849588
95859589 let mut helper = Helper :: deserialize ( deserializer) ?;
@@ -9618,6 +9622,7 @@ impl<'de> Deserialize<'de> for RegenerateMessageReqPayload {
96189622 rag_context : helper. rag_context ,
96199623 use_agentic_search : helper. use_agentic_search ,
96209624 only_include_docs_used : helper. only_include_docs_used ,
9625+ number_of_messages_to_include : helper. number_of_messages_to_include ,
96219626 } )
96229627 }
96239628}
@@ -9657,6 +9662,7 @@ impl<'de> Deserialize<'de> for EditMessageReqPayload {
96579662 pub rag_context : Option < String > ,
96589663 pub use_agentic_search : Option < bool > ,
96599664 pub only_include_docs_used : Option < bool > ,
9665+ pub number_of_messages_to_include : Option < u64 > ,
96609666 }
96619667
96629668 let mut helper = Helper :: deserialize ( deserializer) ?;
@@ -9699,6 +9705,7 @@ impl<'de> Deserialize<'de> for EditMessageReqPayload {
96999705 rag_context : helper. rag_context ,
97009706 use_agentic_search : helper. use_agentic_search ,
97019707 only_include_docs_used : helper. only_include_docs_used ,
9708+ number_of_messages_to_include : helper. number_of_messages_to_include ,
97029709 } )
97039710 }
97049711}
0 commit comments