-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
479 lines (416 loc) · 17.9 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
import os
import uuid
from flask import Flask, render_template, request, jsonify, Response, stream_with_context, send_from_directory
import json
from datetime import datetime
from openai import OpenAI
import time
from Python_tool.PythonExecutor_secure import execute_python_code as python
from web_tool.web_browsing import text_search as web
from wiki_tool.search_wiki import fetch_wikipedia_content as wiki
from web_tool.web_browsing import webpage_scraper as web_url
from web_tool.web_browsing import images_search as image
from youtube_tool.youtube import search_youtube as video
from youtube_tool.youtube import get_video_info as yt_url
app = Flask(__name__)
app.static_folder="templates"
@app.route('/style.css')
def serve_css():
return send_from_directory('templates', 'style.css')
client = OpenAI(
base_url=os.getenv("LMSTUDIO_BASE_URL", "http://127.0.0.1:1234/v1"),
api_key=os.getenv("LMSTUDIO_API_KEY", "lm-studio")
)
model_name = os.getenv("LMSTUDIO_MODEL", "lmstudio-community/qwen2.5-7b-instruct")
MODEL = model_name
@app.route('/')
def home():
return render_template('index.html')
Tools = [{
"type": "function",
"function": {
"name": "python",
"description": "Execute Python code and return the execution results. Use for math problems or task automation.",
"parameters": {
"type": "object",
"properties": {
"code": {"type": "string", "description": "Complete Python code to execute. Must return a value."}
},
"required": ["code"]
}
}
}, {
"type": "function",
"function": {
"name": "web",
"description": f"Search the web for relevant information. Current date and time: {datetime.now()}",
"parameters": {
"type": "object",
"properties": {
"query": {"type": "string", "description": "Search query for websites"},
"citation_finder": {"type": "string", "description": "Used for finding relevant citations"},
"number_of_websites": {
"type": "integer",
"description": "Maximum websites to visit",
"default": 4,
},
"number_of_citations": {
"type": "integer",
"description": "Maximum citations to scrape",
"default": 5,
}
},
"required": ["query"]
}
}
}, {
"type": "function",
"function": {
"name": "wiki",
"description": "Search Wikipedia for the most relevant article introduction",
"parameters": {
"type": "object",
"properties": {
"query": {"type": "string", "description": "Search query for Wikipedia article"}
},
"required": ["query"]
}
}
}, {
"type": "function",
"function": {
"name": "web_url",
"description": "Scrape a website for its content",
"parameters": {
"type": "object",
"properties": {
"url": {"type": "string", "description": "URL of the website to scrape"}
},
"required": ["url"]
}
}
}, {
"type": "function",
"function": {
"name": "image",
"description": f"Search the web for images.",
"parameters": {
"type": "object",
"properties": {
"query": {"type": "string", "description": "Search query for images"},
"number_of_images": {
"type": "integer",
"description": "Maximum images to get",
"default": 1,
},
},
"required": ["query"]
}
}
}, {
"type": "function",
"function": {
"name": "video",
"description": f"Search youtube videos and retrive the urls.",
"parameters": {
"type": "object",
"properties": {
"query": {"type": "string", "description": "Search query for vidoes"},
"number_of_videos": {
"type": "integer",
"description": "Maximum videos to get",
"default": 1,
},
},
"required": ["query"]
}
}
}, {
"type": "function",
"function": {
"name": "yt_url",
"description": "get information about a youtube video (title, descrption and transcription)",
"parameters": {
"type": "object",
"properties": {
"url": {"type": "string", "description": "URL of the youtube video"},
},
"required": ["url"]
}
}
}]
CONVERSATIONS_DIR = os.path.expanduser("~/.conversations")
if not os.path.exists(CONVERSATIONS_DIR):
os.makedirs(CONVERSATIONS_DIR)
current_conversation_id = None
chat_messages = []
interrupt_flag = False
def save_conversation():
if current_conversation_id:
conversation_data = {
"id": current_conversation_id,
"last_updated": datetime.now().isoformat(),
"messages": chat_messages,
"name": get_conversation_name(chat_messages) if chat_messages else "New Conversation"
}
with open(f"{CONVERSATIONS_DIR}/{current_conversation_id}.json", "w") as f:
json.dump(conversation_data, f , indent=2)
def load_conversation(conversation_id):
try:
with open(f"{CONVERSATIONS_DIR}/{conversation_id}.json", "r") as f:
data = json.load(f)
return data["messages"]
except:
return []
def get_all_conversations():
conversations = []
for filename in os.listdir(CONVERSATIONS_DIR):
if filename.endswith(".json"):
with open(f"{CONVERSATIONS_DIR}/{filename}", "r") as f:
data = json.load(f)
conversations.append({
"id": data["id"],
"last_updated": data["last_updated"],
"name": data.get("name", "Unnamed Conversation"),
"preview": data["messages"][0]["content"] if data["messages"] else "Empty conversation"
})
return sorted(conversations, key=lambda x: x["last_updated"], reverse=True)
def get_conversation_name(messages):
user_messages = [msg for msg in messages if msg["role"] == "user"]
assistant_messages = [msg for msg in messages if msg["role"] == "assistant"]
if len(user_messages) > 2:
with open(f"{CONVERSATIONS_DIR}/{current_conversation_id}.json", "r") as f:
data = json.load(f)
return data["name"]
number_of_messages = len(user_messages) + len(assistant_messages)
conv = json.dumps(messages[:number_of_messages] if number_of_messages else messages)
try:
response = client.chat.completions.create(
model=MODEL,
messages=[
{
"role": "system",
"content": (
"You are an AI assistant specializing in creating concise conversation titles. "
"Create a brief, relevant title (maximum 25 characters) for this conversation "
"based on the 1-3 user messages and assistant responses. "
"Return only the title, no quotes or extra text."
)
},
{
"role": "user",
"content": (conv)
}
],
temperature = 1
)
return response.choices[0].message.content.strip()[:40]
except Exception as e:
print(f"Error generating conversation name: {e}")
return "New Conversation"
@app.route('/chat', methods=['POST'])
def chat():
global current_conversation_id, chat_messages, interrupt_flag
user_message = request.json.get('message')
chat_messages.append({"role": "user", "content": str(user_message)})
if not current_conversation_id:
current_conversation_id = str(uuid.uuid4())
def generate_response():
continue_tool_execution = True
while continue_tool_execution:
try:
response = client.chat.completions.create(
model=MODEL,
messages=chat_messages,
tools=Tools,
stream=True,
temperature=0.2
)
current_message = ""
tool_calls = []
for chunk in response:
if interrupt_flag:
continue_tool_execution = False
break
delta = chunk.choices[0].delta
if delta.content is not None:
current_message += delta.content
yield f"data: {json.dumps({'type': 'content', 'content': delta.content})}\n\n"
elif delta.tool_calls:
for tc in delta.tool_calls:
# Show indicator when Python tool is called
if tc.function and tc.function.name == "python": yield f"data: {json.dumps({'type': 'tool-start', 'name': 'coding', 'args': {'code': 'Writing code...'}})}\n\n"
if len(tool_calls) <= tc.index:
tool_calls.append({
"id": "", "type": "function",
"function": {"name": "", "arguments": ""}
})
tool_calls[tc.index] = {
"id": (tool_calls[tc.index]["id"] + (tc.id or "")),
"type": "function",
"function": {
"name": (tool_calls[tc.index]["function"]["name"] + (tc.function.name or "")),
"arguments": (tool_calls[tc.index]["function"]["arguments"] + (tc.function.arguments or ""))
}
}
if current_message:
chat_messages.append({"role": "assistant", "content": current_message})
if tool_calls:
chat_messages.append({"role": "assistant", "tool_calls": tool_calls})
for tool_call in tool_calls:
arguments = json.loads(tool_call["function"]["arguments"])
tool_name = tool_call["function"]["name"]
yield f"data: {json.dumps({'type': 'tool-start', 'name': tool_name, 'args': arguments})}\n\n"
if tool_name == "python":
result = python(arguments["code"])
elif tool_name == "web":
result = web(
arguments["query"],
arguments.get("citation_finder", arguments["query"]),
arguments.get("number_of_websites", 3),
arguments.get("number_of_citations", 5)
)
elif tool_name == "wiki":
result = wiki(arguments["query"])
elif tool_name == "web_url":
result = web_url(arguments["url"])
elif tool_name == "image":
result = image(arguments["query"], arguments.get("number_of_images", 1))
elif tool_name == "video":
result = video(arguments["query"], arguments.get("number_of_videos", 1))
elif tool_name == "yt_url":
result = yt_url(arguments["url"])
chat_messages.append({
"role": "tool",
"content": str(result),
"tool_call_id": tool_call["id"]
})
yield f"data: {json.dumps({'type': 'tool', 'name': tool_name, 'content': result, 'args': arguments})}\n\n"
continue_tool_execution = True
else:
continue_tool_execution = False
except Exception as e:
print(f"Error in generate_response: {e}")
yield f"data: {json.dumps({'type': 'error', 'content': str(e)})}\n\n"
continue_tool_execution = False
yield "data: [DONE]\n\n"
save_conversation()
return Response(stream_with_context(generate_response()), mimetype='text/event-stream')
@app.route('/conversations', methods=['GET'])
def list_conversations():
return jsonify(get_all_conversations())
@app.route('/conversation/<conversation_id>', methods=['GET'])
def get_conversation(conversation_id):
global current_conversation_id, chat_messages
current_conversation_id = conversation_id
chat_messages = load_conversation(conversation_id)
return jsonify({"status": "success", "messages": chat_messages})
@app.route('/new', methods=['POST'])
def new_conversation():
global current_conversation_id, chat_messages
current_conversation_id = str(uuid.uuid4())
chat_messages = []
return jsonify({
"status": "success",
"conversation_id": current_conversation_id,
"name": "New Conversation"
})
@app.route('/conversation/<conversation_id>', methods=['DELETE'])
def delete_conversation(conversation_id):
try:
file_path = f"{CONVERSATIONS_DIR}/{conversation_id}.json"
if os.path.exists(file_path):
os.remove(file_path)
global current_conversation_id, chat_messages
if current_conversation_id == conversation_id:
current_conversation_id = None
chat_messages = []
return jsonify({"status": "success"})
else:
return jsonify({"status": "error", "message": "Conversation not found"}), 404
except Exception as e:
return jsonify({"status": "error", "message": str(e)}), 500
@app.route('/interrupt', methods=['POST'])
def interrupt():
global client, interrupt_flag
interrupt_flag = True
time.sleep(0.1)
client.close()
client = OpenAI(base_url="http://127.0.0.1:1234/v1", api_key="lm-studio")
interrupt_flag = False
return jsonify({"status": "success"})
@app.route('/messages', methods=['GET'])
def get_messages():
formatted_messages = []
current_tool_results = []
current_tool_args = {}
for msg in chat_messages:
if msg["role"] == "user":
formatted_messages.append({
"isUser": True,
"content": msg["content"]
})
elif msg["role"] == "assistant":
if "tool_calls" in msg:
current_tool_results = msg["tool_calls"]
current_tool_args = {
tc["id"]: json.loads(tc["function"]["arguments"])
for tc in msg["tool_calls"]
}
formatted_messages.append({
"isUser": False,
"content": msg.get("content", ""),
"tool_calls": current_tool_results
})
elif msg["role"] == "tool":
if formatted_messages and not formatted_messages[-1]["isUser"]:
if "tool_results" not in formatted_messages[-1]:
formatted_messages[-1]["tool_results"] = []
tool_call = next((tc for tc in current_tool_results
if tc["id"] == msg["tool_call_id"]), None)
if tool_call:
tool_name = tool_call["function"]["name"]
try:
content = eval(msg["content"])
except:
content = msg["content"]
formatted_messages[-1]["tool_results"].append({
"name": tool_name,
"content": content,
"args": current_tool_args.get(msg["tool_call_id"], {})
})
return jsonify(formatted_messages)
@app.route('/delete-last', methods=['POST'])
def delete_last_message():
global chat_messages
if len(chat_messages) >= 2:
# Find the last user message index
last_user_index = None
for i in range(len(chat_messages) - 1, -1, -1):
if chat_messages[i]["role"] == "user":
last_user_index = i
break
if last_user_index is not None:
# Remove all messages after and including the last user message
chat_messages = chat_messages[:last_user_index]
save_conversation()
return jsonify({"status": "success"})
return jsonify({"status": "error", "message": "No messages to delete"}), 400
@app.route('/regenerate', methods=['POST'])
def regenerate_response():
global chat_messages
if len(chat_messages) >= 1:
last_user_message = None
messages_to_remove = 0
for msg in reversed(chat_messages):
messages_to_remove += 1
if msg["role"] == "user":
last_user_message = msg["content"]
break
if last_user_message:
chat_messages = chat_messages[:-messages_to_remove]
save_conversation()
return jsonify({"status": "success", "message": last_user_message})
return jsonify({"status": "error", "message": "No message to regenerate"}), 400
if __name__ == '__main__':
app.run(debug=True)