Spaces:
Running
Running
Commit
·
0cdd743
1
Parent(s):
40d7348
Use LangChain
Browse files- .gitignore +1 -0
- app.py +19 -37
- requirements.txt +5 -1
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
.env
|
app.py
CHANGED
@@ -1,50 +1,32 @@
|
|
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("HuggingFaceTB/SmolLM2-135M-Instruct")
|
8 |
|
9 |
|
10 |
def respond(
|
11 |
-
|
12 |
-
|
13 |
-
system_message,
|
14 |
-
|
15 |
-
temperature,
|
16 |
-
top_p,
|
17 |
-
):
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
messages.append({"role": "user", "content": message})
|
27 |
-
|
28 |
-
response = ""
|
29 |
-
|
30 |
-
for message in client.chat_completion(
|
31 |
-
messages,
|
32 |
-
max_tokens=max_tokens,
|
33 |
-
stream=True,
|
34 |
-
temperature=temperature,
|
35 |
-
top_p=top_p,
|
36 |
-
):
|
37 |
-
token = message.choices[0].delta.content
|
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"),
|
|
|
1 |
import gradio as gr
|
2 |
+
from langchain_core.messages import HumanMessage
|
3 |
+
from langchain.chat_models import init_chat_model
|
4 |
|
5 |
+
model = init_chat_model("gemini-2.0-flash", model_provider="google_genai")
|
|
|
|
|
|
|
6 |
|
7 |
|
8 |
def respond(
|
9 |
+
user_input: str,
|
10 |
+
messages: list[dict],
|
11 |
+
system_message: str,
|
12 |
+
max_new_tokens: int,
|
13 |
+
temperature: float,
|
14 |
+
top_p: float,
|
15 |
+
) -> str:
|
16 |
+
"""
|
17 |
+
Respond to user input using the model.
|
18 |
+
"""
|
19 |
+
response = model.invoke(
|
20 |
+
messages + [HumanMessage(content=user_input)],
|
21 |
+
)
|
22 |
+
return response.content
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
"""
|
25 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
26 |
"""
|
27 |
demo = gr.ChatInterface(
|
28 |
+
fn=respond,
|
29 |
+
type="messages",
|
30 |
additional_inputs=[
|
31 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
32 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
requirements.txt
CHANGED
@@ -1 +1,5 @@
|
|
1 |
-
huggingface_hub
|
|
|
|
|
|
|
|
|
|
1 |
+
huggingface_hub
|
2 |
+
langchain-text-splitters
|
3 |
+
langchain-community
|
4 |
+
langgraph
|
5 |
+
langchain-google-genai
|