iqra785 commited on
Commit
5e3eafd
·
verified ·
1 Parent(s): bee228b

Create config.py

Browse files
Files changed (1) hide show
  1. config.py +12 -0
config.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from dotenv import load_dotenv
3
+ import os
4
+
5
+ # Set the page configuration to wide layout
6
+ # st.set_page_config(layout="wide")
7
+
8
+ # Load environment variables from .env file
9
+ load_dotenv()
10
+
11
+ def get_ai71_api_key():
12
+ return os.getenv("AI71_API_KEY")