@@ -35,6 +35,7 @@ class CheckLLMResponseStreamRequest(object):
3535 swagger_types = {
3636 'content' : 'str' ,
3737 'content_type' : 'int' ,
38+ 'context_id' : 'str' ,
3839 'host' : 'str' ,
3940 'msg_class' : 'int' ,
4041 'msg_id' : 'str' ,
@@ -46,6 +47,7 @@ class CheckLLMResponseStreamRequest(object):
4647 attribute_map = {
4748 'content' : 'Content' ,
4849 'content_type' : 'ContentType' ,
50+ 'context_id' : 'ContextID' ,
4951 'host' : 'Host' ,
5052 'msg_class' : 'MsgClass' ,
5153 'msg_id' : 'MsgID' ,
@@ -54,14 +56,15 @@ class CheckLLMResponseStreamRequest(object):
5456 'use_stream' : 'UseStream'
5557 }
5658
57- def __init__ (self , content = None , content_type = None , host = None , msg_class = None , msg_id = None , region = None , timeout = None , use_stream = None , _configuration = None ): # noqa: E501
59+ def __init__ (self , content = None , content_type = None , context_id = None , host = None , msg_class = None , msg_id = None , region = None , timeout = None , use_stream = None , _configuration = None ): # noqa: E501
5860 """CheckLLMResponseStreamRequest - a model defined in Swagger""" # noqa: E501
5961 if _configuration is None :
6062 _configuration = Configuration ()
6163 self ._configuration = _configuration
6264
6365 self ._content = None
6466 self ._content_type = None
67+ self ._context_id = None
6568 self ._host = None
6669 self ._msg_class = None
6770 self ._msg_id = None
@@ -72,6 +75,8 @@ def __init__(self, content=None, content_type=None, host=None, msg_class=None, m
7275
7376 self .content = content
7477 self .content_type = content_type
78+ if context_id is not None :
79+ self .context_id = context_id
7580 self .host = host
7681 self .msg_class = msg_class
7782 if msg_id is not None :
@@ -128,6 +133,27 @@ def content_type(self, content_type):
128133
129134 self ._content_type = content_type
130135
136+ @property
137+ def context_id (self ):
138+ """Gets the context_id of this CheckLLMResponseStreamRequest. # noqa: E501
139+
140+
141+ :return: The context_id of this CheckLLMResponseStreamRequest. # noqa: E501
142+ :rtype: str
143+ """
144+ return self ._context_id
145+
146+ @context_id .setter
147+ def context_id (self , context_id ):
148+ """Sets the context_id of this CheckLLMResponseStreamRequest.
149+
150+
151+ :param context_id: The context_id of this CheckLLMResponseStreamRequest. # noqa: E501
152+ :type: str
153+ """
154+
155+ self ._context_id = context_id
156+
131157 @property
132158 def host (self ):
133159 """Gets the host of this CheckLLMResponseStreamRequest. # noqa: E501
0 commit comments