File size: 286 Bytes
5e3eafd
 
 
 
 
 
 
 
 
 
 
bc3c90e
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()