Spaces:
Sleeping
Sleeping
MefhigosetH
commited on
Commit
•
6c73fe4
1
Parent(s):
577c694
feat(chatbot): Implementamos Mistal AI
Browse files- Pipfile +4 -1
- app.py +45 -46
- requirements.txt +4 -1
Pipfile
CHANGED
@@ -4,8 +4,11 @@ verify_ssl = true
|
|
4 |
name = "pypi"
|
5 |
|
6 |
[packages]
|
7 |
-
huggingface-hub = "
|
8 |
gradio = "*"
|
|
|
|
|
|
|
9 |
|
10 |
[dev-packages]
|
11 |
|
|
|
4 |
name = "pypi"
|
5 |
|
6 |
[packages]
|
7 |
+
huggingface-hub = "*"
|
8 |
gradio = "*"
|
9 |
+
langchain-huggingface = "*"
|
10 |
+
langchain = "*"
|
11 |
+
langchain-core = "*"
|
12 |
|
13 |
[dev-packages]
|
14 |
|
app.py
CHANGED
@@ -1,61 +1,60 @@
|
|
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 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
max_tokens,
|
15 |
-
temperature,
|
16 |
-
top_p,
|
17 |
-
):
|
18 |
-
messages = [{"role": "system", "content": system_message}]
|
19 |
|
20 |
-
for val in history:
|
21 |
-
if val[0]:
|
22 |
-
messages.append({"role": "user", "content": val[0]})
|
23 |
-
if val[1]:
|
24 |
-
messages.append({"role": "assistant", "content": val[1]})
|
25 |
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
-
|
|
|
|
|
29 |
|
30 |
-
|
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 |
-
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
44 |
-
"""
|
45 |
demo = gr.ChatInterface(
|
46 |
-
respond
|
47 |
-
additional_inputs=[
|
48 |
-
gr.Textbox(value="Tu eres Harry Potter, el mago más hábil de todo el mundo mágico. Responde amablemente a la consulta del usuario basado en la información disponible. Si no sabes la respuesta, pide al usuario que intente reformular su consulta.", label="System message"),
|
49 |
-
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
50 |
-
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
51 |
-
gr.Slider(
|
52 |
-
minimum=0.1,
|
53 |
-
maximum=1.0,
|
54 |
-
value=0.95,
|
55 |
-
step=0.05,
|
56 |
-
label="Top-p (nucleus sampling)",
|
57 |
-
),
|
58 |
-
],
|
59 |
)
|
60 |
|
61 |
|
|
|
1 |
import gradio as gr
|
2 |
+
from langchain_huggingface import HuggingFaceEndpoint
|
3 |
+
from langchain_core.prompts import PromptTemplate
|
4 |
+
#from langchain.globals import set_verbose, set_debug
|
5 |
|
6 |
+
#set_verbose(True)
|
7 |
+
#set_debug(True)
|
8 |
+
|
9 |
+
repo_id = "mistralai/Mixtral-8x7B-Instruct-v0.1"
|
10 |
+
#repo_id = "meta-llama/Meta-Llama-3.1-8B-Instruct"
|
11 |
+
#repo_id = "HuggingFaceH4/zephyr-7b-beta"
|
12 |
+
|
13 |
+
template = """[INST]Tu eres Harry Potter, el mago más hábil de todo el mundo mágico.
|
14 |
+
Responde amablemente a la consulta del usuario basado en la información disponible.
|
15 |
+
Si no sabes la respuesta, pide al usuario que intente reformular su consulta.
|
16 |
+
|
17 |
+
{question}
|
18 |
+
[/INST]
|
19 |
"""
|
|
|
|
|
|
|
20 |
|
21 |
+
prompt = PromptTemplate.from_template(template)
|
22 |
+
|
23 |
+
llm = HuggingFaceEndpoint(
|
24 |
+
repo_id = repo_id,
|
25 |
+
task = "text-generation",
|
26 |
+
temperature = 0.5,
|
27 |
+
model_kwargs = {
|
28 |
+
"min_length": 200,
|
29 |
+
"max_length": 2000,
|
30 |
+
"num_return_sequences": 1
|
31 |
+
}
|
32 |
+
)
|
33 |
|
34 |
+
llm_chain = (
|
35 |
+
prompt
|
36 |
+
| llm
|
37 |
+
)
|
|
|
|
|
|
|
|
|
|
|
38 |
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
+
def respond(message, history):
|
41 |
+
# history_langchain_format = []
|
42 |
+
#
|
43 |
+
# for human, ai in history:
|
44 |
+
# history_langchain_format.append(HumanMessage(content=human))
|
45 |
+
# history_langchain_format.append(AIMessage(content=ai))
|
46 |
+
#
|
47 |
+
# history_langchain_format.append(HumanMessage(content=message))
|
48 |
|
49 |
+
#print(message)
|
50 |
+
response = llm_chain.invoke(message)
|
51 |
+
#print(response)
|
52 |
|
53 |
+
return response
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
|
|
|
|
55 |
|
|
|
|
|
|
|
56 |
demo = gr.ChatInterface(
|
57 |
+
respond
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
)
|
59 |
|
60 |
|
requirements.txt
CHANGED
@@ -1 +1,4 @@
|
|
1 |
-
huggingface_hub
|
|
|
|
|
|
|
|
1 |
+
huggingface_hub
|
2 |
+
langchain-huggingface
|
3 |
+
langchain
|
4 |
+
langchain-core
|