Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan committed Nov 8, 2023
1 parent 394f07b commit 42ac7ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/langchain/langchain/embeddings/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def validate_environment(cls, values: Dict) -> Dict:
@property
def _invocation_params(self) -> Dict[str, Any]:
if _is_openai_v1():
openai_args = {"model": self.model, **self.model_kwargs}
openai_args: Dict = {"model": self.model, **self.model_kwargs}
else:
openai_args = {
"model": self.model,
Expand Down

0 comments on commit 42ac7ff

Please sign in to comment.