Skip to content

Commit

Permalink
Fix openai key
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonBohdan committed Dec 4, 2023
1 parent 6e1a860 commit 5e06320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neon_llm_claude/claude.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def model(self) -> Anthropic:
@property
def openai(self) -> openai:
if self._openai is None:
openai.api_key = self.api_key
openai.api_key = self.openai_key
self._openai = openai
return self._openai

Expand Down

0 comments on commit 5e06320

Please sign in to comment.