feat: use dotenv to load environment variables

This commit is contained in:
Tomortec 2025-06-25 22:55:34 +08:00
parent 7abff0f354
commit 623cf677c1
3 changed files with 7 additions and 0 deletions

3
.gitignore vendored
View File

@ -6,3 +6,6 @@ src/
eval_results/
eval_data/
*.egg-info/
.env
.env.local

View File

@ -1,3 +1,6 @@
from dotenv import load_dotenv
load_dotenv()
from typing import Optional
import datetime
import typer

View File

@ -2,6 +2,7 @@ typing-extensions
langchain-openai
langchain-experimental
pandas
python-dotenv
yfinance
praw
feedparser