Skip to content

Commit 35b03bd

Browse files
chore: improve example values
1 parent 57b055e commit 35b03bd

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

tests/api_resources/classifications/test_universal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
3636
texts=["I agree not to tell anyone about the document."],
3737
chunking_options={
3838
"overlap_ratio": 0.1,
39-
"overlap_tokens": 0,
39+
"overlap_tokens": 10,
4040
"size": 512,
4141
},
4242
is_iql=True,
@@ -99,7 +99,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
9999
texts=["I agree not to tell anyone about the document."],
100100
chunking_options={
101101
"overlap_ratio": 0.1,
102-
"overlap_tokens": 0,
102+
"overlap_tokens": 10,
103103
"size": 512,
104104
},
105105
is_iql=True,

tests/api_resources/extractions/test_qa.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
4040
],
4141
chunking_options={
4242
"overlap_ratio": 0.1,
43-
"overlap_tokens": 0,
43+
"overlap_tokens": 10,
4444
"size": 512,
4545
},
4646
ignore_inextractability=False,
@@ -111,7 +111,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
111111
],
112112
chunking_options={
113113
"overlap_ratio": 0.1,
114-
"overlap_tokens": 0,
114+
"overlap_tokens": 10,
115115
"size": 512,
116116
},
117117
ignore_inextractability=False,

tests/api_resources/test_rerankings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
4848
],
4949
chunking_options={
5050
"overlap_ratio": 0.1,
51-
"overlap_tokens": 0,
51+
"overlap_tokens": 10,
5252
"size": 512,
5353
},
5454
is_iql=False,
@@ -136,7 +136,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
136136
],
137137
chunking_options={
138138
"overlap_ratio": 0.1,
139-
"overlap_tokens": 0,
139+
"overlap_tokens": 10,
140140
"size": 512,
141141
},
142142
is_iql=False,

0 commit comments

Comments
 (0)