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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright 2022 Google LLC
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "1.26.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright 2022 Google LLC
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "1.26.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,13 @@
ExportAgentResponse,
GetAgentRequest,
GetAgentValidationResultRequest,
GetGenerativeSettingsRequest,
ListAgentsRequest,
ListAgentsResponse,
RestoreAgentRequest,
SpeechToTextSettings,
UpdateAgentRequest,
UpdateGenerativeSettingsRequest,
ValidateAgentRequest,
)
from .types.audio_config import (
Expand All @@ -78,6 +80,7 @@
ListChangelogsRequest,
ListChangelogsResponse,
)
from .types.data_store_connection import DataStoreConnection, DataStoreType
from .types.deployment import (
Deployment,
GetDeploymentRequest,
Expand Down Expand Up @@ -149,6 +152,7 @@
)
from .types.fulfillment import Fulfillment
from .types.gcs import GcsDestination
from .types.generative_settings import GenerativeSettings
from .types.import_strategy import ImportStrategy
from .types.intent import (
CreateIntentRequest,
Expand All @@ -166,13 +170,15 @@
EventHandler,
Form,
GetPageRequest,
KnowledgeConnectorSettings,
ListPagesRequest,
ListPagesResponse,
Page,
TransitionRoute,
UpdatePageRequest,
)
from .types.response_message import ResponseMessage
from .types.safety_settings import SafetySettings
from .types.security_settings import (
CreateSecuritySettingsRequest,
DeleteSecuritySettingsRequest,
Expand Down Expand Up @@ -336,6 +342,8 @@
"CreateVersionOperationMetadata",
"CreateVersionRequest",
"CreateWebhookRequest",
"DataStoreConnection",
"DataStoreType",
"DeleteAgentRequest",
"DeleteEntityTypeRequest",
"DeleteEnvironmentRequest",
Expand Down Expand Up @@ -380,6 +388,7 @@
"FulfillIntentResponse",
"Fulfillment",
"GcsDestination",
"GenerativeSettings",
"GetAgentRequest",
"GetAgentValidationResultRequest",
"GetChangelogRequest",
Expand All @@ -389,6 +398,7 @@
"GetExperimentRequest",
"GetFlowRequest",
"GetFlowValidationResultRequest",
"GetGenerativeSettingsRequest",
"GetIntentRequest",
"GetPageRequest",
"GetSecuritySettingsRequest",
Expand All @@ -410,6 +420,7 @@
"IntentInput",
"IntentView",
"IntentsClient",
"KnowledgeConnectorSettings",
"ListAgentsRequest",
"ListAgentsResponse",
"ListChangelogsRequest",
Expand Down Expand Up @@ -470,6 +481,7 @@
"RunTestCaseMetadata",
"RunTestCaseRequest",
"RunTestCaseResponse",
"SafetySettings",
"SecuritySettings",
"SecuritySettingsServiceClient",
"SentimentAnalysisResult",
Expand Down Expand Up @@ -508,6 +520,7 @@
"UpdateEnvironmentRequest",
"UpdateExperimentRequest",
"UpdateFlowRequest",
"UpdateGenerativeSettingsRequest",
"UpdateIntentRequest",
"UpdatePageRequest",
"UpdateSecuritySettingsRequest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
"get_agent_validation_result"
]
},
"GetGenerativeSettings": {
"methods": [
"get_generative_settings"
]
},
"ListAgents": {
"methods": [
"list_agents"
Expand All @@ -50,6 +55,11 @@
"update_agent"
]
},
"UpdateGenerativeSettings": {
"methods": [
"update_generative_settings"
]
},
"ValidateAgent": {
"methods": [
"validate_agent"
Expand Down Expand Up @@ -85,6 +95,11 @@
"get_agent_validation_result"
]
},
"GetGenerativeSettings": {
"methods": [
"get_generative_settings"
]
},
"ListAgents": {
"methods": [
"list_agents"
Expand All @@ -100,6 +115,11 @@
"update_agent"
]
},
"UpdateGenerativeSettings": {
"methods": [
"update_generative_settings"
]
},
"ValidateAgent": {
"methods": [
"validate_agent"
Expand Down Expand Up @@ -135,6 +155,11 @@
"get_agent_validation_result"
]
},
"GetGenerativeSettings": {
"methods": [
"get_generative_settings"
]
},
"ListAgents": {
"methods": [
"list_agents"
Expand All @@ -150,6 +175,11 @@
"update_agent"
]
},
"UpdateGenerativeSettings": {
"methods": [
"update_generative_settings"
]
},
"ValidateAgent": {
"methods": [
"validate_agent"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright 2022 Google LLC
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "1.26.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Loading