@@ -58,6 +58,7 @@ def create(
5858 magic_input : Optional [str ] | NotGiven = NOT_GIVEN ,
5959 max_rows : int | NotGiven = NOT_GIVEN ,
6060 publish : bool | NotGiven = NOT_GIVEN ,
61+ query_balance : Optional [int ] | NotGiven = NOT_GIVEN ,
6162 sample_questions : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
6263 webhooks : List [str ] | NotGiven = NOT_GIVEN ,
6364 welcome_message : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -88,6 +89,8 @@ def create(
8889
8990 publish: 是否公开
9091
92+ query_balance: bot 的查询次数,默认是 None,表示无限次查询,入参为大于等于 0 的整数
93+
9194 sample_questions: 示例问题列表
9295
9396 webhooks: Webhook URL 列表
@@ -114,6 +117,7 @@ def create(
114117 "magic_input" : magic_input ,
115118 "max_rows" : max_rows ,
116119 "publish" : publish ,
120+ "query_balance" : query_balance ,
117121 "sample_questions" : sample_questions ,
118122 "webhooks" : webhooks ,
119123 "welcome_message" : welcome_message ,
@@ -172,6 +176,7 @@ def update(
172176 max_rows : Optional [int ] | NotGiven = NOT_GIVEN ,
173177 name : Optional [str ] | NotGiven = NOT_GIVEN ,
174178 publish : Optional [bool ] | NotGiven = NOT_GIVEN ,
179+ query_balance : Optional [int ] | NotGiven = NOT_GIVEN ,
175180 sample_questions : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
176181 webhooks : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
177182 welcome_message : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -204,6 +209,8 @@ def update(
204209
205210 publish: 是否公开
206211
212+ query_balance: bot 的查询次数,默认是 None,表示无限次查询,入参为大于等于 0 的整数
213+
207214 sample_questions: 示例问题列表
208215
209216 webhooks: Webhook URL 列表
@@ -233,6 +240,7 @@ def update(
233240 "max_rows" : max_rows ,
234241 "name" : name ,
235242 "publish" : publish ,
243+ "query_balance" : query_balance ,
236244 "sample_questions" : sample_questions ,
237245 "webhooks" : webhooks ,
238246 "welcome_message" : welcome_message ,
@@ -403,6 +411,7 @@ async def create(
403411 magic_input : Optional [str ] | NotGiven = NOT_GIVEN ,
404412 max_rows : int | NotGiven = NOT_GIVEN ,
405413 publish : bool | NotGiven = NOT_GIVEN ,
414+ query_balance : Optional [int ] | NotGiven = NOT_GIVEN ,
406415 sample_questions : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
407416 webhooks : List [str ] | NotGiven = NOT_GIVEN ,
408417 welcome_message : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -433,6 +442,8 @@ async def create(
433442
434443 publish: 是否公开
435444
445+ query_balance: bot 的查询次数,默认是 None,表示无限次查询,入参为大于等于 0 的整数
446+
436447 sample_questions: 示例问题列表
437448
438449 webhooks: Webhook URL 列表
@@ -459,6 +470,7 @@ async def create(
459470 "magic_input" : magic_input ,
460471 "max_rows" : max_rows ,
461472 "publish" : publish ,
473+ "query_balance" : query_balance ,
462474 "sample_questions" : sample_questions ,
463475 "webhooks" : webhooks ,
464476 "welcome_message" : welcome_message ,
@@ -517,6 +529,7 @@ async def update(
517529 max_rows : Optional [int ] | NotGiven = NOT_GIVEN ,
518530 name : Optional [str ] | NotGiven = NOT_GIVEN ,
519531 publish : Optional [bool ] | NotGiven = NOT_GIVEN ,
532+ query_balance : Optional [int ] | NotGiven = NOT_GIVEN ,
520533 sample_questions : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
521534 webhooks : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
522535 welcome_message : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -549,6 +562,8 @@ async def update(
549562
550563 publish: 是否公开
551564
565+ query_balance: bot 的查询次数,默认是 None,表示无限次查询,入参为大于等于 0 的整数
566+
552567 sample_questions: 示例问题列表
553568
554569 webhooks: Webhook URL 列表
@@ -578,6 +593,7 @@ async def update(
578593 "max_rows" : max_rows ,
579594 "name" : name ,
580595 "publish" : publish ,
596+ "query_balance" : query_balance ,
581597 "sample_questions" : sample_questions ,
582598 "webhooks" : webhooks ,
583599 "welcome_message" : welcome_message ,
0 commit comments