Skip to content

Commit 801818c

Browse files
authored
Update Documentation Images for v1 (#141)
* Update Documentation Images for v1
1 parent 34f626c commit 801818c

32 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ To run the application in a container; download the [source](https://github.com/
8686

8787
1. [Configure](https://oracle-samples.github.io/ai-optimizer/client/configuration/index.html) the **AI Optimizer**.
8888

89-
##### Got OCI?
89+
#### Got OCI?
9090
The **AI Optimizer** can be deployed with an Oracle Autonomous Database 23ai using infrastructure as code. Deploy the **AI Optimizer** in Oracle Cloud Infrastructure using OCI Resource Manager:
9191

9292
[![Deploy to Oracle Cloud][magic_button]][magic_arch_stack]

docs/content/advanced/springai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ GRANT SELECT ON ADMIN.MXBAI_EMBED_LARGE_512_103_COSINE TO vector;
146146
* So, then you can deploy it:
147147

148148
```bash
149-
oractl:> deploy --app-name rag --service-name myspringai --artifact-path <ProjectDir>/target/myspringai-0.0.1-SNAPSHOT.jar --image-version 0.0.1 --java-version ghcr.io/oracle/graalvm-native-image-obaas:21 --service-profile obaas
149+
oractl:> deploy --app-name rag --service-name myspringai --artifact-path <ProjectDir>/target/myspringai-1.0.0-SNAPSHOT.jar --image-version 1.0.0 --java-version ghcr.io/oracle/graalvm-native-image-obaas:21 --service-profile obaas
150150
```
151151

152152
* test opening first a new tunnel:
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
-15.6 KB
Loading

docs/content/client/images/gui.png

7.22 KB
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

helm/Chart.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ apiVersion: v2
55
name: ai-optimizer
66
description: A Helm chart Oracle AI Optimizer and Toolkit
77
type: application
8-
version: 0.1.0
9-
appVersion: "0.1.0"
8+
version: 1.0.0
9+
appVersion: "1.0.0"
1010
icon: https://github.com/oracle-samples/ai-optimizer/blob/main/src/client/media/logo.png
1111
maintainers:
1212
- name: Oracle
@@ -15,14 +15,14 @@ maintainers:
1515

1616
dependencies:
1717
- name: server
18-
version: 0.1.0
18+
version: 1.0.0
1919
repository: file://charts/server
2020
condition: server.enabled
2121
- name: client
22-
version: 0.1.0
22+
version: 1.0.0
2323
repository: file://charts/client
2424
condition: client.enabled
2525
- name: ollama
26-
version: 0.1.0
26+
version: 1.0.0
2727
repository: file://charts/ollama
2828
condition: ollama.enabled

helm/charts/client/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ apiVersion: v2
55
name: client
66
description: A Helm chart Oracle AI Optimizer and Toolkit - GUI
77
type: application
8-
version: 0.1.0
9-
appVersion: "0.1.0"
8+
version: 1.0.0
9+
appVersion: "1.0.0"
1010
maintainers:
1111
- name: Oracle
1212

helm/charts/ollama/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ apiVersion: v2
55
name: ollama
66
description: A Helm chart Oracle AI Optimizer and Toolkit - ollama
77
type: application
8-
version: 0.1.0
9-
appVersion: "0.1.0"
8+
version: 1.0.0
9+
appVersion: "1.0.0"
1010
maintainers:
1111
- name: Oracle
1212

helm/charts/server/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ apiVersion: v2
55
name: server
66
description: A Helm chart Oracle AI Optimizer and Toolkit - API Server
77
type: application
8-
version: 0.1.0
9-
appVersion: "0.1.0"
8+
version: 1.0.0
9+
appVersion: "1.0.0"
1010
maintainers:
1111
- name: Oracle
1212

src/client/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#############################################################
44
# Base - Web GUI
55
# Build from the app/ directory:
6-
# podman build -f client/Dockerfile -t ai-optimizer-client:0.1.0 .
6+
# podman build -f client/Dockerfile -t ai-optimizer-client:latest .
77
#############################################################
88
FROM container-registry.oracle.com/os/oraclelinux:8-slim AS client_pyenv
99

src/client/spring_ai/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ GRANT SELECT ON ADMIN.<VECTOR_STORE> TO vector;
180180
```
181181
* then deploy:
182182
```
183-
deploy --app-name rag --service-name myspringai --artifact-path <ProjectDir>/target/myspringai-0.0.1-SNAPSHOT.jar --image-version 0.0.1 --java-version ghcr.io/oracle/graalvm-native-image-obaas:21 --service-profile obaas
183+
deploy --app-name rag --service-name myspringai --artifact-path <ProjectDir>/target/myspringai-1.0.0-SNAPSHOT.jar --image-version 1.0.0 --java-version ghcr.io/oracle/graalvm-native-image-obaas:21 --service-profile obaas
184184
```
185185
* test:
186186
```

src/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ai-optimizer"
7-
version = "0.1.0"
7+
version = "1.0.0"
88
description = "Oracle AI Optimizer and Toolkit"
99
requires-python = ">=3.11"
1010
license = "UPL-1.0"

src/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#############################################################
44
# Base - API Server
55
# Build from the app/ directory:
6-
# podman build -f server/Dockerfile -t ai-optimizer-server:0.1.0 .
6+
# podman build -f server/Dockerfile -t ai-optimizer-server:latest .
77
#############################################################
88
# spell-checker: disable
99
FROM container-registry.oracle.com/os/oraclelinux:8-slim AS server_pyenv

0 commit comments

Comments
 (0)