Skip to content

Commit 77b1f1c

Browse files
committed
readme updates
1 parent 6120e01 commit 77b1f1c

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Oracle's Generative AI service allows developers to unlock a better user experie
1818

1919
Follow links below to generate a config file and a key pair in your ~/.oci directory
2020

21-
- [](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm)
22-
- [](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm)
23-
- [](https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/cliinstall.htm#configfile)
21+
- [SDK config](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm)
22+
- [API signing key](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm)
23+
- [CLI install](https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/cliinstall.htm#configfile)
2424

2525
After completion, you should have following 2 things in your `~/.oci directory `
2626

@@ -66,8 +66,8 @@ async def start_server():
6666

6767
### 2. Upload Public Key
6868

69-
- Upload your oci_api_key_public.pem to console:
70-
[](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#three)
69+
- Upload your oci_api_key_public.pem to console:
70+
[API signing key](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#three)
7171

7272
### 3. Make sure you have python installed on your machine
7373

@@ -80,31 +80,31 @@ You should see similar output:
8080
Python 3.8.3
8181
```
8282

83-
### 4. Install all dependencies(include our beta version SDK)
83+
### 4. Install all dependencies
8484

8585
We suggest you install dependencies in a virtual env to avoid conflicts on your system.
8686

8787
- Navigate to the server root folder
88-
`cd /service/python`
88+
`cd service/python`
8989
- Create vitrual environment:
9090
`python3 -m venv venv`
9191
- Activate your virtual environment:
9292
`. venv/bin/activate`
9393
- Upgrade pip:
94-
`pip install --upgrade pip`
94+
`pip3 install --upgrade pip`
9595
- Install requirements:
96-
`pip install -r requirements.txt`
96+
`pip3 install -r requirements.txt`
9797

98-
## 5. Start Python server websocket app
98+
## 5. Start websocket server app
9999

100100
Once dependencies are installed and your service credentials are updated you can run server.py
101101

102-
- `python server.py`
102+
- `python3 server.py`
103103

104104
## 6. Start JET Client
105105

106106
- Open app directory:
107-
`cd app/`
107+
`cd ../../app ` or `cd app/` in root folder
108108
- Install dependencies:
109109
`ojet restore`
110110
- Run local version:

images/main.png

-119 KB
Loading

0 commit comments

Comments
 (0)