tarekfer8 commited on
Commit
b666da5
·
verified ·
1 Parent(s): e831533

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
  from djezzy import load_data,mot_cle,pip
 
4
 
5
  """
6
  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
@@ -8,6 +9,10 @@ For more information on `huggingface_hub` Inference API support, please check th
8
  client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
9
 
10
 
 
 
 
 
11
  def respond(
12
  message,
13
  history: list[tuple[str, str]],
@@ -44,6 +49,9 @@ def respond(
44
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
45
  """
46
  docs_text, docs_embeddings = load_data()
 
 
 
47
 
48
  demo = gr.ChatInterface(
49
  respond,
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
  from djezzy import load_data,mot_cle,pip
4
+ from langchain.embeddings import SentenceTransformerEmbeddings
5
 
6
  """
7
  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
 
9
  client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
10
 
11
 
12
+ model_name = "sentence-transformers/all-MiniLM-L6-v2"
13
+
14
+ embedding_llm = SentenceTransformerEmbeddings(model_name=model_name)
15
+
16
  def respond(
17
  message,
18
  history: list[tuple[str, str]],
 
49
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
50
  """
51
  docs_text, docs_embeddings = load_data()
52
+ question="give me the advantage of djezzy legend for 2500 DA ?"
53
+ prompt=pip(question)
54
+ print(prompt)
55
 
56
  demo = gr.ChatInterface(
57
  respond,