feat: use dotenv to load environment variables
This commit is contained in:
parent
7abff0f354
commit
623cf677c1
|
|
@ -6,3 +6,6 @@ src/
|
|||
eval_results/
|
||||
eval_data/
|
||||
*.egg-info/
|
||||
|
||||
.env
|
||||
.env.local
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
from dotenv import load_dotenv
|
||||
load_dotenv()
|
||||
|
||||
from typing import Optional
|
||||
import datetime
|
||||
import typer
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ typing-extensions
|
|||
langchain-openai
|
||||
langchain-experimental
|
||||
pandas
|
||||
python-dotenv
|
||||
yfinance
|
||||
praw
|
||||
feedparser
|
||||
|
|
|
|||
Loading…
Reference in New Issue