Skip to content

Commit a9050b2

Browse files
upgrading solutions
1 parent 1866669 commit a9050b2

File tree

25 files changed

+111
-56
lines changed

25 files changed

+111
-56
lines changed
Binary file not shown.

cloud-foundation/solutions/Deploy-ChatDB-Autonomous-Database-Select-AI-demonstration/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2025, Oracle and/or its affiliates.
1+
# Copyright © 2022, Oracle and/or its affiliates.
22
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
.terraform

cloud-foundation/solutions/Deploy-ChatDB-Autonomous-Database-Select-AI-demonstration/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
3-
# Copyright © 2025, Oracle and/or its affiliates.
3+
# Copyright © 2023, Oracle and/or its affiliates.
44
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
55
66

cloud-foundation/solutions/Deploy-ChatDB-Autonomous-Database-Select-AI-demonstration/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright © 2025 Oracle and/or its affiliates. All rights reserved.
1+
Copyright © 2023 Oracle and/or its affiliates. All rights reserved.
22

33
The Universal Permissive License (UPL), Version 1.0
44

cloud-foundation/solutions/Deploy-ChatDB-Autonomous-Database-Select-AI-demonstration/README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Query and save the recommendations
4949

5050
Oracle Cloud provides an amazing platform to productively deliver secure, insightful, scalable and performant solutions. MovieStream designed their solution leveraging the world class Oracle Autonomous Database and Oracle Cloud Infrastructure (OCI) Data Lake services. Their data architecture is following the Oracle Reference Architecture [_Enterprise Data Warehousing - an Integrated Data Lake_](https://docs.oracle.com/en/solutions/oci-curated-analysis/index.html) - which is used by Oracle customers around the world. It's worthwhile to review the architecture so you can understand the value of integrating the data lake and data warehouse - as it enables you to answer more complex questions using all your data.
5151

52-
## Important - please deploy the solution in one of the listed regions below as the GenAI it's only available in this regions. If you deploy it in other regions, the solution will not work. If you don't have any of the regions available in your tenancy, please subscribe to one of them.
52+
## Important - please deploy the solution in one of the listed regions below as the GenAI it's only available in this ## Important - please deploy the solution in any region but you need to use for the variable llm_region - one of the listed regions below as the GenAI it's only available in this regions. If you deploy it in other regions, the solution will not work. If you don't have any of the regions available in your tenancy, please subscribe to one of them.
5353

5454

5555
Some regions don't offer all the models. See the region for each pretrained model to find out which models are available in a region near you.
@@ -62,6 +62,16 @@ Some regions don't offer all the models. See the region for each pretrained mode
6262
| UK South (London) | London | uk-london-1 | LHR |
6363
| US Midwest (Chicago) | Chicago | us-chicago-1 | ORD |
6464

65+
```
66+
There is this variable called llm_region :
67+
variable "llm_region" {
68+
type = string
69+
default = "us-chicago-1"
70+
}
71+
72+
It is set to default to us-chicago-1 ; you need to use any region available in your tenancy subscribed to one of the available LLMs regions listed above.
73+
```
74+
6575

6676
## <a name="deliverables"></a>Deliverables
6777
----------------
@@ -409,6 +419,7 @@ The ADW subsystem / module is able to create ADW/ATP databases.
409419
The Workshop Settings are:
410420

411421
* Parameters:
422+
* __llm_region__ - The region that you need to connect to your LLM. Some regions don't offer all the models. See the region for each pretrained model to find out which models are available in a region near you. It is set to default to us-chicago-1 ; you need to use any region available in your tenancy subscribed to one of the available LLMs regions listed : sa-saopaulo-1 , eu-frankfurt-1 , ap-osaka-1 , uk-london-1 , us-chicago-1
412423
* __llm_secret__ - Secret API key used to connect to AI model
413424
* __tag__ - Pick the datasets to load. The default is gen-ai to start the graph lab.
414425
* __run_post_load_procedures__ - Run procedures after loading data
@@ -488,6 +499,11 @@ variable "db_database_management_status" {
488499
489500
# Workshop Settings
490501
502+
variable "llm_region" {
503+
type = string
504+
default = "us-chicago-1"
505+
}
506+
491507
variable "llm_secret" {
492508
type = string
493509
default = "null"

cloud-foundation/solutions/Deploy-ChatDB-Autonomous-Database-Select-AI-demonstration/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2025, Oracle and/or its affiliates.
1+
# Copyright © 2023, Oracle and/or its affiliates.
22
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
data "oci_identity_availability_domains" "ADs" {

cloud-foundation/solutions/Deploy-ChatDB-Autonomous-Database-Select-AI-demonstration/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2025, Oracle and/or its affiliates.
1+
# Copyright © 2023, Oracle and/or its affiliates.
22
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
# Create ADW Database with Endpoint in private subnet or public ADW

cloud-foundation/solutions/Deploy-ChatDB-Autonomous-Database-Select-AI-demonstration/modules/cloud-foundation-library/database/adb/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2025, Oracle and/or its affiliates.
1+
# Copyright © 2023, Oracle and/or its affiliates.
22
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
locals {

0 commit comments

Comments
 (0)