Skip to content

Commit e6c4ba7

Browse files
MarcGueurymkratkyhope-fisher
authored
WMS 11825 - Redwood fix + new version (#429)
* ocw feedback * genai1 * Update manifest.json * GenAI + Opensearch 2.11 * GENAI * Known issues * Update integration.md * Several fixes mostly for multi region. * a * Create genai_agent.md * Create images folder * Add files via upload * Update genai_agent.md * added Lab 4 (Optional): GenAI Agent * Update genai_agent.md * Add files via upload * Delete a.txt * completed genai_agent.md * added genai agent screenshots * formating changes genai_agent.md * postgres v1 * v2 * initial discover.md * Delete oci-postgresql-genai-lab/3-discover/images directory * Create images folder * added screenshots for lab3 * Update discover.md * PostgresLab * Update test.md * - * Hybrid * qa * Create .gitignore * remove genai agent * hybrid * screenshot * pgvector * - * Update integration.md rsa key * Missing grants * Update connect-apex-with-agents.md * Fixes * not used * date * OCI Agent Lab V1 * Image OCID * images lowercase * Zip file location * Typos * feedback * feedback * feedback * feedback * feedback * Feedback * added Lab5 * lab 6 * Update intro.md * tools v2 * Update manifest.json * Tools lab * tools * tools * Redwood * Oracle-Meta Llama lab * qa * oda-multi-agent V1 * Small corrections * small fixes * feedback * qa=true * Redwood --------- Co-authored-by: mkratky <[email protected]> Co-authored-by: Hope Fisher <[email protected]>
1 parent 29b84d3 commit e6c4ba7

File tree

17 files changed

+29
-22
lines changed

17 files changed

+29
-22
lines changed
-8.92 KB
Loading
-15.4 KB
Loading

oci-genai-agent-ext-lab/0-intro/intro.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ We’ll be able to search documents like:
1515
- Images using OCI Vision
1616
- TIF files (FAX) using OCI Document Understanding
1717
- Word, Excel, Powerpoint, ... using OCI Functions
18-
- Websites using Sitemap
18+
- Websites using
19+
- a Crawler (for all pages of a websites, based on Sitemap or not)
20+
- or Selenium (for a fixed number of URLs)
1921

2022
The installation uses Terraform.
2123

@@ -52,7 +54,8 @@ Here's how various file types are processed.
5254
- If the file has the extension **.mp4**, **.avi**, **.mp3**, **.wav**, or **.m4a**, it is processed by OCI Speech.
5355
- If the file has the extension **.tif**, it is processed by OCI Document Understanding.
5456
- If the file has the extension **.json**, this is an output of the asynchronous AI services such as OCI Speech or OCI Document Understanding.
55-
- All other file types like **.doc**, **.docx**, **,xlsx**, **.pptx** are sent to OCI Function with a document parser.
57+
- If the file has the extension **.doc**, **.docx**, **.ppt**, **.pptx**, first convert it to PDF
58+
- All other file types like are sent to an OCI Function with a generic document parser.
5659

5760
### Physical Architecture
5861

-140 KB
Loading
-263 KB
Loading
-144 KB
Loading
-398 KB
Loading
-958 KB
Loading

oci-genai-agent-ext-lab/1-install/install.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,8 @@ You can
9494
- Or create a new one (recommended)
9595
9696
1. Login to your OCI account/tenancy
97-
2. Go the 3-bar/hamburger menu of the console and select
98-
1. Identity & Security
99-
1. Compartments
100-
![Menu Compartment](images/compartment1.png =40%x*)
97+
2. Go the 3-bar/hamburger menu of the console, go to Identity & Security / Compartments
98+
![Menu Compartment](images/compartment1.png)
10199
2. Click ***Create Compartment***
102100
- Give a name: ex: ***genai-agent***
103101
- Then again: ***Create Compartment***
@@ -155,7 +153,7 @@ You can
155153
```
156154
<copy>
157155
-----------------------------------------------------------------------
158-
AGENT_ENDPOINT_OCID=$AGENT_ENDPOINT_OCID
156+
TF_VAR_agent_endpoint_ocid=ocid1.xxxxx.xxxxx
159157
160158
-----------------------------------------------------------------------
161159
Streamlit:
@@ -258,11 +256,11 @@ You can
258256
```
259257
260258
Several persons are probably trying to install this tutorial on the same tenancy.
261-
Solution: edit the file *env.sh* and use a unique *TF\_VAR\_prefix*
259+
Solution: edit the file *terraform.tfvars* and use a unique *prefix*
262260
```
263261
<copy>
264-
OLD: export TF_VAR_prefix="agent"
265-
NEW: export TF_VAR_prefix="agent2"
262+
OLD: prefix="agent"
263+
NEW: prefix="agent2"
266264
</copy>
267265
```
268266
@@ -287,10 +285,10 @@ You can
287285
Solution:
288286
1. If the Default Domain exists, it is probably a privilege right. Ask to your tenancy administrator.
289287
2. If your Identity Domain is “OracleIdentityCloudService” (for tenancy upgraded from IDCS)
290-
- edit the file starter/env.sh
288+
- edit the file starter/terraform.tfvars
291289
- add the line
292290
```
293-
export TF_VAR_idcs_domain_name="OracleIdentityCloudService"
291+
idcs_domain_name="OracleIdentityCloudService"
294292
```
295293
296294
6. Error: 400-LimitExceeded, The following service limits were exceeded: xxxxxxx
@@ -309,9 +307,9 @@ You can
309307
310308
Work-around:
311309
- This is due to a lack of privilege to access the list of domains in your tenancy.
312-
- edit file env.sh and add this line:
310+
- edit file terraform.tfvars and add this line:
313311
```
314-
export TF_VAR_idcs_url=https://idcs-xxxxxx.identity.oraclecloud.com:443
312+
idcs_url=https://idcs-xxxxxx.identity.oraclecloud.com:443
315313
````
316314
You can find this URL by
317315
- going to OCI Console / Hamburger menu / Identity and Security / Domains

oci-genai-agent-ext-lab/2-apex/apex.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Estimated time: 10 min
2222
1. Type "when was jazz created", then *Enter*
2323

2424
Hover on the citation. Note that you can see the page number. Click on the link.
25-
![Test Jazz](images/test-when-jazz.png)
25+
![Test Jazz](../0-introl/images/when-was-jazz-created.png)
2626

2727
1. Type "what is Oracle Analytics", then *Enter*
2828

@@ -36,7 +36,7 @@ Estimated time: 10 min
3636
| | | What is Document Understanding |
3737
| Word | .docx | What is OCI ? |
3838
| Image | .png | List the countries in the map of brazil |
39-
| Website | .sitemap | What is Digital Assistant ? |
39+
| Website | .selenium | What is Digital Assistant ? |
4040
| FAX | .tif | Is there an invoice for Optika ? |
4141
| | | What does the file invoice.tif contains ? |
4242
| Video | .mp4 | What is Oracle Analytics |

0 commit comments

Comments
 (0)