vericudebuget commited on
Commit
48b3789
·
verified ·
1 Parent(s): d2acdfd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +79 -10
app.py CHANGED
@@ -1,11 +1,24 @@
1
  from huggingface_hub import InferenceClient
2
  import gradio as gr
3
  import datetime
 
 
 
4
 
5
  # Initialize the InferenceClient
6
  client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
7
 
8
- def format_prompt(message, history):
 
 
 
 
 
 
 
 
 
 
9
  prompt = "<s>"
10
  for user_prompt, bot_response in history:
11
  prompt += f"\[INST\] {user_prompt} \[/INST\]"
@@ -25,10 +38,47 @@ def generate(prompt, history, system_prompt, temperature=0.9, max_new_tokens=904
25
  seed=42,
26
  )
27
 
28
- # Get current time
29
  now = datetime.datetime.now()
30
  formatted_time = now.strftime("%H.%M.%S, %B, %Y")
31
- system_prompt = f"server log: ~This message was sent at {formatted_time}. The actual year is 2024.~"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
  formatted_prompt = format_prompt(f"{system_prompt}, {prompt}", history)
34
  stream = client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=False)
@@ -45,10 +95,29 @@ additional_inputs = [
45
  gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens")
46
  ]
47
 
48
- gr.ChatInterface(
49
- fn=generate,
50
- chatbot=gr.Chatbot(show_label=True, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
51
- additional_inputs=additional_inputs,
52
- title="ConvoLite",
53
- concurrency_limit=20,
54
- ).launch(show_api=False)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  from huggingface_hub import InferenceClient
2
  import gradio as gr
3
  import datetime
4
+ import re
5
+ import requests
6
+ import json
7
 
8
  # Initialize the InferenceClient
9
  client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
10
 
11
+ # Enter your API key here
12
+ api_key = "1e8cd0385845a649e448cde4917058d6"
13
+
14
+ # Define the system prompt templates
15
+ system_prompt_templates = {
16
+ r"\btime\b|\bhour\b|\bclock\b": "server log: ~This message was sent at {formatted_time}. The actual year is 2024.~",
17
+ r"\bweather\b|\bforecast\b|\bmeteo": "server log: ~The current weather conditions in {city_name} are {weather_description} with a high of {current_temperature_c}°C ({current_temperature_f}°F) and a pressure of {current_pressure_hpa} hPa ({current_pressure_inHg} inHg) and humidity of {current_humidity}%.~",
18
+ r"\bdate\b|\bcalendar\b": "server log: ~Today's date is {formatted_date}.~",
19
+ }
20
+
21
+ def format_prompt(message, history, system_prompt):
22
  prompt = "<s>"
23
  for user_prompt, bot_response in history:
24
  prompt += f"\[INST\] {user_prompt} \[/INST\]"
 
38
  seed=42,
39
  )
40
 
41
+ # Get current time and date
42
  now = datetime.datetime.now()
43
  formatted_time = now.strftime("%H.%M.%S, %B, %Y")
44
+ formatted_date = now.strftime("%B %d, %Y")
45
+
46
+ # Check for keywords in the user's input and update the system prompt accordingly
47
+ city_name = None
48
+ weather_description = None
49
+ current_temperature_c = None
50
+ current_temperature_f = None
51
+ current_pressure_hpa = None
52
+ current_pressure_inHg = None
53
+ current_humidity = None
54
+ for keyword, template in system_prompt_templates.items():
55
+ if re.search(keyword, prompt, re.IGNORECASE):
56
+ if keyword == r"\bweather\b|\bforecast\b|\bmeteo":
57
+ base_url = "http://api.openweathermap.org/data/2.5/weather?"
58
+ complete_url = base_url + "appid=" + api_key + "&q=" + city_name
59
+ response = requests.get(complete_url)
60
+ x = response.json()
61
+ if x["cod"] != "404":
62
+ y = x["main"]
63
+ current_temperature_c = y["temp"] - 273.15 # Convert from Kelvin to Celsius
64
+ current_temperature_f = current_temperature_c * 9/5 + 32 # Convert from Celsius to Fahrenheit
65
+ current_pressure_hpa = y["pressure"]
66
+ current_pressure_inHg = current_pressure_hpa * 0.02953 # Convert from hPa to inHg
67
+ current_humidity = y["humidity"]
68
+ z = x["weather"]
69
+ weather_description = z[0]["description"]
70
+ city_name = x["name"]
71
+ else:
72
+ print("City Not Found")
73
+ city_name = "unknown"
74
+ weather_description = "unknown"
75
+ current_temperature_c = 0
76
+ current_temperature_f = 32
77
+ current_pressure_hpa = 0
78
+ current_pressure_inHg = 0
79
+ current_humidity = 0
80
+ system_prompt = template.format(formatted_time=formatted_time, formatted_date=formatted_date, city_name=city_name, weather_description=weather_description, current_temperature_c=current_temperature_c, current_temperature_f=current_temperature_f, current_pressure_hpa=current_pressure_hpa, current_pressure_inHg=current_pressure_inHg, current_humidity=current_humidity)
81
+ break
82
 
83
  formatted_prompt = format_prompt(f"{system_prompt}, {prompt}", history)
84
  stream = client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=False)
 
95
  gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens")
96
  ]
97
 
98
+ def check_keywords(text):
99
+ for keyword, _ in system_prompt_templates.items():
100
+ if re.search(keyword, text, re.IGNORECASE):
101
+ return True
102
+ return False
103
+
104
+ chatbot = gr.Chatbot(show_label=True, show_share_button=False, show_copy_button=True, likeable=True, layout="panel")
105
+ with gr.Blocks():
106
+ with gr.Row():
107
+ with gr.Column(scale=3):
108
+ user_input = gr.Textbox(label="Your message", placeholder="Type your message here...")
109
+ with gr.Column(scale=1):
110
+ submit_button = gr.Button("Send")
111
+
112
+ with gr.Row():
113
+ chatbot_output = chatbot
114
+
115
+ submit_button.click(
116
+ fn=generate,
117
+ inputs=[user_input, chatbot, gr.Textbox(label="System Prompt", max_lines=1, interactive=True)],
118
+ outputs=chatbot_output,
119
+ every=200,
120
+ _js="check_keywords"
121
+ )
122
+
123
+ gr.Blocks().launch(show_api=False)