Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added generative AI, safety/security and speech endpointing settings #11621

Merged
merged 3 commits into from
Aug 31, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,13 @@
ExportAgentResponse,
GetAgentRequest,
GetAgentValidationResultRequest,
GetGenerativeSettingsRequest,
ListAgentsRequest,
ListAgentsResponse,
RestoreAgentRequest,
SpeechToTextSettings,
UpdateAgentRequest,
UpdateGenerativeSettingsRequest,
ValidateAgentRequest,
)
from google.cloud.dialogflowcx_v3.types.audio_config import (
Expand All @@ -117,6 +119,10 @@
ListChangelogsRequest,
ListChangelogsResponse,
)
from google.cloud.dialogflowcx_v3.types.data_store_connection import (
DataStoreConnection,
DataStoreType,
)
from google.cloud.dialogflowcx_v3.types.deployment import (
Deployment,
GetDeploymentRequest,
Expand Down Expand Up @@ -188,6 +194,7 @@
)
from google.cloud.dialogflowcx_v3.types.fulfillment import Fulfillment
from google.cloud.dialogflowcx_v3.types.gcs import GcsDestination
from google.cloud.dialogflowcx_v3.types.generative_settings import GenerativeSettings
from google.cloud.dialogflowcx_v3.types.import_strategy import ImportStrategy
from google.cloud.dialogflowcx_v3.types.intent import (
CreateIntentRequest,
Expand All @@ -205,13 +212,15 @@
EventHandler,
Form,
GetPageRequest,
KnowledgeConnectorSettings,
ListPagesRequest,
ListPagesResponse,
Page,
TransitionRoute,
UpdatePageRequest,
)
from google.cloud.dialogflowcx_v3.types.response_message import ResponseMessage
from google.cloud.dialogflowcx_v3.types.safety_settings import SafetySettings
from google.cloud.dialogflowcx_v3.types.security_settings import (
CreateSecuritySettingsRequest,
DeleteSecuritySettingsRequest,
Expand Down Expand Up @@ -370,11 +379,13 @@
"ExportAgentResponse",
"GetAgentRequest",
"GetAgentValidationResultRequest",
"GetGenerativeSettingsRequest",
"ListAgentsRequest",
"ListAgentsResponse",
"RestoreAgentRequest",
"SpeechToTextSettings",
"UpdateAgentRequest",
"UpdateGenerativeSettingsRequest",
"ValidateAgentRequest",
"InputAudioConfig",
"OutputAudioConfig",
Expand All @@ -390,6 +401,8 @@
"GetChangelogRequest",
"ListChangelogsRequest",
"ListChangelogsResponse",
"DataStoreConnection",
"DataStoreType",
"Deployment",
"GetDeploymentRequest",
"ListDeploymentsRequest",
Expand Down Expand Up @@ -451,6 +464,7 @@
"ValidateFlowRequest",
"Fulfillment",
"GcsDestination",
"GenerativeSettings",
"ImportStrategy",
"CreateIntentRequest",
"DeleteIntentRequest",
Expand All @@ -465,12 +479,14 @@
"EventHandler",
"Form",
"GetPageRequest",
"KnowledgeConnectorSettings",
"ListPagesRequest",
"ListPagesResponse",
"Page",
"TransitionRoute",
"UpdatePageRequest",
"ResponseMessage",
"SafetySettings",
"CreateSecuritySettingsRequest",
"DeleteSecuritySettingsRequest",
"GetSecuritySettingsRequest",
Expand Down
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