Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
eyurtsev committed Dec 5, 2023
1 parent bf285e3 commit c9f9d44
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion libs/langchain/langchain/llms/arcee.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ def __init__(self, **data: Any) -> None:
model_kwargs=self.model_kwargs,
model_name=self.model,
)
self._client.validate_model_training_status()

@root_validator(pre=False)
def validate_environments(cls, values: Dict) -> Dict:
Expand Down
5 changes: 0 additions & 5 deletions libs/langchain/tests/integration_tests/llms/test_arcee.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,3 @@ def test_api_key_masked_when_passed_from_env(
captured = capsys.readouterr()

assert "**********" == captured.out


def test_api_key_is_secret_string() -> None:
llm = Arcee(model="DALM-PubMed", arcee_api_key="test-arcee-api-key")
assert isinstance(llm.arcee_api_key, SecretStr)

0 comments on commit c9f9d44

Please sign in to comment.