Spaces:
Runtime error
Runtime error
File size: 577 Bytes
40ce3f0 db1effe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# Generics
import os
import keyfile
import warnings
import streamlit as st
warnings.filterwarnings("ignore")
# Langchain packages
from langchain_google_genai import ChatGoogleGenerativeAI
from langchain.schema import HumanMessage, SystemMessage, AIMessage
# First message that will pop on the screen
st.set_page_config(page_title = "Magical Healer")
st.header("Welcome, What help do you need?")
# Configuring the key
os.environ["GOOGLE_API_KEY"] = keyfile.GOOGLEKEY
# User message
def get_text():
input_text = st.text_input("You: ", key = input)
return input_text
|