@@ -21,7 +21,7 @@ class TestRerankings:
2121 @parametrize
2222 def test_method_create (self , client : Isaacus ) -> None :
2323 reranking = client .rerankings .create (
24- model = "kanon-universal-classifier " ,
24+ model = "kanon-2-reranker " ,
2525 query = "What are the essential elements required to establish a negligence claim?" ,
2626 texts = [
2727 "To form a contract, there must be an offer, acceptance, consideration, and mutual intent to be bound." ,
@@ -37,7 +37,7 @@ def test_method_create(self, client: Isaacus) -> None:
3737 @parametrize
3838 def test_method_create_with_all_params (self , client : Isaacus ) -> None :
3939 reranking = client .rerankings .create (
40- model = "kanon-universal-classifier " ,
40+ model = "kanon-2-reranker " ,
4141 query = "What are the essential elements required to establish a negligence claim?" ,
4242 texts = [
4343 "To form a contract, there must be an offer, acceptance, consideration, and mutual intent to be bound." ,
@@ -61,7 +61,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
6161 @parametrize
6262 def test_raw_response_create (self , client : Isaacus ) -> None :
6363 response = client .rerankings .with_raw_response .create (
64- model = "kanon-universal-classifier " ,
64+ model = "kanon-2-reranker " ,
6565 query = "What are the essential elements required to establish a negligence claim?" ,
6666 texts = [
6767 "To form a contract, there must be an offer, acceptance, consideration, and mutual intent to be bound." ,
@@ -81,7 +81,7 @@ def test_raw_response_create(self, client: Isaacus) -> None:
8181 @parametrize
8282 def test_streaming_response_create (self , client : Isaacus ) -> None :
8383 with client .rerankings .with_streaming_response .create (
84- model = "kanon-universal-classifier " ,
84+ model = "kanon-2-reranker " ,
8585 query = "What are the essential elements required to establish a negligence claim?" ,
8686 texts = [
8787 "To form a contract, there must be an offer, acceptance, consideration, and mutual intent to be bound." ,
@@ -109,7 +109,7 @@ class TestAsyncRerankings:
109109 @parametrize
110110 async def test_method_create (self , async_client : AsyncIsaacus ) -> None :
111111 reranking = await async_client .rerankings .create (
112- model = "kanon-universal-classifier " ,
112+ model = "kanon-2-reranker " ,
113113 query = "What are the essential elements required to establish a negligence claim?" ,
114114 texts = [
115115 "To form a contract, there must be an offer, acceptance, consideration, and mutual intent to be bound." ,
@@ -125,7 +125,7 @@ async def test_method_create(self, async_client: AsyncIsaacus) -> None:
125125 @parametrize
126126 async def test_method_create_with_all_params (self , async_client : AsyncIsaacus ) -> None :
127127 reranking = await async_client .rerankings .create (
128- model = "kanon-universal-classifier " ,
128+ model = "kanon-2-reranker " ,
129129 query = "What are the essential elements required to establish a negligence claim?" ,
130130 texts = [
131131 "To form a contract, there must be an offer, acceptance, consideration, and mutual intent to be bound." ,
@@ -149,7 +149,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
149149 @parametrize
150150 async def test_raw_response_create (self , async_client : AsyncIsaacus ) -> None :
151151 response = await async_client .rerankings .with_raw_response .create (
152- model = "kanon-universal-classifier " ,
152+ model = "kanon-2-reranker " ,
153153 query = "What are the essential elements required to establish a negligence claim?" ,
154154 texts = [
155155 "To form a contract, there must be an offer, acceptance, consideration, and mutual intent to be bound." ,
@@ -169,7 +169,7 @@ async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
169169 @parametrize
170170 async def test_streaming_response_create (self , async_client : AsyncIsaacus ) -> None :
171171 async with async_client .rerankings .with_streaming_response .create (
172- model = "kanon-universal-classifier " ,
172+ model = "kanon-2-reranker " ,
173173 query = "What are the essential elements required to establish a negligence claim?" ,
174174 texts = [
175175 "To form a contract, there must be an offer, acceptance, consideration, and mutual intent to be bound." ,
0 commit comments