7 lines
169 B
Python
7 lines
169 B
Python
|
# utils.py
|
||
|
import os
|
||
|
from dotenv import load_dotenv, find_dotenv
|
||
|
|
||
|
def get_deepseek_api_key():
|
||
|
_ = load_dotenv(find_dotenv())
|
||
|
return os.getenv("DEEPSEEK_API_KEY")
|