Spaces:
Running
Running
Commit
·
65b4243
1
Parent(s):
90aea8c
Remove unused import from app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
-
from re import S
|
2 |
import gradio as gr
|
3 |
from langchain.chat_models import init_chat_model
|
4 |
-
from langchain_core.messages import
|
5 |
|
6 |
model = init_chat_model("gemini-2.0-flash", model_provider="google_genai")
|
7 |
|
|
|
|
|
1 |
import gradio as gr
|
2 |
from langchain.chat_models import init_chat_model
|
3 |
+
from langchain_core.messages import AIMessage, HumanMessage, SystemMessage
|
4 |
|
5 |
model = init_chat_model("gemini-2.0-flash", model_provider="google_genai")
|
6 |
|