Skip to content

Commit

Permalink
env fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hanaisreal committed Mar 23, 2024
1 parent 8f21fe5 commit 3eb277f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ class DB_Settings(BaseSettings):
db_db: str = os.getenv("DB_DB")
db_host: str = os.getenv("DB_HOST")
db_password: str = os.getenv("DB_PASSWORD")
db_port: int = int(os.getenv("DB_PORT"))
db_port: int = os.getenv("DB_PORT")
db_user: str = os.getenv("DB_USER")


class GenAI_Settings(BaseSettings):
openai_api_key: str = os.getenv("OPENAI_API_KEY")
pinecone_api_key: str = os.getenv("PINECONE_API_KEY")
Expand Down

0 comments on commit 3eb277f

Please sign in to comment.