KunaalNaik commited on
Commit
cc3affe
·
verified ·
1 Parent(s): f1dc53c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -3,6 +3,9 @@ from langchain_google_genai import ChatGoogleGenerativeAI
3
 
4
  st.title("Gemini ChatBOT")
5
 
 
 
 
6
  def llm_response(user_input):
7
  llm = ChatGoogleGenerativeAI(model="gemini-pro")
8
  result = llm.invoke(user_input)
 
3
 
4
  st.title("Gemini ChatBOT")
5
 
6
+ # Set the app to wide mode
7
+ st.set_page_config(layout="wide")
8
+
9
  def llm_response(user_input):
10
  llm = ChatGoogleGenerativeAI(model="gemini-pro")
11
  result = llm.invoke(user_input)