Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
ulya-tkch committed Aug 30, 2024
1 parent 1f8c95f commit 422e840
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/tlm/test_validation.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import numpy as np
import pytest

from cleanlab_studio.errors import TlmBadRequest, ValidationError
from cleanlab_studio.studio.studio import Studio
from cleanlab_studio.studio.trustworthy_language_model import TLM
from cleanlab_studio.errors import TlmBadRequest, ValidationError

np.random.seed(0)


MAX_PROMPT_LENGTH_TOKENS: int = 15_000
MAX_RESPONSE_LENGTH_TOKENS: int = 15_000
MAX_COMBINED_LENGTH_TOKENS: int = 15_000
MAX_PROMPT_LENGTH_TOKENS: int = 70_000
MAX_RESPONSE_LENGTH_TOKENS: int = 70_000
MAX_COMBINED_LENGTH_TOKENS: int = 70_000

CHARACTERS_PER_TOKEN: int = 5

Expand Down

0 comments on commit 422e840

Please sign in to comment.