Skip to content

Commit

Permalink
rename key
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Dec 28, 2023
1 parent a471339 commit 6e84555
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ MONGO_URI=
MONGO_DB_NAME=

OPENAI_API_KEY=
ELEVENLABS_API_KEY=
ELEVEN_API_KEY=
REPLICATE_API_KEY=

AWS_ACCESS_KEY_ID=
Expand Down
6 changes: 3 additions & 3 deletions app/plugins/elevenlabs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from elevenlabs import *

ELEVENLABS_API_KEY = os.environ.get("ELEVENLABS_API_KEY")
print(ELEVENLABS_API_KEY)
ELEVEN_API_KEY = os.environ.get("ELEVEN_API_KEY")
print(ELEVEN_API_KEY)

set_api_key(ELEVENLABS_API_KEY)
set_api_key(ELEVEN_API_KEY)

0 comments on commit 6e84555

Please sign in to comment.