Skip to content

Commit e4fe68c

Browse files
authored
Merge pull request #913 from oracle-devrel/updatedDescriptions
updatedDescriptions
2 parents cabfdf5 + ba288a6 commit e4fe68c

File tree

3 files changed

+34
-9
lines changed
  • ai-and-app-modernisation/ai-services/oracle-digital-assistant

3 files changed

+34
-9
lines changed

ai-and-app-modernisation/ai-services/oracle-digital-assistant/oda-workshop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ODA Workshop
1+
# Conversational Design Experience (CDX) Workshop
22

33
Organizations are looking for ways to improve the customer
44
experience and employee experience. With the rise of

ai-and-app-modernisation/ai-services/oracle-digital-assistant/solution-definition/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
# ODA Solution Definition
1+
# Solution Definition Document ODA
22

33
This is a documentation template for an ODA solution. It's based on an architecture best-practices pattern and needs to be tailored for different use cases and requirements.
4+
This document provides a high-level solution definition for the Oracle Digital Assistant solution and aims at describing the current state, to-be state as well as a potential project scope and timeline.
45

56
Reviewed: 30.01.2024
67

78
# When to use this asset?
89

910
When you design a solution and want to describe it in a solution document.
11+
The intended purpose is to provide all parties involved a clear and well-defined insight into the scope of work and intention of the project as it will be done as part of the Oracle service.
1012

1113
# How to use this asset?
1214

1315
Use the Word or Markdown template, and fill in the chapters with your relevant content and context.
16+
Describe the customer's business and background. What is the context of the customer's industry and LoB? What are the business needs and goals that this Workload is an enabler for? How does this technical solution impact and support the customer's business goals? Does this solution support a specific customer strategy, or maybe certain customer values? How does this solution help our customers to either generate more revenue or save costs?
1417

1518
# License
1619

ai-and-app-modernisation/ai-services/oracle-digital-assistant/templates/concierge-template/README.md

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,38 @@
1-
# Concierge Template
1+
# Oracle Digital Assistant Concierge Template
22

3-
TBD
3+
The Concierge Template is a skill for quickly setting up a Knowledge bot.
44

5-
Reviewed: 30.01.2024
5+
Concierge Template WebSDK
66

7-
# When to use this asset?
7+
Setup:
8+
To use this web-sdk for your bot you minimally need to do the following:
9+
1. In the scripts/concierge.js file:
10+
line 3: Enter the URI of your ODA instance in the format shown
11+
line 5: Enter the channelId of the webchannel you created in ODA
12+
2. Use the sample index.html or add the following lines in the <head> section of your html-page:
13+
<script src="scripts/concierge.js" defer></script>
14+
<script src="scripts/settings.js" defer></script>
15+
<script src="scripts/web-sdk.js" onload="initSdk('Bots')" defer></script>
816

9-
TBD
17+
Images:
18+
Under /images you can find all images used by the template; change/overwrite them to your liking
1019

11-
# How to use this asset?
20+
Colors:
21+
In the colors section (search for 'colors:') of scripts/concierge.js file you can find all html-colorcodes
22+
Remarks behind each entry explain what the color is used for.
23+
A few less changed colors are also in style/concierge.css. (search for '#')
1224

13-
TBD
25+
Languages:
26+
By default this template uses the language of the browser user profile.
27+
You can change that by adding the language code to the initSdk function in your html page:
28+
<script src="scripts/web-sdk.js" onload="initSdk('Bots','fr')" defer></script>
29+
In the i18n section (search for 'i18n:') in the scripts/concierge.js file you can add a language section with all translations of texts used by the widget.
30+
You can manage the language menu of the chatwidget with the multiLangChat section (search for 'multiLangChat:') in the scripts/concierge.js file
31+
In the function getConciergeValues(search for 'function getConciergeValues') in the scripts/concierge.js file you have to check if you need to add your new language section
32+
33+
Passing values to your bot:
34+
In the initUserProfile section (search for 'initUserProfile:') in the scripts/concierge.js file you can add values to be used by your bot. Custom parameters can be added in the profile/properties section.
35+
In your freemarker expression you can use them like profile.properties.value.company (check variables in the skill tester).
1436

1537
# License
1638

0 commit comments

Comments
 (0)