Skip to content

Commit 249e22b

Browse files
committed
chore: auto-gen by protobufs
triggered by commit: instill-ai/protobufs@70e927a
1 parent 3c7728d commit 249e22b

2 files changed

Lines changed: 46 additions & 25 deletions

File tree

agent/agent/v1alpha/common_pb2.py

Lines changed: 30 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

agent/agent/v1alpha/common_pb2.pyi

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,13 +190,25 @@ class ChatContext(google.protobuf.message.Message):
190190
def ClearField(self, field_name: typing_extensions.Literal["file_uids", b"file_uids", "table_uid", b"table_uid"]) -> None: ...
191191

192192
TABLE_UIDS_FIELD_NUMBER: builtins.int
193+
FOLDER_UIDS_FIELD_NUMBER: builtins.int
194+
CATALOG_UIDS_FIELD_NUMBER: builtins.int
195+
FILE_UIDS_FIELD_NUMBER: builtins.int
193196
FOLDERS_FIELD_NUMBER: builtins.int
194197
CATALOGS_FIELD_NUMBER: builtins.int
195198
TABLES_FIELD_NUMBER: builtins.int
196199
@property
197200
def table_uids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
198201
"""The table uids to include in the context."""
199202
@property
203+
def folder_uids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
204+
"""The folder uids to include in the context."""
205+
@property
206+
def catalog_uids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
207+
"""The catalog uids to include in the context."""
208+
@property
209+
def file_uids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
210+
"""The file uids to include in the context."""
211+
@property
200212
def folders(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ChatContext.Folder]:
201213
"""The folders to include in the context."""
202214
@property
@@ -209,11 +221,14 @@ class ChatContext(google.protobuf.message.Message):
209221
self,
210222
*,
211223
table_uids: collections.abc.Iterable[builtins.str] | None = ...,
224+
folder_uids: collections.abc.Iterable[builtins.str] | None = ...,
225+
catalog_uids: collections.abc.Iterable[builtins.str] | None = ...,
226+
file_uids: collections.abc.Iterable[builtins.str] | None = ...,
212227
folders: collections.abc.Iterable[global___ChatContext.Folder] | None = ...,
213228
catalogs: collections.abc.Iterable[global___ChatContext.Catalog] | None = ...,
214229
tables: collections.abc.Iterable[global___ChatContext.Table] | None = ...,
215230
) -> None: ...
216-
def ClearField(self, field_name: typing_extensions.Literal["catalogs", b"catalogs", "folders", b"folders", "table_uids", b"table_uids", "tables", b"tables"]) -> None: ...
231+
def ClearField(self, field_name: typing_extensions.Literal["catalog_uids", b"catalog_uids", "catalogs", b"catalogs", "file_uids", b"file_uids", "folder_uids", b"folder_uids", "folders", b"folders", "table_uids", b"table_uids", "tables", b"tables"]) -> None: ...
217232

218233
global___ChatContext = ChatContext
219234

0 commit comments

Comments
 (0)