Spaces:
Runtime error
Runtime error
First
Browse files
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
|