@@ -128,84 +128,108 @@ def Readiness(self, request, context):
128
128
raise NotImplementedError ('Method not implemented!' )
129
129
130
130
def CreateApp (self , request , context ):
131
- """Create a app
131
+ """Create an app
132
+
133
+ Creates an app.
132
134
"""
133
135
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
134
136
context .set_details ('Method not implemented!' )
135
137
raise NotImplementedError ('Method not implemented!' )
136
138
137
139
def ListApps (self , request , context ):
138
140
"""List all apps info
141
+
142
+ Returns a paginated list of apps.
139
143
"""
140
144
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
141
145
context .set_details ('Method not implemented!' )
142
146
raise NotImplementedError ('Method not implemented!' )
143
147
144
148
def UpdateApp (self , request , context ):
145
149
"""Update a app info
150
+
151
+ Updates the information of an app.
146
152
"""
147
153
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
148
154
context .set_details ('Method not implemented!' )
149
155
raise NotImplementedError ('Method not implemented!' )
150
156
151
157
def DeleteApp (self , request , context ):
152
158
"""Delete a app
159
+
160
+ Deletes an app.
153
161
"""
154
162
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
155
163
context .set_details ('Method not implemented!' )
156
164
raise NotImplementedError ('Method not implemented!' )
157
165
158
166
def CreateConversation (self , request , context ):
159
- """Create a Conversation
167
+ """Create a conversation
168
+
169
+ Creates a conversation.
160
170
"""
161
171
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
162
172
context .set_details ('Method not implemented!' )
163
173
raise NotImplementedError ('Method not implemented!' )
164
174
165
175
def ListConversations (self , request , context ):
166
176
"""List conversations
177
+
178
+ Returns a paginated list of conversations.
167
179
"""
168
180
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
169
181
context .set_details ('Method not implemented!' )
170
182
raise NotImplementedError ('Method not implemented!' )
171
183
172
184
def UpdateConversation (self , request , context ):
173
185
"""Update a conversation
186
+
187
+ Updates a conversation.
174
188
"""
175
189
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
176
190
context .set_details ('Method not implemented!' )
177
191
raise NotImplementedError ('Method not implemented!' )
178
192
179
193
def DeleteConversation (self , request , context ):
180
194
"""Delete a conversation
195
+
196
+ Deletes a conversation.
181
197
"""
182
198
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
183
199
context .set_details ('Method not implemented!' )
184
200
raise NotImplementedError ('Method not implemented!' )
185
201
186
202
def CreateMessage (self , request , context ):
187
203
"""Create a message
204
+
205
+ Creates a message.
188
206
"""
189
207
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
190
208
context .set_details ('Method not implemented!' )
191
209
raise NotImplementedError ('Method not implemented!' )
192
210
193
211
def ListMessages (self , request , context ):
194
212
"""List messages
213
+
214
+ Returns a paginated list of messages.
195
215
"""
196
216
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
197
217
context .set_details ('Method not implemented!' )
198
218
raise NotImplementedError ('Method not implemented!' )
199
219
200
220
def UpdateMessage (self , request , context ):
201
221
"""Update a message
222
+
223
+ Updates a message.
202
224
"""
203
225
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
204
226
context .set_details ('Method not implemented!' )
205
227
raise NotImplementedError ('Method not implemented!' )
206
228
207
229
def DeleteMessage (self , request , context ):
208
230
"""Delete a message
231
+
232
+ Deletes a message.
209
233
"""
210
234
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
211
235
context .set_details ('Method not implemented!' )
@@ -214,7 +238,7 @@ def DeleteMessage(self, request, context):
214
238
def GetPlaygroundConversation (self , request , context ):
215
239
"""Get Playground Conversation
216
240
217
- get the latest conversation of auth user(e.g. login user and api key user)
241
+ Returns the latest conversation of auth user(e.g. login user and api key user).
218
242
"""
219
243
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
220
244
context .set_details ('Method not implemented!' )
@@ -223,8 +247,8 @@ def GetPlaygroundConversation(self, request, context):
223
247
def RestartPlaygroundConversation (self , request , context ):
224
248
"""Restart Playground Conversation
225
249
226
- create a new conversation and use the auth user uid as creator uid and auto
227
- generate a new conversation id on the behalf of auth user.
250
+ Creates a new conversation and uses the auth user UID as creator UID and
251
+ auto-generates a new conversation ID on the behalf of auth user.
228
252
"""
229
253
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
230
254
context .set_details ('Method not implemented!' )
0 commit comments