kamran-r123 commited on
Commit
2f6a7e7
·
1 Parent(s): a6932a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -28
app.py CHANGED
@@ -1,34 +1,27 @@
1
  from huggingface_hub import InferenceClient
2
  import gradio as gr
3
  import requests
 
4
 
5
  client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
6
 
7
- def search_url(search_query):
8
- API_KEY = st.secrets['AIzaSyDseKKQCAUBmPidu_QapnpJCGLueDWYJbE']
9
- SEARCH_ENGINE_ID = st.secrets['001ae9bf840514e61']
10
 
11
- url = 'https://customsearch.googleapis.com/customsearch/v1'
12
-
13
  params = {
14
- 'q': search_query,
15
- 'key': API_KEY,
16
- 'cx': SEARCH_ENGINE_ID,
 
17
  }
18
-
19
- response = requests.get(url, params=params)
20
-
21
- results = response.json()
22
-
23
- # print(results)
24
-
25
- if 'items' in results:
26
- for i in range(min(5, len(results['items']))):
27
- print(f"Link {i + 1}: {results['items'][i]['link']}")
28
- return results['items'][:5]
29
  else:
30
- print("No search results found.")
31
- return None
32
 
33
  def tokenize(text):
34
  return text
@@ -69,13 +62,13 @@ def generate(prompt, history, system_prompt, temperature=0.2, max_new_tokens=512
69
 
70
  def generateS(prompt, history, system_prompt, temperature=0.2, max_new_tokens=512, top_p=0.95, repetition_penalty=1.0):
71
 
72
- stream = search_url(prompt)
73
- # output = ""
74
 
75
- # for response in stream:
76
- # output += response.token.text
77
- # yield output
78
- return stream
79
 
80
  additional_inputs=[
81
  gr.Textbox(
@@ -124,7 +117,7 @@ additional_inputs=[
124
  mychatbot = gr.Chatbot(
125
  avatar_images=["./user.png", "./botm.png"], bubble_full_width=False, show_label=False, show_copy_button=True, likeable=False)
126
 
127
- demo = gr.ChatInterface(fn=generate,
128
  chatbot=mychatbot,
129
  additional_inputs=additional_inputs,
130
  title="Kamran's Mixtral 8x7b Chat",
 
1
  from huggingface_hub import InferenceClient
2
  import gradio as gr
3
  import requests
4
+ import json
5
 
6
  client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
7
 
8
+ def google_search(query, **kwargs):
9
+ api_key = 'AIzaSyDseKKQCAUBmPidu_QapnpJCGLueDWYJbE'
10
+ cse_id = '001ae9bf840514e61'
11
 
12
+ service_url = 'https://www.googleapis.com/customsearch/v1'
 
13
  params = {
14
+ 'key': api_key,
15
+ 'cx': cse_id,
16
+ 'q': query,
17
+ **kwargs
18
  }
19
+ response = requests.get(service_url, params=params)
20
+ if response.status_code == 200:
21
+ return json.loads(response.text)['items']
 
 
 
 
 
 
 
 
22
  else:
23
+ print(f'Error: {response.status_code}')
24
+ return []
25
 
26
  def tokenize(text):
27
  return text
 
62
 
63
  def generateS(prompt, history, system_prompt, temperature=0.2, max_new_tokens=512, top_p=0.95, repetition_penalty=1.0):
64
 
65
+ stream = google_search(prompt)
66
+ output = ""
67
 
68
+ for response in stream:
69
+ output += response.token.text
70
+ yield output
71
+ return output
72
 
73
  additional_inputs=[
74
  gr.Textbox(
 
117
  mychatbot = gr.Chatbot(
118
  avatar_images=["./user.png", "./botm.png"], bubble_full_width=False, show_label=False, show_copy_button=True, likeable=False)
119
 
120
+ demo = gr.ChatInterface(fn=generateS,
121
  chatbot=mychatbot,
122
  additional_inputs=additional_inputs,
123
  title="Kamran's Mixtral 8x7b Chat",