Spaces:
Running
Running
Commit
·
65d7b9c
1
Parent(s):
00176d4
Integrate langgraph backend
Browse files- app.py +34 -44
- requirements.txt +3 -1
app.py
CHANGED
@@ -1,64 +1,54 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
-
from
|
|
|
3 |
|
4 |
-
""
|
5 |
-
For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
6 |
-
"""
|
7 |
-
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
8 |
|
|
|
9 |
|
10 |
-
def respond(
|
11 |
message,
|
12 |
history: list[tuple[str, str]],
|
13 |
system_message,
|
14 |
-
max_tokens,
|
15 |
-
temperature,
|
16 |
-
top_p,
|
17 |
):
|
18 |
-
messages = [
|
19 |
-
|
20 |
-
for
|
21 |
-
if
|
22 |
-
messages.append(
|
23 |
-
if
|
24 |
-
messages.append(
|
25 |
-
|
26 |
-
messages.append(
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
28 |
response = ""
|
29 |
-
|
30 |
-
for
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
36 |
):
|
37 |
-
|
|
|
|
|
|
|
|
|
38 |
|
39 |
-
response += token
|
40 |
-
yield response
|
41 |
-
|
42 |
-
|
43 |
-
"""
|
44 |
-
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
45 |
-
"""
|
46 |
demo = gr.ChatInterface(
|
47 |
respond,
|
48 |
additional_inputs=[
|
49 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
50 |
-
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
51 |
-
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
52 |
-
gr.Slider(
|
53 |
-
minimum=0.1,
|
54 |
-
maximum=1.0,
|
55 |
-
value=0.95,
|
56 |
-
step=0.05,
|
57 |
-
label="Top-p (nucleus sampling)",
|
58 |
-
),
|
59 |
],
|
60 |
)
|
61 |
|
62 |
-
|
63 |
if __name__ == "__main__":
|
64 |
demo.launch()
|
|
|
1 |
+
import os
|
2 |
import gradio as gr
|
3 |
+
from langgraph_sdk import get_client
|
4 |
+
from langchain_core.messages import HumanMessage, SystemMessage, AIMessage
|
5 |
|
6 |
+
LANGGRAPH_DEPLOYMENT = "https://chambre-agricole-chatbot-686407044d7f59d29a1e494685864177.us.langgraph.app/"
|
|
|
|
|
|
|
7 |
|
8 |
+
client = get_client(url=LANGGRAPH_DEPLOYMENT)
|
9 |
|
10 |
+
async def respond(
|
11 |
message,
|
12 |
history: list[tuple[str, str]],
|
13 |
system_message,
|
|
|
|
|
|
|
14 |
):
|
15 |
+
messages = [SystemMessage(content=system_message)]
|
16 |
+
|
17 |
+
for user_msg, ai_msg in history:
|
18 |
+
if user_msg:
|
19 |
+
messages.append(HumanMessage(content=user_msg))
|
20 |
+
if ai_msg:
|
21 |
+
messages.append(AIMessage(content=ai_msg))
|
22 |
+
|
23 |
+
messages.append(HumanMessage(content=message))
|
24 |
+
|
25 |
+
assistants = await client.assistants.search(
|
26 |
+
graph_id="retrieval_graph", metadata={"created_by": "system"}
|
27 |
+
)
|
28 |
+
thread = await client.threads.create()
|
29 |
+
|
30 |
response = ""
|
31 |
+
|
32 |
+
async for chunk in client.runs.stream(
|
33 |
+
thread_id=thread["thread_id"],
|
34 |
+
assistant_id=assistants[0]["assistant_id"],
|
35 |
+
input={
|
36 |
+
"messages": messages
|
37 |
+
},
|
38 |
+
stream_mode="events",
|
39 |
):
|
40 |
+
if chunk.event == "events":
|
41 |
+
if chunk.data["event"] == "on_chat_model_stream":
|
42 |
+
token = chunk.data["data"]["chunk"]["content"]
|
43 |
+
response += token
|
44 |
+
yield response
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
demo = gr.ChatInterface(
|
47 |
respond,
|
48 |
additional_inputs=[
|
49 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
],
|
51 |
)
|
52 |
|
|
|
53 |
if __name__ == "__main__":
|
54 |
demo.launch()
|
requirements.txt
CHANGED
@@ -1 +1,3 @@
|
|
1 |
-
huggingface_hub==0.25.2
|
|
|
|
|
|
1 |
+
huggingface_hub==0.25.2
|
2 |
+
langgraph-sdk==0.1.53
|
3 |
+
langchain-core==0.3.37
|