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: [google-cloud-dialogflow-cx] add agent answer feedback capability #12034

Merged
merged 4 commits into from
Nov 20, 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.
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
Expand Up @@ -103,6 +103,7 @@
)
from google.cloud.dialogflowcx_v3.types.audio_config import (
AudioEncoding,
BargeInConfig,
InputAudioConfig,
OutputAudioConfig,
OutputAudioEncoding,
Expand Down Expand Up @@ -238,12 +239,16 @@
UpdateSecuritySettingsRequest,
)
from google.cloud.dialogflowcx_v3.types.session import (
AnswerFeedback,
AudioInput,
BoostSpec,
BoostSpecs,
CloudConversationDebuggingInfo,
DetectIntentRequest,
DetectIntentResponse,
DtmfInput,
EventInput,
FilterSpecs,
FulfillIntentRequest,
FulfillIntentResponse,
IntentInput,
Expand All @@ -253,10 +258,12 @@
QueryInput,
QueryParameters,
QueryResult,
SearchConfig,
SentimentAnalysisResult,
StreamingDetectIntentRequest,
StreamingDetectIntentResponse,
StreamingRecognitionResult,
SubmitAnswerFeedbackRequest,
TextInput,
)
from google.cloud.dialogflowcx_v3.types.session_entity_type import (
Expand Down Expand Up @@ -394,6 +401,7 @@
"UpdateAgentRequest",
"UpdateGenerativeSettingsRequest",
"ValidateAgentRequest",
"BargeInConfig",
"InputAudioConfig",
"OutputAudioConfig",
"SpeechWordInfo",
Expand Down Expand Up @@ -509,12 +517,16 @@
"ListSecuritySettingsResponse",
"SecuritySettings",
"UpdateSecuritySettingsRequest",
"AnswerFeedback",
"AudioInput",
"BoostSpec",
"BoostSpecs",
"CloudConversationDebuggingInfo",
"DetectIntentRequest",
"DetectIntentResponse",
"DtmfInput",
"EventInput",
"FilterSpecs",
"FulfillIntentRequest",
"FulfillIntentResponse",
"IntentInput",
Expand All @@ -524,10 +536,12 @@
"QueryInput",
"QueryParameters",
"QueryResult",
"SearchConfig",
"SentimentAnalysisResult",
"StreamingDetectIntentRequest",
"StreamingDetectIntentResponse",
"StreamingRecognitionResult",
"SubmitAnswerFeedbackRequest",
"TextInput",
"CreateSessionEntityTypeRequest",
"DeleteSessionEntityTypeRequest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
)
from .types.audio_config import (
AudioEncoding,
BargeInConfig,
InputAudioConfig,
OutputAudioConfig,
OutputAudioEncoding,
Expand Down Expand Up @@ -196,12 +197,16 @@
UpdateSecuritySettingsRequest,
)
from .types.session import (
AnswerFeedback,
AudioInput,
BoostSpec,
BoostSpecs,
CloudConversationDebuggingInfo,
DetectIntentRequest,
DetectIntentResponse,
DtmfInput,
EventInput,
FilterSpecs,
FulfillIntentRequest,
FulfillIntentResponse,
IntentInput,
Expand All @@ -211,10 +216,12 @@
QueryInput,
QueryParameters,
QueryResult,
SearchConfig,
SentimentAnalysisResult,
StreamingDetectIntentRequest,
StreamingDetectIntentResponse,
StreamingRecognitionResult,
SubmitAnswerFeedbackRequest,
TextInput,
)
from .types.session_entity_type import (
Expand Down Expand Up @@ -320,12 +327,16 @@
"Agent",
"AgentValidationResult",
"AgentsClient",
"AnswerFeedback",
"AudioEncoding",
"AudioInput",
"BargeInConfig",
"BatchDeleteTestCasesRequest",
"BatchRunTestCasesMetadata",
"BatchRunTestCasesRequest",
"BatchRunTestCasesResponse",
"BoostSpec",
"BoostSpecs",
"CalculateCoverageRequest",
"CalculateCoverageResponse",
"Changelog",
Expand Down Expand Up @@ -389,6 +400,7 @@
"ExportTestCasesMetadata",
"ExportTestCasesRequest",
"ExportTestCasesResponse",
"FilterSpecs",
"Flow",
"FlowImportStrategy",
"FlowValidationResult",
Expand Down Expand Up @@ -497,6 +509,7 @@
"RunTestCaseRequest",
"RunTestCaseResponse",
"SafetySettings",
"SearchConfig",
"SecuritySettings",
"SecuritySettingsServiceClient",
"SentimentAnalysisResult",
Expand All @@ -513,6 +526,7 @@
"StreamingDetectIntentRequest",
"StreamingDetectIntentResponse",
"StreamingRecognitionResult",
"SubmitAnswerFeedbackRequest",
"SynthesizeSpeechConfig",
"TestCase",
"TestCaseError",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1258,6 +1258,11 @@
"methods": [
"streaming_detect_intent"
]
},
"SubmitAnswerFeedback": {
"methods": [
"submit_answer_feedback"
]
}
}
},
Expand All @@ -1283,6 +1288,11 @@
"methods": [
"streaming_detect_intent"
]
},
"SubmitAnswerFeedback": {
"methods": [
"submit_answer_feedback"
]
}
}
},
Expand All @@ -1308,6 +1318,11 @@
"methods": [
"streaming_detect_intent"
]
},
"SubmitAnswerFeedback": {
"methods": [
"submit_answer_feedback"
]
}
}
}
Expand Down
Loading
Loading