├── .eslintrc.json ├── .flake8 ├── .github ├── .OwlBot.lock.yaml ├── .OwlBot.yaml ├── CODEOWNERS ├── CONTRIBUTING.md └── workflows │ ├── conversation-design.yml │ ├── divebooker-agent.yaml │ ├── inactive │ ├── codeql.yml │ ├── dialogflow-cx-python.yaml │ └── linter.yaml │ ├── lint-markdown.yaml │ ├── lint-terraform.yaml │ ├── lint-yaml.yaml │ ├── scorecards.yml │ ├── shirt-order-agent-terraform.yaml │ ├── vpc-sc-auth-server.yaml │ ├── vpc-sc-demo-backend.yaml │ ├── vpc-sc-demo-frontend.yaml │ ├── vpc-sc-demo-reverse-proxy.yaml │ ├── vpc-sc-demo-terraform.yaml │ └── vpc-sc-demo-webhook.yaml ├── .gitignore ├── .jscpd.json ├── .markdowmlint.jsonc ├── .mypy.ini ├── .prettierrc.json ├── .python-lint ├── .repo-metadata.json ├── .shellcheckrc ├── .stylelintrc.json ├── .textlintrc ├── .tflint.hcl ├── .yaml-lint.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── blood-donation-agent ├── exported_agent_Lifeblood Donation Agent.zip └── site │ ├── .firebaserc │ ├── .gitignore │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── app.js │ ├── firebase.json │ ├── package-lock.json │ ├── package.json │ └── views │ ├── assets │ ├── brand │ │ ├── bootstrap-logo-white.svg │ │ └── bootstrap-logo.svg │ └── dist │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.min.css │ │ ├── bootstrap.rtl.min.css.map │ │ └── starter-template.css │ │ └── js │ │ ├── bootstrap.bundle.min.js │ │ └── bootstrap.bundle.min.js.map │ ├── img │ └── qr-code.svg │ └── index.html ├── ccai-insights-sample-data ├── README.md ├── generate-call-logs.py ├── output │ └── .gitkeep ├── remove-all-conversations.sh └── synthetic-convo-insights.py ├── community ├── CODEOWNERS └── README.md ├── conversation-design ├── .firebaserc ├── .gitignore ├── .markdownlint.yaml ├── docs │ ├── building-blocks │ │ ├── account-linking.md │ │ ├── discovery.md │ │ ├── helpers.md │ │ ├── notifications.md │ │ ├── overview.md │ │ └── transactions.md │ ├── conversation-design-process │ │ ├── create-a-persona.md │ │ ├── design-for-the-long-tail.md │ │ ├── gather-requirements.md │ │ ├── help-users-find-your-action.md │ │ ├── how-do-i-get-started.md │ │ ├── is-conversation-the-right-fit.md │ │ ├── scale-your-design.md │ │ ├── test-and-iterate.md │ │ └── write-sample-dialogs.md │ ├── conversation-design-workshop.md │ ├── conversational-components │ │ ├── acknowledgements.md │ │ ├── apologies.md │ │ ├── chips.md │ │ ├── commands.md │ │ ├── confirmations.md │ │ ├── discourse-markers.md │ │ ├── earcons.md │ │ ├── endings.md │ │ ├── errors.md │ │ ├── greetings.md │ │ ├── informational-statements.md │ │ ├── overview.md │ │ ├── questions.md │ │ └── suggestions.md │ ├── index.md │ ├── learn-about-conversation.md │ ├── static │ │ ├── 80-20-diagram.png │ │ ├── abandonquit-do.png │ │ ├── abandonquit-dont.png │ │ ├── account-linking.png │ │ ├── ackconfirm-do.png │ │ ├── ackconfirm-dont.png │ │ ├── acklist-do.png │ │ ├── acklist-dont.png │ │ ├── ackrefusal-do.png │ │ ├── ackrefusal-dont.png │ │ ├── additionalinfo-do.png │ │ ├── additionalinfo-dont.png │ │ ├── apology-do.png │ │ ├── apology-dont.png │ │ ├── avoidjargon-do.png │ │ ├── avoidjargon-dont.png │ │ ├── avoidniceties-do.png │ │ ├── avoidniceties-dont.png │ │ ├── backontrack-do.png │ │ ├── backontrack-dont.png │ │ ├── basiccardmapped.png │ │ ├── bebrief-do.png │ │ ├── bebrief-dont.png │ │ ├── benefits-do.png │ │ ├── benefits-dont.png │ │ ├── browsingcarouselmapped.png │ │ ├── capitalize-do.png │ │ ├── capitalize-dont.png │ │ ├── carouselmapped.png │ │ ├── chips-do.png │ │ ├── chips-dont.png │ │ ├── choice-do.png │ │ ├── choice-dont.png │ │ ├── commas-do.png │ │ ├── commas-dont.png │ │ ├── common-detours.png │ │ ├── complementarycolor.png │ │ ├── completed2-do.png │ │ ├── completed2-dont.png │ │ ├── confirm-explicit.png │ │ ├── confirm-implicit.png │ │ ├── confirmactions.png │ │ ├── confirmcompleted-do.png │ │ ├── confirmcompleted-dont.png │ │ ├── confirmparameters.png │ │ ├── context-do.png │ │ ├── context-dont.png │ │ ├── contractions-do.png │ │ ├── contractions-dont.png │ │ ├── conversation-design-workshop.pdf │ │ ├── conversational-components-example1.png │ │ ├── conversational-components-example2.png │ │ ├── conversational-components-example3.png │ │ ├── corrections1step-do.png │ │ ├── corrections1step-dont.png │ │ ├── descriptions-do.png │ │ ├── descriptions-dont.png │ │ ├── design-process-flowchart.png │ │ ├── devicesgroup1-center.png │ │ ├── devicesgroup2-center.png │ │ ├── devicesgroup3-center.png │ │ ├── discourse-use1-do.png │ │ ├── discourse-use1-dont.png │ │ ├── discourse-use2-do.png │ │ ├── discourse-use2-dont.png │ │ ├── discourse-use2.1-do.png │ │ ├── discourse-use3-do.png │ │ ├── discourse-use3-dont.png │ │ ├── discourse-use4-do.png │ │ ├── discourse-use4-dont.png │ │ ├── discourse-use5-do.png │ │ ├── discourse-use5-dont.png │ │ ├── discover.png │ │ ├── earconuse-do.png │ │ ├── earconuse-dont.png │ │ ├── endings-handoff.png │ │ ├── endings-unsupportedintent-do.png │ │ ├── endings-unsupportedintent-dont.png │ │ ├── endingserrors-do.png │ │ ├── endingserrors-dont.png │ │ ├── endingsgoodbye-do.png │ │ ├── endingsgoodbye-dont.png │ │ ├── errors-1stlevelnoinput1-do.png │ │ ├── errors-1stlevelnoinput1-dont.png │ │ ├── errors-1stlevelnoinput2-do.png │ │ ├── errors-1stlevelnoinput2.1-do.png │ │ ├── errors-1stlevelnoinput3-do.png │ │ ├── errors-1stlevelnomatch1-do.png │ │ ├── errors-1stlevelnomatch1-dont.png │ │ ├── errors-1stlevelnomatch2-do.png │ │ ├── errors-1stlevelnomatch2-dont.png │ │ ├── errors-1stlevelnomatch3-do.png │ │ ├── errors-1stlevelnomatch3.2-do.png │ │ ├── errors-2ndlevelnoinput-do.png │ │ ├── errors-2ndlevelnomatch1-do.png │ │ ├── errors-2ndlevelnomatch1-dont.png │ │ ├── errors-2ndlevelnomatch2-do.png │ │ ├── errors-2ndlevelnomatch2-dont.png │ │ ├── errors-maxnoinput-do.png │ │ ├── errors-maxnomatch1-do.png │ │ ├── errors-maxnomatch1-dont.png │ │ ├── errors-maxnomatch2-do.png │ │ ├── errors-maxnomatch2-dont.png │ │ ├── errors-systemerrors1-do.png │ │ ├── errors-systemerrors2-do.png │ │ ├── errors-whynoinputs1.png │ │ ├── errors-whynoinputs2.png │ │ ├── errors-whynoinputs3.png │ │ ├── errors-whynoinputs4.png │ │ ├── errors-whynomatch1.png │ │ ├── errors-whynomatch2.png │ │ ├── errors-whynomatch3.png │ │ ├── errors-whynomatch4.png │ │ ├── example1.png │ │ ├── example2.png │ │ ├── examples-do.png │ │ ├── examples-dont.png │ │ ├── exclamation-do.png │ │ ├── exclamation-dont.png │ │ ├── explicitconfirm-actions-do.png │ │ ├── explicitconfirm-actions-dont.png │ │ ├── explicitconfirm-parameters-do.png │ │ ├── explicitconfirm-parameters-dont.png │ │ ├── focus-do.png │ │ ├── focus-dont.png │ │ ├── focuscommands-do.png │ │ ├── focuscommands-dont.png │ │ ├── gather-requirements-1.jpg │ │ ├── gather-requirements-2.jpg │ │ ├── gather-requirements-3.jpg │ │ ├── gather-requirements-4.jpg │ │ ├── greetings-google-io-do.png │ │ ├── greetings-google-io-dont1.png │ │ ├── greetings-google-io-dont2.png │ │ ├── greetings-numbergenie1-do.png │ │ ├── greetings-numbergenie1-dont.png │ │ ├── greetings-numbergenie1.1-dont.png │ │ ├── greetings-numbergenie2-do.png │ │ ├── greetings-numbergenie2-dont.png │ │ ├── greetings-numbergenie2.1-dont.png │ │ ├── greetings-numbergenie3-do.png │ │ ├── greetings-numbergenie3-dont.png │ │ ├── greetings-numbergenie3.1-dont.png │ │ ├── gsi-oauth.png │ │ ├── gsi-only.png │ │ ├── guidelinesusage3-do.png │ │ ├── guidelinesusage3-dont.png │ │ ├── head-intents-supplementals.png │ │ ├── identify-users.png │ │ ├── implicature-do.png │ │ ├── implicature-dont.png │ │ ├── implicitconfirm-actions-do.png │ │ ├── implicitconfirm-actions-dont.png │ │ ├── implicitconfirm-parameters-do.png │ │ ├── implicitconfirm-parameters-dont.png │ │ ├── informative-do.png │ │ ├── informative-dont.png │ │ ├── infostmt-menus1-do.png │ │ ├── infostmt-menus1-dont.png │ │ ├── infostmt-menus2-do.png │ │ ├── infostmt-menus2-dont.png │ │ ├── intentcoverage-do.png │ │ ├── intentcoverage-dont.png │ │ ├── intro-anim.gif │ │ ├── io-action-diagram.png │ │ ├── listmappeddaisies.png │ │ ├── lists-avoid-do.png │ │ ├── lists-avoid-dont.png │ │ ├── long-tail.png │ │ ├── mediaplayermapped.png │ │ ├── moveforward-do.png │ │ ├── moveforward-dont.png │ │ ├── multi-no-device-do.png │ │ ├── multi-no-device-dont.png │ │ ├── multi-nodisplay.png │ │ ├── multi-novisual-no-device-do.png │ │ ├── multi-novisual-no-device-dont.png │ │ ├── multi-novisual.png │ │ ├── multi.png │ │ ├── multimodalcontext-do.png │ │ ├── multimodalcontext-dont.png │ │ ├── never-blame-the-user-do.png │ │ ├── never-blame-the-user-dont.png │ │ ├── neverblameanotherparty-do.png │ │ ├── neverblameanotherparty-dont.png │ │ ├── noconfirm-actions-do.png │ │ ├── noconfirm-actions-dont.png │ │ ├── noconfirm-parameters-do.png │ │ ├── noconfirm-parameters-dont.png │ │ ├── noconfirmation.png │ │ ├── noinputnomatch.png │ │ ├── notification-android.png │ │ ├── notification-flow-chart.png │ │ ├── notify-do.png │ │ ├── notify-dont.png │ │ ├── numerals-do.png │ │ ├── numerals-dont.png │ │ ├── optimize-do.png │ │ ├── optimize-dont.png │ │ ├── overview-do.png │ │ ├── overview-dont.png │ │ ├── overviews-do.png │ │ ├── overviews-dont.png │ │ ├── pesto-white.png │ │ ├── pesto-yellow.png │ │ ├── plainlanguage-2.png │ │ ├── plainlanguage-link.png │ │ ├── primarycolor.png │ │ ├── providerange-do.png │ │ ├── providerange-dont.png │ │ ├── providerange-newdo.png │ │ ├── providerange-newdont.png │ │ ├── put-deets-in-card-do.png │ │ ├── put-deets-in-card-dont.png │ │ ├── questions-critical-disambiguation-do.png │ │ ├── questions-critical-disambiguation-dont.png │ │ ├── questions-critical-errorhandling-do.png │ │ ├── questions-critical-errorhandling-dont.png │ │ ├── questions-critical-explicitconfirmations-do.png │ │ ├── questions-critical-explicitconfirmations-dont.png │ │ ├── questions-learnfromusers-do.png │ │ ├── questions-learnfromusers-dont.png │ │ ├── randomize-do.png │ │ ├── randomize-dont.png │ │ ├── refine.png │ │ ├── relationbtwncomponents2-do.png │ │ ├── relationbtwncomponents2-dont.png │ │ ├── relationbtwncomponents4-do.png │ │ ├── relationbtwncomponents4-dont.png │ │ ├── relationbtwncomponents5-do.png │ │ ├── relationbtwncomponents5-dont.png │ │ ├── relationbtwnprompts1-do.png │ │ ├── relationbtwnprompts1-dont.png │ │ ├── relationbtwnprompts2-do.png │ │ ├── relationbtwnprompts2-dont.png │ │ ├── relationship-between-prompts3do.png │ │ ├── relationship-between-prompts3dont.png │ │ ├── relationship-between-prompts4do.png │ │ ├── relationship-between-prompts4dont.png │ │ ├── relevance-do.png │ │ ├── relevance-dont.png │ │ ├── relevantactions.png │ │ ├── response-components.png │ │ ├── shaperound.png │ │ ├── shapesharp.png │ │ ├── shortlist-do.png │ │ ├── shortlist-dont.png │ │ ├── simple-do.png │ │ ├── simple-dont.png │ │ ├── simplewords-do.png │ │ ├── simplewords-dont.png │ │ ├── solution-do.png │ │ ├── solution-dont.png │ │ ├── speakclearly1-do.png │ │ ├── speakclearly1-dont.png │ │ ├── speakclearly2-do.png │ │ ├── speakclearly2-dont.png │ │ ├── speakclearly3-do.png │ │ ├── speakclearly3-dont.png │ │ ├── spoken-chips.png │ │ ├── spokenonly-a.png │ │ ├── spokenonly-b.png │ │ ├── suggestions-spokenprompts1-do.png │ │ ├── suggestions-spokenprompts1-dont.png │ │ ├── summarize-do.png │ │ ├── summarize-dont.png │ │ ├── supportcorrections-do.png │ │ ├── supportcorrections-dont.png │ │ ├── symbols-do.png │ │ ├── symbols-dont.png │ │ ├── tablecard-brevity-do.png │ │ ├── tablecard-brevity-dont.png │ │ ├── tablecard-prompts-do.png │ │ ├── tablecard-prompts-dont.png │ │ ├── tablecardmapped.png │ │ ├── time-do.png │ │ ├── time-dont.png │ │ ├── timetable.png │ │ ├── titles-do.png │ │ ├── titles-dont.png │ │ ├── titles-list-do.png │ │ ├── titles-list-dont.png │ │ ├── transparent-do.png │ │ ├── transparent-dont.png │ │ ├── turntaking-do.png │ │ ├── turntaking-dont.png │ │ ├── turntaking2-do.png │ │ ├── turntaking2-dont.png │ │ ├── typography-do.png │ │ ├── typography-dont.png │ │ ├── ui-specificdirections-do.png │ │ ├── ui-specificdirections-dont.png │ │ ├── unlinked-accounts.png │ │ ├── user-journey.jpg │ │ ├── user-persona-amy.jpg │ │ ├── usingpics-do.png │ │ ├── usingpics-dont.png │ │ ├── varygreet-2.png │ │ ├── varygreet-link.png │ │ ├── verbcommands-do.png │ │ ├── verbcommands-dont.png │ │ ├── visuals3-do.png │ │ ├── visuals3-dont.png │ │ ├── wide2narrowqs-table.png │ │ ├── wizard-of-oz.png │ │ ├── workshop-header.png │ │ ├── workshop-intro-slide.png │ │ ├── write-sample-dialog-map.jpg │ │ ├── writtencontractions-do.png │ │ └── writtencontractions-dont.png │ ├── style-guide │ │ ├── capitalization-and-punctuation.md │ │ └── language.md │ ├── style │ │ └── extra.css │ ├── visual-components │ │ ├── basic-card.md │ │ ├── browsing-carousel.md │ │ ├── carousel.md │ │ ├── customization.md │ │ ├── list.md │ │ ├── media-response.md │ │ ├── overview.md │ │ └── table.md │ └── what-is-conversation-design.md ├── firebase.json ├── mkdocs.yml └── requirements.txt ├── dialogflow-cx-nodejs └── package.json ├── dialogflow-cx ├── README.md ├── basic_webhook_sample.py ├── delegators │ ├── __init__.py │ ├── agent_delegator.py │ ├── auth_delegator.py │ ├── client_delegator.py │ ├── intent_delegator.py │ ├── page_delegator.py │ ├── sessions_delegator.py │ ├── start_flow_delegator.py │ ├── test_case_delegator.py │ └── webhook_delegator.py ├── dialogflow_sample.py ├── pytest.ini ├── requirements-test.txt ├── requirements.txt ├── set_session_param_sample.py ├── shirt-order-agent │ ├── README.md │ ├── agents.tf │ ├── entity-types.tf │ ├── flows.tf │ ├── images │ │ ├── order-agent-graph.png │ │ └── store-order-agent.png │ ├── intents.tf │ ├── pages.tf │ ├── provider.tf │ ├── run_tests.sh │ ├── tests │ │ ├── Dockerfile │ │ ├── requirements.txt │ │ └── test_terraform.py │ └── variables.tf ├── terraform │ └── main.tf ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_basic_webhook_sample.py │ ├── test_set_session_param_sample.py │ ├── test_validate_form_sample.py │ └── test_webhook.py ├── utilities.py ├── validate_form_sample.py ├── vpc-sc-auth-server │ ├── README.md │ ├── config.env │ ├── debug.sh │ ├── deploy.sh │ ├── server │ │ ├── Dockerfile │ │ ├── Procfile │ │ ├── aes_cipher.py │ │ ├── app.py │ │ ├── requirements-test.txt │ │ ├── requirements.txt │ │ ├── session.py │ │ ├── test_aes_cipher.py │ │ ├── test_app.py │ │ ├── test_session.py │ │ ├── test_utilities.py │ │ └── utilities.py │ └── setup.sh ├── vpc-sc-demo │ ├── Dockerfile │ ├── Dockerfile.debug │ ├── backend │ │ ├── analytics_blueprint.py │ │ ├── analytics_utilities.py │ │ ├── app.py │ │ ├── asset_blueprint.py │ │ ├── asset_utilities.py │ │ ├── conftest.py │ │ ├── create_keys.py │ │ ├── debug_runner.sh │ │ ├── frontend_blueprint.py │ │ ├── get_token.py │ │ ├── launchpad_blueprint.py │ │ ├── nginx.debug.conf │ │ ├── requirements-test.txt │ │ ├── requirements.txt │ │ ├── session_blueprint.py │ │ ├── session_utilities.py │ │ ├── status_blueprint.py │ │ ├── status_utilities.py │ │ ├── test_analytics_blueprint.py │ │ ├── test_analytics_utilities.py │ │ ├── test_app.py │ │ ├── test_asset_blueprint.py │ │ ├── test_asset_utilities.py │ │ ├── test_create_keys.py │ │ ├── test_frontend_blueprint.py │ │ ├── test_get_token.py │ │ ├── test_launchpad_blueprint.py │ │ ├── test_session_blueprint.py │ │ ├── test_session_utilities.py │ │ ├── test_status_blueprint.py │ │ ├── test_status_utilities.py │ │ ├── test_update_blueprint.py │ │ ├── test_update_utilities.py │ │ ├── update_blueprint.py │ │ └── update_utilities.py │ ├── components │ │ ├── agent │ │ │ ├── Dockerfile │ │ │ ├── deploy_agent.sh │ │ │ ├── main.tf │ │ │ └── provision_agent.sh │ │ ├── reverse_proxy_server │ │ │ ├── Dockerfile │ │ │ ├── deploy_reverse_proxy_server.sh │ │ │ ├── main.tf │ │ │ ├── proxy-server-src │ │ │ │ ├── Dockerfile │ │ │ │ ├── Procfile │ │ │ │ ├── app.py │ │ │ │ ├── requirements-test.txt │ │ │ │ ├── requirements.txt │ │ │ │ ├── startup_script.sh │ │ │ │ └── test_app.py │ │ │ ├── startup_script.sh │ │ │ └── wait_until_server_ready.sh │ │ ├── service_directory │ │ │ ├── deploy_service_directory.sh │ │ │ └── main.tf │ │ ├── vpc_network │ │ │ ├── deploy_vpc_network.sh │ │ │ └── main.tf │ │ └── webhook │ │ │ ├── deploy_webhook.sh │ │ │ ├── main.tf │ │ │ └── telecom-webhook-src │ │ │ ├── helpers.py │ │ │ ├── main.py │ │ │ ├── requirements-test.txt │ │ │ ├── requirements.txt │ │ │ └── test_main.py │ ├── config.env │ ├── debug.sh │ ├── deploy.sh │ ├── deploy │ │ ├── .terraformrc │ │ └── terraform │ │ │ ├── Dockerfile │ │ │ ├── main.tf │ │ │ ├── requirements-test.txt │ │ │ ├── service-directory │ │ │ └── main.tf │ │ │ ├── service-perimeter │ │ │ └── main.tf │ │ │ ├── services │ │ │ └── main.tf │ │ │ ├── test_runner.sh │ │ │ ├── test_terraform_module.py │ │ │ ├── vpc-network │ │ │ ├── main.tf │ │ │ ├── startup_script.sh │ │ │ └── wait_until_server_ready.sh │ │ │ └── webhook-agent │ │ │ ├── deploy_agent.sh │ │ │ └── main.tf │ ├── development.sh │ └── frontend │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── Analytics.js │ │ ├── App.js │ │ ├── App.test.js │ │ ├── AssetPollToggle.js │ │ ├── AssetStatusPanel.js │ │ ├── DataModel.js │ │ ├── Drawer.js │ │ ├── HomePage.js │ │ ├── InvertMenuSwitchesCheckbox.js │ │ ├── LiveDemoPrerequisites.js │ │ ├── PageContent.js │ │ ├── PrivacyPolicy.js │ │ ├── QueryPrincipal.js │ │ ├── SessionExpiredModal.js │ │ ├── SettingsPanel.js │ │ ├── ShowServicesPanelCheckbox.js │ │ ├── SnippetWithCopyButton.js │ │ ├── StateButtonGrid.js │ │ ├── StateSlides.js │ │ ├── StatusPollToggle.js │ │ ├── TutorialMode.js │ │ ├── TutorialPageIntroduction.js │ │ ├── TutorialPageTabs.js │ │ ├── UseQueryState.js │ │ ├── Utilities.js │ │ ├── VPC_SC_diagram_latest.pdf │ │ ├── arrow.png │ │ ├── btn_google_signin_light_normal_web@2x.png │ │ ├── index.css │ │ ├── index.js │ │ ├── location_settings.png │ │ ├── reportWebVitals.js │ │ ├── setupTests.js │ │ └── styles.css └── webhook │ ├── __init__.py │ └── main.py ├── divebooker-agent ├── README.md ├── divebooker-agent.zip └── images │ ├── divebooker-agent.png │ └── generative-response.png ├── export-data-from-genesys ├── README.MD ├── genesys.py └── requirements.txt ├── generative-chatbots ├── .eslintignore ├── .eslintrc.cjs ├── .firebaserc ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── firebase.json ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── prettier.config.js ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.postcss │ └── routes │ │ ├── +layout.svelte │ │ ├── +layout.ts │ │ ├── +page.svelte │ │ ├── bot1 │ │ └── +page.svelte │ │ ├── bot2 │ │ └── +page.svelte │ │ └── bot3 │ │ └── +page.svelte ├── static │ ├── agent.svg │ ├── dialogflow-logo.png │ ├── favicon.png │ ├── support.svg │ └── write.svg ├── svelte.config.js ├── tailwind.config.cjs ├── tsconfig.json └── vite.config.ts ├── goodbye-graffiti-agent ├── README.md ├── agent.zip ├── images │ ├── demo.png │ └── webhook.png ├── maps-function │ ├── index.js │ └── package.json └── site │ ├── .firebaserc │ ├── .gitignore │ ├── README.md │ ├── app.js │ ├── firebase.json │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── 404.html │ └── index.html │ └── views │ ├── assets │ ├── brand │ │ ├── bootstrap-logo-white.svg │ │ └── bootstrap-logo.svg │ └── dist │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.min.css │ │ ├── bootstrap.rtl.min.css.map │ │ └── starter-template.css │ │ └── js │ │ ├── bootstrap.bundle.min.js │ │ └── bootstrap.bundle.min.js.map │ ├── img │ └── call-companion-ui.png │ └── index.html ├── nlu-evaluation └── nlu_evaluation.ipynb ├── noxfile.py ├── oidc ├── .terraform.lock.hcl ├── main.tf ├── terraform ├── terraform.tfstate └── terraform.tfstate.backup ├── owlbot.py ├── package.json ├── pyproject.toml ├── tasks.py └── terrascan.toml /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=120 3 | -------------------------------------------------------------------------------- /.github/.OwlBot.lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/.OwlBot.lock.yaml -------------------------------------------------------------------------------- /.github/.OwlBot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/.OwlBot.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/conversation-design.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/conversation-design.yml -------------------------------------------------------------------------------- /.github/workflows/divebooker-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/divebooker-agent.yaml -------------------------------------------------------------------------------- /.github/workflows/inactive/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/inactive/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/inactive/dialogflow-cx-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/inactive/dialogflow-cx-python.yaml -------------------------------------------------------------------------------- /.github/workflows/inactive/linter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/inactive/linter.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-markdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/lint-markdown.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/lint-terraform.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/lint-yaml.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.github/workflows/shirt-order-agent-terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/shirt-order-agent-terraform.yaml -------------------------------------------------------------------------------- /.github/workflows/vpc-sc-auth-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/vpc-sc-auth-server.yaml -------------------------------------------------------------------------------- /.github/workflows/vpc-sc-demo-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/vpc-sc-demo-backend.yaml -------------------------------------------------------------------------------- /.github/workflows/vpc-sc-demo-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/vpc-sc-demo-frontend.yaml -------------------------------------------------------------------------------- /.github/workflows/vpc-sc-demo-reverse-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/vpc-sc-demo-reverse-proxy.yaml -------------------------------------------------------------------------------- /.github/workflows/vpc-sc-demo-terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/vpc-sc-demo-terraform.yaml -------------------------------------------------------------------------------- /.github/workflows/vpc-sc-demo-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.github/workflows/vpc-sc-demo-webhook.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.jscpd.json -------------------------------------------------------------------------------- /.markdowmlint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.markdowmlint.jsonc -------------------------------------------------------------------------------- /.mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.mypy.ini -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.python-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.python-lint -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-standard" 3 | } -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.textlintrc -------------------------------------------------------------------------------- /.tflint.hcl: -------------------------------------------------------------------------------- 1 | config { 2 | module = false 3 | } 4 | -------------------------------------------------------------------------------- /.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/.yaml-lint.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /blood-donation-agent/exported_agent_Lifeblood Donation Agent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/exported_agent_Lifeblood Donation Agent.zip -------------------------------------------------------------------------------- /blood-donation-agent/site/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/.firebaserc -------------------------------------------------------------------------------- /blood-donation-agent/site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/.gitignore -------------------------------------------------------------------------------- /blood-donation-agent/site/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /blood-donation-agent/site/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/.prettierignore -------------------------------------------------------------------------------- /blood-donation-agent/site/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/.prettierrc -------------------------------------------------------------------------------- /blood-donation-agent/site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/README.md -------------------------------------------------------------------------------- /blood-donation-agent/site/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/app.js -------------------------------------------------------------------------------- /blood-donation-agent/site/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/firebase.json -------------------------------------------------------------------------------- /blood-donation-agent/site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/package-lock.json -------------------------------------------------------------------------------- /blood-donation-agent/site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/package.json -------------------------------------------------------------------------------- /blood-donation-agent/site/views/assets/brand/bootstrap-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/assets/brand/bootstrap-logo-white.svg -------------------------------------------------------------------------------- /blood-donation-agent/site/views/assets/brand/bootstrap-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/assets/brand/bootstrap-logo.svg -------------------------------------------------------------------------------- /blood-donation-agent/site/views/assets/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/assets/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /blood-donation-agent/site/views/assets/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/assets/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /blood-donation-agent/site/views/assets/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/assets/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /blood-donation-agent/site/views/assets/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/assets/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /blood-donation-agent/site/views/assets/dist/css/starter-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/assets/dist/css/starter-template.css -------------------------------------------------------------------------------- /blood-donation-agent/site/views/assets/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/assets/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /blood-donation-agent/site/views/assets/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/assets/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /blood-donation-agent/site/views/img/qr-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/img/qr-code.svg -------------------------------------------------------------------------------- /blood-donation-agent/site/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/blood-donation-agent/site/views/index.html -------------------------------------------------------------------------------- /ccai-insights-sample-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/ccai-insights-sample-data/README.md -------------------------------------------------------------------------------- /ccai-insights-sample-data/generate-call-logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/ccai-insights-sample-data/generate-call-logs.py -------------------------------------------------------------------------------- /ccai-insights-sample-data/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccai-insights-sample-data/remove-all-conversations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/ccai-insights-sample-data/remove-all-conversations.sh -------------------------------------------------------------------------------- /ccai-insights-sample-data/synthetic-convo-insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/ccai-insights-sample-data/synthetic-convo-insights.py -------------------------------------------------------------------------------- /community/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/community/CODEOWNERS -------------------------------------------------------------------------------- /community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/community/README.md -------------------------------------------------------------------------------- /conversation-design/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/.firebaserc -------------------------------------------------------------------------------- /conversation-design/.gitignore: -------------------------------------------------------------------------------- 1 | .firebase 2 | site/ 3 | -------------------------------------------------------------------------------- /conversation-design/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/.markdownlint.yaml -------------------------------------------------------------------------------- /conversation-design/docs/building-blocks/account-linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/building-blocks/account-linking.md -------------------------------------------------------------------------------- /conversation-design/docs/building-blocks/discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/building-blocks/discovery.md -------------------------------------------------------------------------------- /conversation-design/docs/building-blocks/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/building-blocks/helpers.md -------------------------------------------------------------------------------- /conversation-design/docs/building-blocks/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/building-blocks/notifications.md -------------------------------------------------------------------------------- /conversation-design/docs/building-blocks/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/building-blocks/overview.md -------------------------------------------------------------------------------- /conversation-design/docs/building-blocks/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/building-blocks/transactions.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-process/create-a-persona.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-process/create-a-persona.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-process/design-for-the-long-tail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-process/design-for-the-long-tail.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-process/gather-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-process/gather-requirements.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-process/help-users-find-your-action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-process/help-users-find-your-action.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-process/how-do-i-get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-process/how-do-i-get-started.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-process/is-conversation-the-right-fit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-process/is-conversation-the-right-fit.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-process/scale-your-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-process/scale-your-design.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-process/test-and-iterate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-process/test-and-iterate.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-process/write-sample-dialogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-process/write-sample-dialogs.md -------------------------------------------------------------------------------- /conversation-design/docs/conversation-design-workshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversation-design-workshop.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/acknowledgements.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/apologies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/apologies.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/chips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/chips.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/commands.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/confirmations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/confirmations.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/discourse-markers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/discourse-markers.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/earcons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/earcons.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/endings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/endings.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/errors.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/greetings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/greetings.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/informational-statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/informational-statements.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/overview.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/questions.md -------------------------------------------------------------------------------- /conversation-design/docs/conversational-components/suggestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/conversational-components/suggestions.md -------------------------------------------------------------------------------- /conversation-design/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/index.md -------------------------------------------------------------------------------- /conversation-design/docs/learn-about-conversation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/learn-about-conversation.md -------------------------------------------------------------------------------- /conversation-design/docs/static/80-20-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/80-20-diagram.png -------------------------------------------------------------------------------- /conversation-design/docs/static/abandonquit-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/abandonquit-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/abandonquit-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/abandonquit-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/account-linking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/account-linking.png -------------------------------------------------------------------------------- /conversation-design/docs/static/ackconfirm-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/ackconfirm-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/ackconfirm-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/ackconfirm-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/acklist-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/acklist-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/acklist-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/acklist-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/ackrefusal-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/ackrefusal-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/ackrefusal-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/ackrefusal-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/additionalinfo-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/additionalinfo-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/additionalinfo-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/additionalinfo-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/apology-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/apology-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/apology-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/apology-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/avoidjargon-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/avoidjargon-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/avoidjargon-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/avoidjargon-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/avoidniceties-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/avoidniceties-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/avoidniceties-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/avoidniceties-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/backontrack-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/backontrack-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/backontrack-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/backontrack-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/basiccardmapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/basiccardmapped.png -------------------------------------------------------------------------------- /conversation-design/docs/static/bebrief-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/bebrief-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/bebrief-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/bebrief-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/benefits-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/benefits-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/benefits-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/benefits-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/browsingcarouselmapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/browsingcarouselmapped.png -------------------------------------------------------------------------------- /conversation-design/docs/static/capitalize-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/capitalize-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/capitalize-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/capitalize-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/carouselmapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/carouselmapped.png -------------------------------------------------------------------------------- /conversation-design/docs/static/chips-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/chips-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/chips-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/chips-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/choice-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/choice-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/choice-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/choice-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/commas-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/commas-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/commas-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/commas-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/common-detours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/common-detours.png -------------------------------------------------------------------------------- /conversation-design/docs/static/complementarycolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/complementarycolor.png -------------------------------------------------------------------------------- /conversation-design/docs/static/completed2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/completed2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/completed2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/completed2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/confirm-explicit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/confirm-explicit.png -------------------------------------------------------------------------------- /conversation-design/docs/static/confirm-implicit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/confirm-implicit.png -------------------------------------------------------------------------------- /conversation-design/docs/static/confirmactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/confirmactions.png -------------------------------------------------------------------------------- /conversation-design/docs/static/confirmcompleted-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/confirmcompleted-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/confirmcompleted-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/confirmcompleted-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/confirmparameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/confirmparameters.png -------------------------------------------------------------------------------- /conversation-design/docs/static/context-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/context-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/context-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/context-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/contractions-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/contractions-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/contractions-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/contractions-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/conversation-design-workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/conversation-design-workshop.pdf -------------------------------------------------------------------------------- /conversation-design/docs/static/conversational-components-example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/conversational-components-example1.png -------------------------------------------------------------------------------- /conversation-design/docs/static/conversational-components-example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/conversational-components-example2.png -------------------------------------------------------------------------------- /conversation-design/docs/static/conversational-components-example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/conversational-components-example3.png -------------------------------------------------------------------------------- /conversation-design/docs/static/corrections1step-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/corrections1step-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/corrections1step-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/corrections1step-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/descriptions-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/descriptions-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/descriptions-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/descriptions-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/design-process-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/design-process-flowchart.png -------------------------------------------------------------------------------- /conversation-design/docs/static/devicesgroup1-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/devicesgroup1-center.png -------------------------------------------------------------------------------- /conversation-design/docs/static/devicesgroup2-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/devicesgroup2-center.png -------------------------------------------------------------------------------- /conversation-design/docs/static/devicesgroup3-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/devicesgroup3-center.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use2.1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use2.1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use3-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use3-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use3-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use3-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use4-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use4-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use4-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use4-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use5-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use5-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discourse-use5-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discourse-use5-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/discover.png -------------------------------------------------------------------------------- /conversation-design/docs/static/earconuse-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/earconuse-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/earconuse-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/earconuse-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/endings-handoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/endings-handoff.png -------------------------------------------------------------------------------- /conversation-design/docs/static/endings-unsupportedintent-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/endings-unsupportedintent-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/endings-unsupportedintent-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/endings-unsupportedintent-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/endingserrors-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/endingserrors-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/endingserrors-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/endingserrors-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/endingsgoodbye-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/endingsgoodbye-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/endingsgoodbye-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/endingsgoodbye-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnoinput1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnoinput1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnoinput1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnoinput1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnoinput2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnoinput2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnoinput2.1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnoinput2.1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnoinput3-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnoinput3-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnomatch1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnomatch1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnomatch1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnomatch1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnomatch2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnomatch2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnomatch2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnomatch2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnomatch3-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnomatch3-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-1stlevelnomatch3.2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-1stlevelnomatch3.2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-2ndlevelnoinput-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-2ndlevelnoinput-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-2ndlevelnomatch1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-2ndlevelnomatch1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-2ndlevelnomatch1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-2ndlevelnomatch1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-2ndlevelnomatch2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-2ndlevelnomatch2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-2ndlevelnomatch2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-2ndlevelnomatch2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-maxnoinput-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-maxnoinput-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-maxnomatch1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-maxnomatch1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-maxnomatch1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-maxnomatch1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-maxnomatch2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-maxnomatch2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-maxnomatch2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-maxnomatch2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-systemerrors1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-systemerrors1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-systemerrors2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-systemerrors2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-whynoinputs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-whynoinputs1.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-whynoinputs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-whynoinputs2.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-whynoinputs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-whynoinputs3.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-whynoinputs4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-whynoinputs4.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-whynomatch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-whynomatch1.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-whynomatch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-whynomatch2.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-whynomatch3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-whynomatch3.png -------------------------------------------------------------------------------- /conversation-design/docs/static/errors-whynomatch4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/errors-whynomatch4.png -------------------------------------------------------------------------------- /conversation-design/docs/static/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/example1.png -------------------------------------------------------------------------------- /conversation-design/docs/static/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/example2.png -------------------------------------------------------------------------------- /conversation-design/docs/static/examples-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/examples-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/examples-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/examples-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/exclamation-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/exclamation-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/exclamation-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/exclamation-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/explicitconfirm-actions-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/explicitconfirm-actions-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/explicitconfirm-actions-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/explicitconfirm-actions-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/explicitconfirm-parameters-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/explicitconfirm-parameters-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/explicitconfirm-parameters-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/explicitconfirm-parameters-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/focus-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/focus-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/focus-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/focus-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/focuscommands-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/focuscommands-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/focuscommands-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/focuscommands-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/gather-requirements-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/gather-requirements-1.jpg -------------------------------------------------------------------------------- /conversation-design/docs/static/gather-requirements-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/gather-requirements-2.jpg -------------------------------------------------------------------------------- /conversation-design/docs/static/gather-requirements-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/gather-requirements-3.jpg -------------------------------------------------------------------------------- /conversation-design/docs/static/gather-requirements-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/gather-requirements-4.jpg -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-google-io-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-google-io-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-google-io-dont1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-google-io-dont1.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-google-io-dont2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-google-io-dont2.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-numbergenie1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-numbergenie1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-numbergenie1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-numbergenie1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-numbergenie1.1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-numbergenie1.1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-numbergenie2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-numbergenie2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-numbergenie2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-numbergenie2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-numbergenie2.1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-numbergenie2.1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-numbergenie3-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-numbergenie3-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-numbergenie3-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-numbergenie3-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/greetings-numbergenie3.1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/greetings-numbergenie3.1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/gsi-oauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/gsi-oauth.png -------------------------------------------------------------------------------- /conversation-design/docs/static/gsi-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/gsi-only.png -------------------------------------------------------------------------------- /conversation-design/docs/static/guidelinesusage3-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/guidelinesusage3-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/guidelinesusage3-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/guidelinesusage3-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/head-intents-supplementals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/head-intents-supplementals.png -------------------------------------------------------------------------------- /conversation-design/docs/static/identify-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/identify-users.png -------------------------------------------------------------------------------- /conversation-design/docs/static/implicature-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/implicature-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/implicature-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/implicature-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/implicitconfirm-actions-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/implicitconfirm-actions-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/implicitconfirm-actions-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/implicitconfirm-actions-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/implicitconfirm-parameters-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/implicitconfirm-parameters-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/implicitconfirm-parameters-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/implicitconfirm-parameters-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/informative-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/informative-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/informative-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/informative-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/infostmt-menus1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/infostmt-menus1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/infostmt-menus1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/infostmt-menus1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/infostmt-menus2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/infostmt-menus2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/infostmt-menus2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/infostmt-menus2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/intentcoverage-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/intentcoverage-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/intentcoverage-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/intentcoverage-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/intro-anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/intro-anim.gif -------------------------------------------------------------------------------- /conversation-design/docs/static/io-action-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/io-action-diagram.png -------------------------------------------------------------------------------- /conversation-design/docs/static/listmappeddaisies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/listmappeddaisies.png -------------------------------------------------------------------------------- /conversation-design/docs/static/lists-avoid-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/lists-avoid-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/lists-avoid-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/lists-avoid-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/long-tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/long-tail.png -------------------------------------------------------------------------------- /conversation-design/docs/static/mediaplayermapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/mediaplayermapped.png -------------------------------------------------------------------------------- /conversation-design/docs/static/moveforward-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/moveforward-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/moveforward-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/moveforward-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/multi-no-device-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/multi-no-device-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/multi-no-device-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/multi-no-device-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/multi-nodisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/multi-nodisplay.png -------------------------------------------------------------------------------- /conversation-design/docs/static/multi-novisual-no-device-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/multi-novisual-no-device-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/multi-novisual-no-device-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/multi-novisual-no-device-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/multi-novisual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/multi-novisual.png -------------------------------------------------------------------------------- /conversation-design/docs/static/multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/multi.png -------------------------------------------------------------------------------- /conversation-design/docs/static/multimodalcontext-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/multimodalcontext-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/multimodalcontext-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/multimodalcontext-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/never-blame-the-user-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/never-blame-the-user-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/never-blame-the-user-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/never-blame-the-user-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/neverblameanotherparty-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/neverblameanotherparty-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/neverblameanotherparty-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/neverblameanotherparty-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/noconfirm-actions-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/noconfirm-actions-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/noconfirm-actions-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/noconfirm-actions-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/noconfirm-parameters-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/noconfirm-parameters-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/noconfirm-parameters-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/noconfirm-parameters-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/noconfirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/noconfirmation.png -------------------------------------------------------------------------------- /conversation-design/docs/static/noinputnomatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/noinputnomatch.png -------------------------------------------------------------------------------- /conversation-design/docs/static/notification-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/notification-android.png -------------------------------------------------------------------------------- /conversation-design/docs/static/notification-flow-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/notification-flow-chart.png -------------------------------------------------------------------------------- /conversation-design/docs/static/notify-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/notify-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/notify-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/notify-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/numerals-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/numerals-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/numerals-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/numerals-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/optimize-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/optimize-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/optimize-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/optimize-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/overview-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/overview-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/overview-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/overview-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/overviews-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/overviews-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/overviews-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/overviews-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/pesto-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/pesto-white.png -------------------------------------------------------------------------------- /conversation-design/docs/static/pesto-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/pesto-yellow.png -------------------------------------------------------------------------------- /conversation-design/docs/static/plainlanguage-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/plainlanguage-2.png -------------------------------------------------------------------------------- /conversation-design/docs/static/plainlanguage-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/plainlanguage-link.png -------------------------------------------------------------------------------- /conversation-design/docs/static/primarycolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/primarycolor.png -------------------------------------------------------------------------------- /conversation-design/docs/static/providerange-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/providerange-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/providerange-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/providerange-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/providerange-newdo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/providerange-newdo.png -------------------------------------------------------------------------------- /conversation-design/docs/static/providerange-newdont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/providerange-newdont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/put-deets-in-card-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/put-deets-in-card-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/put-deets-in-card-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/put-deets-in-card-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/questions-critical-disambiguation-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/questions-critical-disambiguation-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/questions-critical-disambiguation-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/questions-critical-disambiguation-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/questions-critical-errorhandling-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/questions-critical-errorhandling-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/questions-critical-errorhandling-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/questions-critical-errorhandling-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/questions-critical-explicitconfirmations-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/questions-critical-explicitconfirmations-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/questions-critical-explicitconfirmations-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/questions-critical-explicitconfirmations-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/questions-learnfromusers-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/questions-learnfromusers-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/questions-learnfromusers-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/questions-learnfromusers-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/randomize-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/randomize-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/randomize-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/randomize-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/refine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/refine.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwncomponents2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwncomponents2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwncomponents2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwncomponents2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwncomponents4-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwncomponents4-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwncomponents4-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwncomponents4-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwncomponents5-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwncomponents5-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwncomponents5-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwncomponents5-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwnprompts1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwnprompts1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwnprompts1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwnprompts1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwnprompts2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwnprompts2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationbtwnprompts2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationbtwnprompts2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationship-between-prompts3do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationship-between-prompts3do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationship-between-prompts3dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationship-between-prompts3dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationship-between-prompts4do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationship-between-prompts4do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relationship-between-prompts4dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relationship-between-prompts4dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relevance-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relevance-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relevance-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relevance-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/relevantactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/relevantactions.png -------------------------------------------------------------------------------- /conversation-design/docs/static/response-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/response-components.png -------------------------------------------------------------------------------- /conversation-design/docs/static/shaperound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/shaperound.png -------------------------------------------------------------------------------- /conversation-design/docs/static/shapesharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/shapesharp.png -------------------------------------------------------------------------------- /conversation-design/docs/static/shortlist-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/shortlist-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/shortlist-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/shortlist-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/simple-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/simple-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/simple-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/simple-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/simplewords-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/simplewords-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/simplewords-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/simplewords-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/solution-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/solution-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/solution-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/solution-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/speakclearly1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/speakclearly1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/speakclearly1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/speakclearly1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/speakclearly2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/speakclearly2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/speakclearly2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/speakclearly2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/speakclearly3-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/speakclearly3-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/speakclearly3-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/speakclearly3-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/spoken-chips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/spoken-chips.png -------------------------------------------------------------------------------- /conversation-design/docs/static/spokenonly-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/spokenonly-a.png -------------------------------------------------------------------------------- /conversation-design/docs/static/spokenonly-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/spokenonly-b.png -------------------------------------------------------------------------------- /conversation-design/docs/static/suggestions-spokenprompts1-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/suggestions-spokenprompts1-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/suggestions-spokenprompts1-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/suggestions-spokenprompts1-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/summarize-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/summarize-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/summarize-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/summarize-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/supportcorrections-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/supportcorrections-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/supportcorrections-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/supportcorrections-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/symbols-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/symbols-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/symbols-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/symbols-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/tablecard-brevity-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/tablecard-brevity-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/tablecard-brevity-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/tablecard-brevity-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/tablecard-prompts-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/tablecard-prompts-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/tablecard-prompts-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/tablecard-prompts-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/tablecardmapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/tablecardmapped.png -------------------------------------------------------------------------------- /conversation-design/docs/static/time-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/time-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/time-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/time-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/timetable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/timetable.png -------------------------------------------------------------------------------- /conversation-design/docs/static/titles-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/titles-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/titles-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/titles-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/titles-list-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/titles-list-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/titles-list-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/titles-list-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/transparent-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/transparent-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/transparent-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/transparent-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/turntaking-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/turntaking-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/turntaking-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/turntaking-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/turntaking2-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/turntaking2-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/turntaking2-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/turntaking2-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/typography-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/typography-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/typography-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/typography-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/ui-specificdirections-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/ui-specificdirections-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/ui-specificdirections-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/ui-specificdirections-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/unlinked-accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/unlinked-accounts.png -------------------------------------------------------------------------------- /conversation-design/docs/static/user-journey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/user-journey.jpg -------------------------------------------------------------------------------- /conversation-design/docs/static/user-persona-amy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/user-persona-amy.jpg -------------------------------------------------------------------------------- /conversation-design/docs/static/usingpics-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/usingpics-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/usingpics-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/usingpics-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/varygreet-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/varygreet-2.png -------------------------------------------------------------------------------- /conversation-design/docs/static/varygreet-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/varygreet-link.png -------------------------------------------------------------------------------- /conversation-design/docs/static/verbcommands-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/verbcommands-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/verbcommands-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/verbcommands-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/visuals3-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/visuals3-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/visuals3-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/visuals3-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/static/wide2narrowqs-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/wide2narrowqs-table.png -------------------------------------------------------------------------------- /conversation-design/docs/static/wizard-of-oz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/wizard-of-oz.png -------------------------------------------------------------------------------- /conversation-design/docs/static/workshop-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/workshop-header.png -------------------------------------------------------------------------------- /conversation-design/docs/static/workshop-intro-slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/workshop-intro-slide.png -------------------------------------------------------------------------------- /conversation-design/docs/static/write-sample-dialog-map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/write-sample-dialog-map.jpg -------------------------------------------------------------------------------- /conversation-design/docs/static/writtencontractions-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/writtencontractions-do.png -------------------------------------------------------------------------------- /conversation-design/docs/static/writtencontractions-dont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/static/writtencontractions-dont.png -------------------------------------------------------------------------------- /conversation-design/docs/style-guide/capitalization-and-punctuation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/style-guide/capitalization-and-punctuation.md -------------------------------------------------------------------------------- /conversation-design/docs/style-guide/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/style-guide/language.md -------------------------------------------------------------------------------- /conversation-design/docs/style/extra.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conversation-design/docs/visual-components/basic-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/visual-components/basic-card.md -------------------------------------------------------------------------------- /conversation-design/docs/visual-components/browsing-carousel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/visual-components/browsing-carousel.md -------------------------------------------------------------------------------- /conversation-design/docs/visual-components/carousel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/visual-components/carousel.md -------------------------------------------------------------------------------- /conversation-design/docs/visual-components/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/visual-components/customization.md -------------------------------------------------------------------------------- /conversation-design/docs/visual-components/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/visual-components/list.md -------------------------------------------------------------------------------- /conversation-design/docs/visual-components/media-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/visual-components/media-response.md -------------------------------------------------------------------------------- /conversation-design/docs/visual-components/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/visual-components/overview.md -------------------------------------------------------------------------------- /conversation-design/docs/visual-components/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/visual-components/table.md -------------------------------------------------------------------------------- /conversation-design/docs/what-is-conversation-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/docs/what-is-conversation-design.md -------------------------------------------------------------------------------- /conversation-design/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/firebase.json -------------------------------------------------------------------------------- /conversation-design/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/mkdocs.yml -------------------------------------------------------------------------------- /conversation-design/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/conversation-design/requirements.txt -------------------------------------------------------------------------------- /dialogflow-cx-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx-nodejs/package.json -------------------------------------------------------------------------------- /dialogflow-cx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/README.md -------------------------------------------------------------------------------- /dialogflow-cx/basic_webhook_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/basic_webhook_sample.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/__init__.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/agent_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/agent_delegator.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/auth_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/auth_delegator.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/client_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/client_delegator.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/intent_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/intent_delegator.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/page_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/page_delegator.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/sessions_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/sessions_delegator.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/start_flow_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/start_flow_delegator.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/test_case_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/test_case_delegator.py -------------------------------------------------------------------------------- /dialogflow-cx/delegators/webhook_delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/delegators/webhook_delegator.py -------------------------------------------------------------------------------- /dialogflow-cx/dialogflow_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/dialogflow_sample.py -------------------------------------------------------------------------------- /dialogflow-cx/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/pytest.ini -------------------------------------------------------------------------------- /dialogflow-cx/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/requirements-test.txt -------------------------------------------------------------------------------- /dialogflow-cx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/requirements.txt -------------------------------------------------------------------------------- /dialogflow-cx/set_session_param_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/set_session_param_sample.py -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/README.md -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/agents.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/agents.tf -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/entity-types.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/entity-types.tf -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/flows.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/flows.tf -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/images/order-agent-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/images/order-agent-graph.png -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/images/store-order-agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/images/store-order-agent.png -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/intents.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/intents.tf -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/pages.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/pages.tf -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/provider.tf -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/run_tests.sh -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/tests/Dockerfile -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/tests/requirements.txt -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/tests/test_terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/tests/test_terraform.py -------------------------------------------------------------------------------- /dialogflow-cx/shirt-order-agent/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/shirt-order-agent/variables.tf -------------------------------------------------------------------------------- /dialogflow-cx/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/terraform/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/tests/__init__.py -------------------------------------------------------------------------------- /dialogflow-cx/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/tests/conftest.py -------------------------------------------------------------------------------- /dialogflow-cx/tests/test_basic_webhook_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/tests/test_basic_webhook_sample.py -------------------------------------------------------------------------------- /dialogflow-cx/tests/test_set_session_param_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/tests/test_set_session_param_sample.py -------------------------------------------------------------------------------- /dialogflow-cx/tests/test_validate_form_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/tests/test_validate_form_sample.py -------------------------------------------------------------------------------- /dialogflow-cx/tests/test_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/tests/test_webhook.py -------------------------------------------------------------------------------- /dialogflow-cx/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/validate_form_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/validate_form_sample.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/README.md -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/config.env -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/debug.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/deploy.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/Dockerfile -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/Procfile -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/aes_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/aes_cipher.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/app.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/requirements-test.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/requirements.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/session.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/test_aes_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/test_aes_cipher.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/test_app.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/test_session.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/test_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/server/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/server/utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-auth-server/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-auth-server/setup.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/Dockerfile -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/Dockerfile.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/Dockerfile.debug -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/analytics_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/analytics_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/analytics_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/analytics_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/app.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/asset_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/asset_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/asset_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/asset_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/conftest.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/create_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/create_keys.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/debug_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/debug_runner.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/frontend_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/frontend_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/get_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/get_token.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/launchpad_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/launchpad_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/nginx.debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/nginx.debug.conf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/requirements-test.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/requirements.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/session_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/session_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/session_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/session_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/status_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/status_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/status_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/status_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_analytics_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_analytics_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_analytics_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_analytics_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_app.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_asset_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_asset_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_asset_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_asset_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_create_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_create_keys.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_frontend_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_frontend_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_get_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_get_token.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_launchpad_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_launchpad_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_session_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_session_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_session_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_session_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_status_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_status_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_status_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_status_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_update_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_update_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/test_update_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/test_update_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/update_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/update_blueprint.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/backend/update_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/backend/update_utilities.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/agent/Dockerfile -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/agent/deploy_agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/agent/deploy_agent.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/agent/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/agent/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/agent/provision_agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/agent/provision_agent.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/Dockerfile -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/deploy_reverse_proxy_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/deploy_reverse_proxy_server.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/Dockerfile -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/Procfile -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/app.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/requirements-test.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/requirements.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/startup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/startup_script.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/proxy-server-src/test_app.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/startup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/startup_script.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/wait_until_server_ready.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/reverse_proxy_server/wait_until_server_ready.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/service_directory/deploy_service_directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/service_directory/deploy_service_directory.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/service_directory/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/service_directory/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/vpc_network/deploy_vpc_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/vpc_network/deploy_vpc_network.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/vpc_network/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/vpc_network/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/webhook/deploy_webhook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/webhook/deploy_webhook.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/webhook/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/webhook/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/helpers.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/main.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/requirements-test.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/requirements.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/components/webhook/telecom-webhook-src/test_main.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/config.env -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/debug.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/.terraformrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/.terraformrc -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/Dockerfile -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/requirements-test.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/service-directory/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/service-directory/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/service-perimeter/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/service-perimeter/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/services/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/services/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/test_runner.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/test_terraform_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/test_terraform_module.py -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/vpc-network/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/vpc-network/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/vpc-network/startup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/vpc-network/startup_script.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/vpc-network/wait_until_server_ready.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/vpc-network/wait_until_server_ready.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/webhook-agent/deploy_agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/webhook-agent/deploy_agent.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/deploy/terraform/webhook-agent/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/deploy/terraform/webhook-agent/main.tf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/development.sh -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/.gitignore -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/README.md -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/package-lock.json -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/package.json -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/public/favicon.ico -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/public/index.html -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/public/logo192.png -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/public/manifest.json -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/public/robots.txt -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/Analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/Analytics.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/App.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/App.test.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/AssetPollToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/AssetPollToggle.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/AssetStatusPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/AssetStatusPanel.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/DataModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/DataModel.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/Drawer.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/HomePage.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/InvertMenuSwitchesCheckbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/InvertMenuSwitchesCheckbox.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/LiveDemoPrerequisites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/LiveDemoPrerequisites.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/PageContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/PageContent.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/PrivacyPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/PrivacyPolicy.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/QueryPrincipal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/QueryPrincipal.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/SessionExpiredModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/SessionExpiredModal.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/SettingsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/SettingsPanel.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/ShowServicesPanelCheckbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/ShowServicesPanelCheckbox.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/SnippetWithCopyButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/SnippetWithCopyButton.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/StateButtonGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/StateButtonGrid.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/StateSlides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/StateSlides.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/StatusPollToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/StatusPollToggle.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/TutorialMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/TutorialMode.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/TutorialPageIntroduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/TutorialPageIntroduction.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/TutorialPageTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/TutorialPageTabs.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/UseQueryState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/UseQueryState.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/Utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/Utilities.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/VPC_SC_diagram_latest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/VPC_SC_diagram_latest.pdf -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/arrow.png -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/btn_google_signin_light_normal_web@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/btn_google_signin_light_normal_web@2x.png -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/index.css -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/index.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/location_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/location_settings.png -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/setupTests.js -------------------------------------------------------------------------------- /dialogflow-cx/vpc-sc-demo/frontend/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/vpc-sc-demo/frontend/src/styles.css -------------------------------------------------------------------------------- /dialogflow-cx/webhook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/webhook/__init__.py -------------------------------------------------------------------------------- /dialogflow-cx/webhook/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/dialogflow-cx/webhook/main.py -------------------------------------------------------------------------------- /divebooker-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/divebooker-agent/README.md -------------------------------------------------------------------------------- /divebooker-agent/divebooker-agent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/divebooker-agent/divebooker-agent.zip -------------------------------------------------------------------------------- /divebooker-agent/images/divebooker-agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/divebooker-agent/images/divebooker-agent.png -------------------------------------------------------------------------------- /divebooker-agent/images/generative-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/divebooker-agent/images/generative-response.png -------------------------------------------------------------------------------- /export-data-from-genesys/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/export-data-from-genesys/README.MD -------------------------------------------------------------------------------- /export-data-from-genesys/genesys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/export-data-from-genesys/genesys.py -------------------------------------------------------------------------------- /export-data-from-genesys/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/export-data-from-genesys/requirements.txt -------------------------------------------------------------------------------- /generative-chatbots/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/.eslintignore -------------------------------------------------------------------------------- /generative-chatbots/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/.eslintrc.cjs -------------------------------------------------------------------------------- /generative-chatbots/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/.firebaserc -------------------------------------------------------------------------------- /generative-chatbots/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/.gitignore -------------------------------------------------------------------------------- /generative-chatbots/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /generative-chatbots/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/.prettierignore -------------------------------------------------------------------------------- /generative-chatbots/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/.prettierrc -------------------------------------------------------------------------------- /generative-chatbots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/README.md -------------------------------------------------------------------------------- /generative-chatbots/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/firebase.json -------------------------------------------------------------------------------- /generative-chatbots/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/package-lock.json -------------------------------------------------------------------------------- /generative-chatbots/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/package.json -------------------------------------------------------------------------------- /generative-chatbots/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/postcss.config.cjs -------------------------------------------------------------------------------- /generative-chatbots/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/prettier.config.js -------------------------------------------------------------------------------- /generative-chatbots/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/src/app.d.ts -------------------------------------------------------------------------------- /generative-chatbots/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/src/app.html -------------------------------------------------------------------------------- /generative-chatbots/src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/src/app.postcss -------------------------------------------------------------------------------- /generative-chatbots/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/src/routes/+layout.svelte -------------------------------------------------------------------------------- /generative-chatbots/src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/src/routes/+layout.ts -------------------------------------------------------------------------------- /generative-chatbots/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/src/routes/+page.svelte -------------------------------------------------------------------------------- /generative-chatbots/src/routes/bot1/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/src/routes/bot1/+page.svelte -------------------------------------------------------------------------------- /generative-chatbots/src/routes/bot2/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/src/routes/bot2/+page.svelte -------------------------------------------------------------------------------- /generative-chatbots/src/routes/bot3/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/src/routes/bot3/+page.svelte -------------------------------------------------------------------------------- /generative-chatbots/static/agent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/static/agent.svg -------------------------------------------------------------------------------- /generative-chatbots/static/dialogflow-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/static/dialogflow-logo.png -------------------------------------------------------------------------------- /generative-chatbots/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/static/favicon.png -------------------------------------------------------------------------------- /generative-chatbots/static/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/static/support.svg -------------------------------------------------------------------------------- /generative-chatbots/static/write.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/static/write.svg -------------------------------------------------------------------------------- /generative-chatbots/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/svelte.config.js -------------------------------------------------------------------------------- /generative-chatbots/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/tailwind.config.cjs -------------------------------------------------------------------------------- /generative-chatbots/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/tsconfig.json -------------------------------------------------------------------------------- /generative-chatbots/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/generative-chatbots/vite.config.ts -------------------------------------------------------------------------------- /goodbye-graffiti-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/README.md -------------------------------------------------------------------------------- /goodbye-graffiti-agent/agent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/agent.zip -------------------------------------------------------------------------------- /goodbye-graffiti-agent/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/images/demo.png -------------------------------------------------------------------------------- /goodbye-graffiti-agent/images/webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/images/webhook.png -------------------------------------------------------------------------------- /goodbye-graffiti-agent/maps-function/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/maps-function/index.js -------------------------------------------------------------------------------- /goodbye-graffiti-agent/maps-function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/maps-function/package.json -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/.firebaserc -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/.gitignore -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/README.md -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/app.js -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/firebase.json -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/package-lock.json -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/package.json -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/public/404.html -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/public/index.html -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/assets/brand/bootstrap-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/assets/brand/bootstrap-logo-white.svg -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/assets/brand/bootstrap-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/assets/brand/bootstrap-logo.svg -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/assets/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/assets/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/assets/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/assets/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/assets/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/assets/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/assets/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/assets/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/assets/dist/css/starter-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/assets/dist/css/starter-template.css -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/assets/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/assets/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/assets/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/assets/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/img/call-companion-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/img/call-companion-ui.png -------------------------------------------------------------------------------- /goodbye-graffiti-agent/site/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/goodbye-graffiti-agent/site/views/index.html -------------------------------------------------------------------------------- /nlu-evaluation/nlu_evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/nlu-evaluation/nlu_evaluation.ipynb -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/noxfile.py -------------------------------------------------------------------------------- /oidc/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/oidc/.terraform.lock.hcl -------------------------------------------------------------------------------- /oidc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/oidc/main.tf -------------------------------------------------------------------------------- /oidc/terraform: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oidc/terraform.tfstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/oidc/terraform.tfstate -------------------------------------------------------------------------------- /oidc/terraform.tfstate.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/oidc/terraform.tfstate.backup -------------------------------------------------------------------------------- /owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/owlbot.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/tasks.py -------------------------------------------------------------------------------- /terrascan.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/contact-center-ai-samples/HEAD/terrascan.toml --------------------------------------------------------------------------------