Skip to content

Commit

Permalink
chore: auto-gen by protobufs
Browse files Browse the repository at this point in the history
triggered by commit: instill-ai/protobufs@cd25786
  • Loading branch information
droplet-bot committed Sep 25, 2024
1 parent 27c951b commit 95ab771
Show file tree
Hide file tree
Showing 5 changed files with 250 additions and 6 deletions.
30 changes: 27 additions & 3 deletions app/app/v1alpha/app_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

88 changes: 88 additions & 0 deletions app/app/v1alpha/app_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -457,3 +457,91 @@ class UpdateAIAssistantAppPlaygroundResponse(google.protobuf.message.Message):
) -> None: ...

global___UpdateAIAssistantAppPlaygroundResponse = UpdateAIAssistantAppPlaygroundResponse

@typing_extensions.final
class RestartPlaygroundConversationRequest(google.protobuf.message.Message):
"""RestartPlaygroundConversationRequest represents a request to restart a playground conversation."""

DESCRIPTOR: google.protobuf.descriptor.Descriptor

NAMESPACE_ID_FIELD_NUMBER: builtins.int
APP_ID_FIELD_NUMBER: builtins.int
namespace_id: builtins.str
"""The namespace id."""
app_id: builtins.str
"""The app id."""
def __init__(
self,
*,
namespace_id: builtins.str = ...,
app_id: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "namespace_id", b"namespace_id"]) -> None: ...

global___RestartPlaygroundConversationRequest = RestartPlaygroundConversationRequest

@typing_extensions.final
class RestartPlaygroundConversationResponse(google.protobuf.message.Message):
"""RestartPlaygroundConversationResponse represents a response for restarting a playground conversation."""

DESCRIPTOR: google.protobuf.descriptor.Descriptor

CONVERSATION_UID_FIELD_NUMBER: builtins.int
CONVERSATION_ID_FIELD_NUMBER: builtins.int
conversation_uid: builtins.str
"""Conversation uid"""
conversation_id: builtins.str
"""Conversation id. this is generated by the server."""
def __init__(
self,
*,
conversation_uid: builtins.str = ...,
conversation_id: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal["conversation_id", b"conversation_id", "conversation_uid", b"conversation_uid"]) -> None: ...

global___RestartPlaygroundConversationResponse = RestartPlaygroundConversationResponse

@typing_extensions.final
class GetPlaygroundConversationRequest(google.protobuf.message.Message):
"""GetPlaygroundConversationRequest represents a request to get a playground conversation."""

DESCRIPTOR: google.protobuf.descriptor.Descriptor

NAMESPACE_ID_FIELD_NUMBER: builtins.int
APP_ID_FIELD_NUMBER: builtins.int
namespace_id: builtins.str
"""The namespace id."""
app_id: builtins.str
"""The app id."""
def __init__(
self,
*,
namespace_id: builtins.str = ...,
app_id: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "namespace_id", b"namespace_id"]) -> None: ...

global___GetPlaygroundConversationRequest = GetPlaygroundConversationRequest

@typing_extensions.final
class GetPlaygroundConversationResponse(google.protobuf.message.Message):
"""GetPlaygroundConversationResponse represents a response for getting a playground conversation."""

DESCRIPTOR: google.protobuf.descriptor.Descriptor

CONVERSATION_UID_FIELD_NUMBER: builtins.int
CONVERSATION_ID_FIELD_NUMBER: builtins.int
conversation_uid: builtins.str
"""The conversation uid."""
conversation_id: builtins.str
"""The conversation id."""
def __init__(
self,
*,
conversation_uid: builtins.str = ...,
conversation_id: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal["conversation_id", b"conversation_id", "conversation_uid", b"conversation_uid"]) -> None: ...

global___GetPlaygroundConversationResponse = GetPlaygroundConversationResponse
Loading

0 comments on commit 95ab771

Please sign in to comment.