Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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)
|