File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Follow the links below to generate a config file and a key pair in your ~/.oci d
31
31
- [ API signing key] ( https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm )
32
32
- [ CLI install] ( https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/cliinstall.htm#configfile )
33
33
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 `
35
35
36
36
- A config file(where key file point to private key: key_file =` ~/.oci/oci_api_key.pem ` )
37
37
- A key pair named ` oci_api_key.pem ` and ` oci_api_key_public.pem `
@@ -66,7 +66,7 @@ generative_ai_inference_client = (
66
66
vim app/web/components/content/index.tsx
67
67
```
68
68
69
- ``` react
69
+ ``` js
70
70
const gateway = ws: // ${window.location.hostname}:1234;
71
71
```
72
72
@@ -76,10 +76,10 @@ const gateway = ws://${window.location.hostname}:1234;
76
76
vim service/python/server.py
77
77
```
78
78
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
+ ```
83
83
84
84
### 2. Upload Public Key
85
85
You can’t perform that action at this time.
0 commit comments