File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 50
50
]
51
51
52
52
ENVIRONMENTS : Dict [str , str ] = {
53
- "production" : "https://api-codex-o3gxj3oajfu .cleanlab.ai" ,
53
+ "production" : "https://api-codex.cleanlab.ai" ,
54
54
"staging" : "https://api-codex-staging-o3gxj3oajfu.cleanlab.ai" ,
55
55
"local" : "http://localhost:8080" ,
56
56
}
Original file line number Diff line number Diff line change @@ -522,7 +522,7 @@ def test_base_url_env(self) -> None:
522
522
Codex (_strict_response_validation = True , environment = "production" )
523
523
524
524
client = Codex (base_url = None , _strict_response_validation = True , environment = "production" )
525
- assert str (client .base_url ).startswith ("https://api-codex-o3gxj3oajfu .cleanlab.ai" )
525
+ assert str (client .base_url ).startswith ("https://api-codex.cleanlab.ai" )
526
526
527
527
@pytest .mark .parametrize (
528
528
"client" ,
@@ -1263,7 +1263,7 @@ def test_base_url_env(self) -> None:
1263
1263
AsyncCodex (_strict_response_validation = True , environment = "production" )
1264
1264
1265
1265
client = AsyncCodex (base_url = None , _strict_response_validation = True , environment = "production" )
1266
- assert str (client .base_url ).startswith ("https://api-codex-o3gxj3oajfu .cleanlab.ai" )
1266
+ assert str (client .base_url ).startswith ("https://api-codex.cleanlab.ai" )
1267
1267
1268
1268
@pytest .mark .parametrize (
1269
1269
"client" ,
You can’t perform that action at this time.
0 commit comments