Skip to content

Commit 27c951b

Browse files
committed
chore: auto-gen by protobufs
triggered by commit: instill-ai/protobufs@8e49e91
1 parent ade2bb9 commit 27c951b

File tree

5 files changed

+66
-70
lines changed

5 files changed

+66
-70
lines changed

app/app/v1alpha/app_pb2.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/app/v1alpha/app_pb2.pyi

Lines changed: 27 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,9 @@ global___ReadinessResponse = ReadinessResponse
125125
@typing_extensions.final
126126
class App(google.protobuf.message.Message):
127127
"""
128-
129128
This API is under development and, therefore, some of its entities and
130-
endpoints are not implemented yet. This section aims to give context about the
131-
current interface and how it fits in the App vision.
129+
endpoints are not implemented yet. This section aims to give context about
130+
the current interface and how it fits in the App vision.
132131
133132
# App
134133
@@ -165,8 +164,8 @@ class App(google.protobuf.message.Message):
165164
def tags(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
166165
"""The app tags."""
167166
@property
168-
def ai_assistant_app(self) -> global___AiAssistantAppMetadata:
169-
"""The ai assistant app metadata."""
167+
def ai_assistant_app(self) -> global___AIAssistantAppMetadata:
168+
"""The AI assistant app metadata."""
170169
app_type: global___AppType.ValueType
171170
"""The app type."""
172171
app_uid: builtins.str
@@ -182,7 +181,7 @@ class App(google.protobuf.message.Message):
182181
update_time: google.protobuf.timestamp_pb2.Timestamp | None = ...,
183182
owner_uid: builtins.str = ...,
184183
tags: collections.abc.Iterable[builtins.str] | None = ...,
185-
ai_assistant_app: global___AiAssistantAppMetadata | None = ...,
184+
ai_assistant_app: global___AIAssistantAppMetadata | None = ...,
186185
app_type: global___AppType.ValueType = ...,
187186
app_uid: builtins.str = ...,
188187
creator_uid: builtins.str = ...,
@@ -194,20 +193,20 @@ class App(google.protobuf.message.Message):
194193
global___App = App
195194

196195
@typing_extensions.final
197-
class AiAssistantAppMetadata(google.protobuf.message.Message):
198-
"""AiAssistantAppMetadata represents the metadata for the ai assistant app."""
196+
class AIAssistantAppMetadata(google.protobuf.message.Message):
197+
"""AIAssistantAppMetadata represents the metadata for the AI assistant app."""
199198

200199
DESCRIPTOR: google.protobuf.descriptor.Descriptor
201200

202201
CATALOG_UID_FIELD_NUMBER: builtins.int
203202
TOP_K_FIELD_NUMBER: builtins.int
204203
CONVERSATION_UID_FIELD_NUMBER: builtins.int
205204
catalog_uid: builtins.str
206-
"""The ai assistant app catalog uid."""
205+
"""The AI assistant app catalog uid."""
207206
top_k: builtins.int
208-
"""The ai assistant app top k."""
207+
"""The AI assistant app top k."""
209208
conversation_uid: builtins.str
210-
"""The ai assistant app conversation uid."""
209+
"""The AI assistant app conversation uid."""
211210
def __init__(
212211
self,
213212
*,
@@ -217,7 +216,7 @@ class AiAssistantAppMetadata(google.protobuf.message.Message):
217216
) -> None: ...
218217
def ClearField(self, field_name: typing_extensions.Literal["catalog_uid", b"catalog_uid", "conversation_uid", b"conversation_uid", "top_k", b"top_k"]) -> None: ...
219218

220-
global___AiAssistantAppMetadata = AiAssistantAppMetadata
219+
global___AIAssistantAppMetadata = AIAssistantAppMetadata
221220

222221
@typing_extensions.final
223222
class CreateAppRequest(google.protobuf.message.Message):
@@ -335,9 +334,9 @@ class UpdateAppRequest(google.protobuf.message.Message):
335334
def new_tags(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
336335
"""The app tags."""
337336
last_ai_assistant_app_catalog_uid: builtins.str
338-
"""last ai assistant app catalog uid"""
337+
"""last AI assistant app catalog uid"""
339338
last_ai_assistant_app_top_k: builtins.int
340-
"""last ai assistant app top k"""
339+
"""last AI assistant app top k"""
341340
def __init__(
342341
self,
343342
*,
@@ -408,16 +407,11 @@ class DeleteAppResponse(google.protobuf.message.Message):
408407
global___DeleteAppResponse = DeleteAppResponse
409408

410409
@typing_extensions.final
411-
class UpdateAiAssistantAppPlaygroundRequest(google.protobuf.message.Message):
412-
"""UpdateAiAssistantAppPlaygroundRequest represents a request to update a ai assistant app playground.
413-
after the update, the app's metadata will be updated with the last ai assistant app
414-
uses catalog uid, top k, and conversation uid.
415-
parameters:
416-
- namespace_id: the namespace id.
417-
- app_id: the app id.
418-
- last_ai_app_catalog_uid: the last ai app catalog uid.
419-
- last_ai_app_top_k: the last ai app top k.
420-
- last_ai_app_conversation_uid: the last ai app conversation uid.
410+
class UpdateAIAssistantAppPlaygroundRequest(google.protobuf.message.Message):
411+
"""UpdateAIAssistantAppPlaygroundRequest represents a request to update an AI
412+
assistant app playground.
413+
After the update, the app's metadata will be updated with the last AI
414+
assistant app uses catalog UID, top k, and conversation UID.
421415
"""
422416

