thisisdev's picture
Second
db1effe verified
raw
history blame
577 Bytes
# 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