Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
AssistantService
----------------------------------

.. automodule:: google.cloud.discoveryengine_v1.services.assistant_service
:members:
:inherited-members:
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Services for Google Cloud Discoveryengine v1 API
.. toctree::
:maxdepth: 2

assistant_service
cmek_config_service
completion_service
control_service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.13.9" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
__version__ = package_version.__version__


from .services.assistant_service import (
AssistantServiceAsyncClient,
AssistantServiceClient,
)
from .services.cmek_config_service import (
CmekConfigServiceAsyncClient,
CmekConfigServiceClient,
Expand Down Expand Up @@ -74,6 +78,17 @@
UserLicenseServiceClient,
)
from .types.answer import Answer
from .types.assist_answer import (
AssistAnswer,
AssistantContent,
AssistantGroundedContent,
)
from .types.assistant import Assistant
from .types.assistant_service import (
AssistUserMetadata,
StreamAssistRequest,
StreamAssistResponse,
)
from .types.chunk import Chunk
from .types.cmek_config_service import (
CmekConfig,
Expand Down Expand Up @@ -325,6 +340,7 @@
)

__all__ = (
"AssistantServiceAsyncClient",
"CmekConfigServiceAsyncClient",
"CompletionServiceAsyncClient",
"ControlServiceAsyncClient",
Expand All @@ -349,6 +365,12 @@
"Answer",
"AnswerQueryRequest",
"AnswerQueryResponse",
"AssistAnswer",
"AssistUserMetadata",
"Assistant",
"AssistantContent",
"AssistantGroundedContent",
"AssistantServiceClient",
"BatchCreateTargetSiteMetadata",
"BatchCreateTargetSitesRequest",
"BatchCreateTargetSitesResponse",
Expand Down Expand Up @@ -565,6 +587,8 @@
"Sitemap",
"SolutionType",
"SpannerSource",
"StreamAssistRequest",
"StreamAssistResponse",
"SuggestionDenyListEntry",
"TargetSite",
"TextInput",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,40 @@
"protoPackage": "google.cloud.discoveryengine.v1",
"schema": "1.0",
"services": {
"AssistantService": {
"clients": {
"grpc": {
"libraryClient": "AssistantServiceClient",
"rpcs": {
"StreamAssist": {
"methods": [
"stream_assist"
]
}
}
},
"grpc-async": {
"libraryClient": "AssistantServiceAsyncClient",
"rpcs": {
"StreamAssist": {
"methods": [
"stream_assist"
]
}
}
},
"rest": {
"libraryClient": "AssistantServiceClient",
"rpcs": {
"StreamAssist": {
"methods": [
"stream_assist"
]
}
}
}
}
},
"CmekConfigService": {
"clients": {
"grpc": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.13.9" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from .async_client import AssistantServiceAsyncClient
from .client import AssistantServiceClient

__all__ = (
"AssistantServiceClient",
"AssistantServiceAsyncClient",
)
Loading
Loading