@@ -21,7 +21,7 @@ class TestEnrichments:
2121 @parametrize
2222 def test_method_create (self , client : Isaacus ) -> None :
2323 enrichment = client .enrichments .create (
24- model = "kanon-2-enricher-preview " ,
24+ model = "kanon-2-enricher" ,
2525 texts = ['1.5 You (the "User") agree to be bound by these Terms.' ],
2626 )
2727 assert_matches_type (EnrichmentResponse , enrichment , path = ["response" ])
@@ -30,7 +30,7 @@ def test_method_create(self, client: Isaacus) -> None:
3030 @parametrize
3131 def test_method_create_with_all_params (self , client : Isaacus ) -> None :
3232 enrichment = client .enrichments .create (
33- model = "kanon-2-enricher-preview " ,
33+ model = "kanon-2-enricher" ,
3434 texts = ['1.5 You (the "User") agree to be bound by these Terms.' ],
3535 overflow_strategy = None ,
3636 )
@@ -40,7 +40,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
4040 @parametrize
4141 def test_raw_response_create (self , client : Isaacus ) -> None :
4242 response = client .enrichments .with_raw_response .create (
43- model = "kanon-2-enricher-preview " ,
43+ model = "kanon-2-enricher" ,
4444 texts = ['1.5 You (the "User") agree to be bound by these Terms.' ],
4545 )
4646
@@ -53,7 +53,7 @@ def test_raw_response_create(self, client: Isaacus) -> None:
5353 @parametrize
5454 def test_streaming_response_create (self , client : Isaacus ) -> None :
5555 with client .enrichments .with_streaming_response .create (
56- model = "kanon-2-enricher-preview " ,
56+ model = "kanon-2-enricher" ,
5757 texts = ['1.5 You (the "User") agree to be bound by these Terms.' ],
5858 ) as response :
5959 assert not response .is_closed
@@ -74,7 +74,7 @@ class TestAsyncEnrichments:
7474 @parametrize
7575 async def test_method_create (self , async_client : AsyncIsaacus ) -> None :
7676 enrichment = await async_client .enrichments .create (
77- model = "kanon-2-enricher-preview " ,
77+ model = "kanon-2-enricher" ,
7878 texts = ['1.5 You (the "User") agree to be bound by these Terms.' ],
7979 )
8080 assert_matches_type (EnrichmentResponse , enrichment , path = ["response" ])
@@ -83,7 +83,7 @@ async def test_method_create(self, async_client: AsyncIsaacus) -> None:
8383 @parametrize
8484 async def test_method_create_with_all_params (self , async_client : AsyncIsaacus ) -> None :
8585 enrichment = await async_client .enrichments .create (
86- model = "kanon-2-enricher-preview " ,
86+ model = "kanon-2-enricher" ,
8787 texts = ['1.5 You (the "User") agree to be bound by these Terms.' ],
8888 overflow_strategy = None ,
8989 )
@@ -93,7 +93,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
9393 @parametrize
9494 async def test_raw_response_create (self , async_client : AsyncIsaacus ) -> None :
9595 response = await async_client .enrichments .with_raw_response .create (
96- model = "kanon-2-enricher-preview " ,
96+ model = "kanon-2-enricher" ,
9797 texts = ['1.5 You (the "User") agree to be bound by these Terms.' ],
9898 )
9999
@@ -106,7 +106,7 @@ async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
106106 @parametrize
107107 async def test_streaming_response_create (self , async_client : AsyncIsaacus ) -> None :
108108 async with async_client .enrichments .with_streaming_response .create (
109- model = "kanon-2-enricher-preview " ,
109+ model = "kanon-2-enricher" ,
110110 texts = ['1.5 You (the "User") agree to be bound by these Terms.' ],
111111 ) as response :
112112 assert not response .is_closed
0 commit comments