Skip to content

Commit

Permalink
reduce number of prompts for batch semantic embedding endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ahartel committed Jul 2, 2024
1 parent ee0ec3f commit ca5894c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_embed.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def test_embed_semantic(sync_client: Client):
assert result.num_tokens_prompt_total >= 1


@pytest.mark.parametrize("num_prompts", [1, 100, 101, 200, 1000])
@pytest.mark.parametrize("num_prompts", [1, 100, 101, 200])
@pytest.mark.system_test
def test_batch_embed_semantic(sync_client: Client, num_prompts: int):
request = BatchSemanticEmbeddingRequest(
Expand Down

0 comments on commit ca5894c

Please sign in to comment.