Spaces:
Sleeping
Sleeping
#Generic | |
import os | |
import keyfile | |
import streamlit as st | |
import warnings | |
warnings.filerwarnings("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, How can I help you?") | |
#Configure 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 | |