Skip to content

Commit 3f0efe0

Browse files
committed
chore(domain): update production domain
1 parent 0caa2fe commit 3f0efe0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Welcome to Instill Python SDK, where the world of AI-first application comes ali
1010

1111
Before you jump into creating your first application with this SDK tool, we recommend you to get familiar with the core concepts of Instill Product first. You can check out our documentation here:
1212

13-
- [Instill Core](https://www.instill.tech/docs/latest/core/concepts)
14-
- [Instill SDK](https://www.instill.tech/docs/latest/sdk/python)
13+
- [Instill Core](https://www.instill-ai.dev/docs/latest/core/concepts)
14+
- [Instill SDK](https://www.instill-ai.dev/docs/latest/sdk/python)
1515

1616
## Setup
1717

@@ -90,7 +90,7 @@ hosts:
9090
secure: false
9191
token: instill_sk***
9292
cloud:
93-
url: api.instill.tech
93+
url: api.instill-ai.com
9494
secure: true
9595
token: instill_sk***
9696
```
@@ -103,7 +103,7 @@ If you do not like the idea of having to create a config file, you can also setu
103103
from instill.configuration import global_config
104104

105105
global_config.set_default(
106-
url="api.instill.tech",
106+
url="api.instill-ai.com",
107107
token="instill_sk***",
108108
secure=True,
109109
)
@@ -143,7 +143,7 @@ user = client.mgmt_service.get_user()
143143
# ...
144144
```
145145

146-
Please find more usages for this sdk at [here](https://www.instill.tech/docs/sdk/python#usage)
146+
Please find more usages for this sdk at [here](https://www.instill-ai.dev/docs/sdk/python#usage)
147147

148148
**You can also find some notebook examples [here](https://github.com/instill-ai/python-sdk/tree/main/notebooks)**
149149

@@ -168,7 +168,7 @@ client.model_service.create_model(
168168

169169
`Instill Model` is an advanced MLOps/LLMOps platform that was specifically crafted to facilitate the efficient management and orchestration of model deployments for unstructured data ETL. With `Instill Model`, you can easily create, manage, and deploy your own custom models with ease in `Instill Core` or on the cloud with `Instill Cloud`.
170170

171-
Follow the instructions [here](https://www.instill.tech/docs/model/create) to build and deploy your model.
171+
Follow the instructions [here](https://www.instill-ai.dev/docs/model/create) to build and deploy your model.
172172

173173
### Create pipeline
174174

instill/helpers/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ def cli():
9393
push_parser.add_argument(
9494
"-u",
9595
"--url",
96-
help="image registry url, in the format of host:port, default to api.instill.tech",
97-
default="api.instill.tech",
96+
help="image registry url, in the format of host:port, default to api.instill-ai.com",
97+
default="api.instill-ai.com",
9898
required=False,
9999
)
100100

notebooks/create_pipeline.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"from instill.configuration import global_config\n",
4040
"\n",
4141
"global_config.set_default(\n",
42-
" url=\"api.instill.tech\",\n",
42+
" url=\"api.instill-ai.com\",\n",
4343
" token=\"instill_sk***\",\n",
4444
" secure=True,\n",
4545
")"

0 commit comments

Comments
 (0)