thisisdev commited on
Commit
40ce3f0
·
verified ·
1 Parent(s): 337df87
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ # Generics
2
+ import os
3
+ import keyfile
4
+ import warnings
5
+ import streamlit as st
6
+ warnings.filterwarnings("ignore")
7
+
8
+ # Langchain packages
9
+ from langchain_google_genai import ChatGoogleGenerativeAI
10
+ from langchain.schema import HumanMessage, SystemMessage, AIMessage