423417
DESCRIPTOR: google.protobuf.descriptor.Descriptor
@@ -432,11 +426,11 @@ class UpdateAiAssistantAppPlaygroundRequest(google.protobuf.message.Message):
432426
app_id: builtins.str
433427
"""The app id."""
434428
last_ai_app_catalog_uid: builtins.str
435-
"""The last ai app uses catalog uid."""
429+
"""The last AI app uses catalog uid."""
436430
last_ai_app_top_k: builtins.int
437-
"""The last ai app uses top k."""
431+
"""The last AI app uses top k."""
438432
last_ai_app_conversation_uid: builtins.str
439-
"""The last ai app uses conversation uid."""
433+
"""The last AI app uses conversation uid."""
440434
def __init__(
441435
self,
442436
*,
@@ -448,16 +442,18 @@ class UpdateAiAssistantAppPlaygroundRequest(google.protobuf.message.Message):
448442
) -> None: ...
449443
def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "last_ai_app_catalog_uid", b"last_ai_app_catalog_uid", "last_ai_app_conversation_uid", b"last_ai_app_conversation_uid", "last_ai_app_top_k", b"last_ai_app_top_k", "namespace_id", b"namespace_id"]) -> None: ...
450444

451-
global___UpdateAiAssistantAppPlaygroundRequest = UpdateAiAssistantAppPlaygroundRequest
445+
global___UpdateAIAssistantAppPlaygroundRequest = UpdateAIAssistantAppPlaygroundRequest
452446

453447
@typing_extensions.final
454-
class UpdateAiAssistantAppPlaygroundResponse(google.protobuf.message.Message):
455-
"""UpdateAiAssistantAppPlaygroundResponse represents a response for updating a ai assistant app playground."""
448+
class UpdateAIAssistantAppPlaygroundResponse(google.protobuf.message.Message):
449+
"""UpdateAIAssistantAppPlaygroundResponse represents a response for updating a
450+
AI assistant app playground.
451+
"""
456452

457453
DESCRIPTOR: google.protobuf.descriptor.Descriptor
458454

459455
def __init__(
460456
self,
461457
) -> None: ...
462458

463-
global___UpdateAiAssistantAppPlaygroundResponse = UpdateAiAssistantAppPlaygroundResponse
459+
global___UpdateAIAssistantAppPlaygroundResponse = UpdateAIAssistantAppPlaygroundResponse

0 commit comments

Comments
 (0)