acecalisto3 commited on
Commit
3081bba
·
verified ·
1 Parent(s): 2a532b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -147
app.py CHANGED
@@ -6,16 +6,7 @@ import gradio as gr
6
  from safe_search import safe_search
7
  from i_search import google
8
  from i_search import i_search as i_s
9
- from agent import (
10
- run_agent,
11
- create_interface,
12
- format_prompt,
13
- generate,
14
- MAX_HISTORY,
15
- client,
16
- VERBOSE,
17
- date_time_str,
18
- )
19
 
20
  from utils import parse_action, parse_file_content, read_python_module_structure
21
  from datetime import datetime
@@ -28,12 +19,11 @@ client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
28
  VERBOSE = True
29
  MAX_HISTORY = 100
30
 
31
- def format_prompt(message, history):
32
- prompt = "<s>"
33
  for user_prompt, bot_response in history:
34
- prompt += f"[INST] {user_prompt} [/INST]"
35
- prompt += f" {bot_response}</s> "
36
- prompt += f"[INST] {message} [/INST]"
37
  return prompt
38
 
39
  def run_gpt(prompt_template, stop_tokens, max_tokens, purpose, **prompt_kwargs):
@@ -64,7 +54,6 @@ def run_gpt(prompt_template, stop_tokens, max_tokens, purpose, **prompt_kwargs):
64
  if VERBOSE:
65
  print(LOG_RESPONSE.format(resp))
66
  return resp
67
-
68
  def compress_history(purpose, task, history, directory):
69
  resp = run_gpt(
70
  COMPRESS_HISTORY_PROMPT,
@@ -91,34 +80,10 @@ def call_search(purpose, task, history, directory, action_input):
91
  else:
92
  history += "observation: I need to provide a valid URL to 'action: SEARCH action_input=https://URL'\n"
93
  except Exception as e:
94
- history += "observation: {}'\n".format(e)
95
- return "MAIN", None, history, task
96
-
97
- def call_main(purpose, task, history, directory, action_input):
98
- resp = run_gpt(
99
- ACTION_PROMPT,
100
- stop_tokens=["observation:", "task:", "action:", "thought:"],
101
- max_tokens=2096,
102
- purpose=purpose,
103
- task=task,
104
- history=history,
105
- )
106
- lines = resp.strip().strip("\n").split("\n")
107
- for line in lines:
108
- if line == "":
109
- continue
110
- if line.startswith("thought: "):
111
- history += "{}\n".format(line)
112
- elif line.startswith("action: "):
113
- action_name, action_input = parse_action(line)
114
- print(f'ACTION_NAME :: {action_name}')
115
- print(f'ACTION_INPUT :: {action_input}')
116
- history += "{}\n".format(line)
117
  if "COMPLETE" in action_name or "COMPLETE" in action_input:
118
  task = "END"
119
  return action_name, action_input, history, task
120
- else:
121
- return action_name, action_input, history, task
122
  else:
123
  history += "{}\n".format(line)
124
  return "MAIN", None, history, task
@@ -169,14 +134,13 @@ def run_action(purpose, task, history, directory, action_name, action_input):
169
  except Exception as e:
170
  history += "observation: the previous command did not produce any useful output, I need to check the commands syntax, or use a different command\n"
171
  return "MAIN", None, history, task
172
-
173
  def run(purpose, history):
174
  task = None
175
  directory = "./"
176
  if history:
177
  history = str(history).strip("[]")
178
- if not history:
179
- history = ""
180
 
181
  action_name = "UPDATE-TASK" if task is None else "MAIN"
182
  action_input = None
@@ -201,107 +165,10 @@ def run(purpose, history):
201
  yield (history)
202
  if task == "END":
203
  return (history)
204
-
205
- def format_prompt(message, history):
206
- prompt = "<s>"
207
- for user_prompt, bot_response in history:
208
- prompt += f"[INST] {user_prompt} [/INST]"
209
- prompt += f" {bot_response}</s> "
210
- prompt += f"[INST] {message} [/INST]"
211
- return prompt
212
-
213
- agents = [
214
- "WEB_DEV",
215
- "AI_SYSTEM_PROMPT",
216
- "PYTHON_CODE_DEV"
217
- ]
218
-
219
- def generate(
220
- prompt, history, agent_name=agents[0], sys_prompt="", temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0,
221
- ):
222
- seed = random.randint(1, 1111111111111111)
223
-
224
- agent = prompts.WEB_DEV
225
- if agent_name == "WEB_DEV":
226
- agent = prompts.WEB_DEV
227
- elif agent_name == "AI_SYSTEM_PROMPT":
228
- agent = prompts.AI_SYSTEM_PROMPT
229
- elif agent_name == "PYTHON_CODE_DEV":
230
- agent = prompts.PYTHON_CODE_DEV
231
- system_prompt = agent
232
- temperature = float(temperature)
233
- if temperature < 1e-2:
234
- temperature = 1e-2
235
- top_p = float(top_p)
236
-
237
- generate_kwargs = dict(
238
- temperature=temperature,
239
- max_new_tokens=max_new_tokens,
240
- top_p=top_p,
241
- repetition_penalty=repetition_penalty,
242
- do_sample=True,
243
- seed=seed,
244
- )
245
-
246
- formatted_prompt = format_prompt(f"{system_prompt}, {prompt}", history)
247
- stream = client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=False)
248
- output = ""
249
-
250
- for response in stream:
251
- output += response.token.text
252
- yield output
253
- return output
254
-
255
- additional_inputs = [
256
- gr.Dropdown(
257
- label="Agents",
258
- choices=[s for s in agents],
259
- value=agents[0],
260
- interactive=True,
261
- ),
262
- gr.Textbox(
263
- label="System Prompt",
264
- max_lines=1,
265
- interactive=True,
266
- ),
267
- gr.Slider(
268
- label="Temperature",
269
- value=0.9,
270
- minimum=0.0,
271
- maximum=1.0,
272
- step=0.05,
273
- interactive=True,
274
- info="Higher values produce more diverse outputs",
275
- ),
276
- gr.Slider(
277
- label="Max new tokens",
278
- value=1048 * 10,
279
- minimum=0,
280
- maximum=1048 * 10,
281
- step=64,
282
- interactive=True,
283
- info="The maximum numbers of new tokens",
284
- ),
285
- gr.Slider(
286
- label="Top-p (nucleus sampling)",
287
- value=0.90,
288
- minimum=0.0,
289
- maximum=1,
290
- step=0.05,
291
- interactive=True,
292
- info="Higher values sample more low-probability tokens",
293
- ),
294
- gr.Slider(
295
- label="Repetition penalty",
296
- value=1.2,
297
- minimum=1.0,
298
- maximum=2.0,
299
- step=0.05,
300
- ),
301
- ]
302
- def main():
303
- interface = create_interface()
304
- interface.launch()
305
-
306
  if __name__ == "__main__":
