tut / config.py
iqra785's picture
Update config.py
bc3c90e verified
raw
history blame
286 Bytes
import streamlit as st
from dotenv import load_dotenv
import os
# Set the page configuration to wide layout
# st.set_page_config(layout="wide")
# Load environment variables from .env file
load_dotenv()
def get_ai71_api_key():
return os.getenv("AI71_API_KEY", "").strip()