Skip to content

Commit b7122b9

Browse files
committed
Update README.md
1 parent 39c8104 commit b7122b9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Follow the links below to generate a config file and a key pair in your ~/.oci d
3131
- [API signing key](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm)
3232
- [CLI install](https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/cliinstall.htm#configfile)
3333

34-
After completion, you should have the following 2 things in your `~/.oci directory `
34+
After completion, you should have the following 2 things in your `~/.oci directory`
3535

3636
- A config file(where key file point to private key:key_file=`~/.oci/oci_api_key.pem`)
3737
- A key pair named `oci_api_key.pem` and `oci_api_key_public.pem`
@@ -66,7 +66,7 @@ generative_ai_inference_client = (
6666
vim app/web/components/content/index.tsx
6767
```
6868

69-
```react
69+
```js
7070
const gateway = ws://${window.location.hostname}:1234;
7171
```
7272

@@ -76,10 +76,10 @@ const gateway = ws://${window.location.hostname}:1234;
7676
vim service/python/server.py
7777
```
7878

79-
```Python
80-
async def start_server():
81-
await websockets.serve(handle_websocket, "localhost", 1234 )
82-
```
79+
```Python
80+
async def start_server():
81+
await websockets.serve(handle_websocket, "localhost", 1234 )
82+
```
8383

8484
### 2. Upload Public Key
8585

0 commit comments

Comments
 (0)