307
- main()
 
6
  from safe_search import safe_search
7
  from i_search import google
8
  from i_search import i_search as i_s
9
+ from agent import ( run_agent, create_interface, format_prompt_var, generate, MAX_HISTORY, client, VERBOSE, date_time_str, )
 
 
 
 
 
 
 
 
 
10
 
11
  from utils import parse_action, parse_file_content, read_python_module_structure
12
  from datetime import datetime
 
19
  VERBOSE = True
20
  MAX_HISTORY = 100
21
 
22
+ def format_prompt_var(message, history):
23
+ prompt = " "
24
  for user_prompt, bot_response in history:
25
+ prompt += f"[INST] {user_prompt} [/usr]\n{bot_response}\n"
26
+ prompt += f"[INST] {message} [/usr]\n"
 
27
  return prompt
28
 
29
  def run_gpt(prompt_template, stop_tokens, max_tokens, purpose, **prompt_kwargs):
 
54
  if VERBOSE:
55
  print(LOG_RESPONSE.format(resp))
56
  return resp
 
57
  def compress_history(purpose, task, history, directory):
58
  resp = run_gpt(
59
  COMPRESS_HISTORY_PROMPT,
 
80
  else:
81
  history += "observation: I need to provide a valid URL to 'action: SEARCH action_input=https://URL'\n"
82
  except Exception as e:
83
+ history += "{}\n".format(line)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  if "COMPLETE" in action_name or "COMPLETE" in action_input:
85
  task = "END"
86
  return action_name, action_input, history, task
 
 
87
  else:
88
  history += "{}\n".format(line)
89
  return "MAIN", None, history, task
 
134
  except Exception as e:
135
  history += "observation: the previous command did not produce any useful output, I need to check the commands syntax, or use a different command\n"
136
  return "MAIN", None, history, task
 
137
  def run(purpose, history):
138
  task = None
139
  directory = "./"
140
  if history:
141
  history = str(history).strip("[]")
142
+ if not history:
143
+ history = ""
144
 
145
  action_name = "UPDATE-TASK" if task is None else "MAIN"
146
  action_input = None
 
165
  yield (history)
166
  if task == "END":
167
  return (history)
168
+ iface = gr.Interface(fn=run, inputs=["text", "text"], outputs="text", title="Interactive AI Assistant", description="Enter your purpose and history to interact with the AI assistant.")
169
+
170
+ # Launch the Gradio interface
171
+ iface.launch(share=True)
172
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  if __name__ == "__main__":
174
+ main("Sample Purpose", "Sample History")