You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ To run the server locally, you can use the following CLI command:
35
35
centml server
36
36
```
37
37
By default, the server will run at the URL `http://0.0.0.0:8090`. \
38
-
You can change this by setting the environment variables `CENTML_SERVER_IP` and `CENTML_SERVER_PORT`
38
+
You can change this by setting the environment variable `CENTML_SERVER_URL`
39
39
40
40
41
41
Then, within your python script include the following:
@@ -55,7 +55,7 @@ output = compiled_model(inputs)
55
55
```
56
56
Note that the centml backend compiler is non-blocking. This means it that until the server returns the compiled model, your python script will use the uncompiled model to generate the output.
57
57
58
-
Again, make sure your script's environment sets the environment variables `CENTML_SERVER_IP` and `CENTML_SERVER_PORT` to communicate with the desired server.
58
+
Again, make sure your script's environment sets `CENTML_SERVER_URL` to communicate with the desired server.
0 commit comments