Spaces:
Build error
Build error
File size: 17,850 Bytes
873d0cf |
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 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 |
# Create a python api and start_api function via flask
from flask import Flask, request, jsonify
import threading
import time
from werkzeug.serving import make_server
app = Flask(__name__)
@app.route("/status", methods=["POST"])
def status():
return jsonify({"response": True})
@app.route("/input", methods=["POST"])
def input():
"""
This function receives input from the user and returns the response.
"""
data = request.json
text = data["text"]
screen = data["screen"]
talk = data["talk"]
print("Input:", text)
from .gpt_computer_agent import the_main_window, the_input_box
firsst_text = the_input_box.toPlainText()
original_tts = the_main_window.tts_available
if talk == "true":
the_main_window.tts_available = True
the_main_window.manuel_stop = True
if screen != "true":
the_main_window.button_handler.input_text(text)
else:
the_main_window.button_handler.input_text_screenshot(text)
while the_input_box.toPlainText() == firsst_text:
time.sleep(0.3)
while the_input_box.toPlainText().startswith("System:"):
time.sleep(0.3)
while not the_main_window.state == "idle":
time.sleep(0.3)
response = the_input_box.toPlainText()
the_main_window.tts_available = original_tts
return jsonify({"response": response})
@app.route("/screenshot", methods=["POST"])
def screenshot():
"""
This function receives a screenshot from the user and returns the response.
"""
from .gpt_computer_agent import the_main_window, the_input_box
firsst_text = the_input_box.toPlainText()
the_main_window.button_handler.just_screenshot()
while the_input_box.toPlainText() == firsst_text:
time.sleep(0.3)
while the_input_box.toPlainText().startswith("System:"):
time.sleep(0.3)
while not the_main_window.state == "idle":
time.sleep(0.3)
response = the_input_box.toPlainText()
return jsonify({"response": response})
@app.route("/tts", methods=["POST"])
def tts():
"""
This function receives a text to speech request from the user and returns the response.
"""
from .gpt_computer_agent import the_main_window
original_tts = the_main_window.tts_available
the_main_window.tts_available = True
the_main_window.manuel_stop = True
data = request.json
text = data["text"]
print("TTS:", text)
from .agent.process import tts_if_you_can
tts_if_you_can(
text, not_threaded=False, status_edit=True, bypass_other_settings=True
)
the_main_window.tts_available = original_tts
return jsonify({"response": "TTS request received"})
@app.route("/profile", methods=["POST"])
def profile():
"""
This function sets the profile for the application.
"""
data = request.json
profile = data["profile"]
print("Profile:", profile)
from .utils.db import set_profile
set_profile(profile)
from .gpt_computer_agent import the_main_window
the_main_window.update_from_thread("Profile set to " + profile)
return jsonify({"response": "Profile set to " + profile})
@app.route("/reset_memory", methods=["POST"])
def reset_memory():
"""
This function resets the memory of the application.
"""
from .agent.chat_history import clear_chat_history
clear_chat_history()
from .gpt_computer_agent import the_main_window
the_main_window.update_from_thread("Memory reset")
return jsonify({"response": "Memory reset"})
@app.route("/activate_predefined_agents", methods=["POST"])
def enable_predefined_agents():
"""
This function enables predefined agents for the application.
"""
from .utils.db import activate_predefined_agents_setting
activate_predefined_agents_setting()
from .gpt_computer_agent import the_main_window
the_main_window.update_from_thread("Predefined agents enabled")
return jsonify({"response": "Predefined agents enabled"})
@app.route("/deactivate_predefined_agents", methods=["POST"])
def disable_predefined_agents():
"""
This function disables predefined agents for the application.
"""
from .utils.db import deactivate_predefined_agents_setting
deactivate_predefined_agents_setting()
from .gpt_computer_agent import the_main_window
the_main_window.update_from_thread("Predefined agents disabled")
return jsonify({"response": "Predefined agents disabled"})
@app.route("/activate_online_tools", methods=["POST"])
def enable_online_tools():
"""
This function enables online tools for the application.
"""
from .utils.db import activate_online_tools_setting
activate_online_tools_setting()
from .gpt_computer_agent import the_main_window
the_main_window.update_from_thread("Online tools enabled")
return jsonify({"response": "Online tools enabled"})
@app.route("/deactivate_online_tools", methods=["POST"])
def disable_online_tools():
"""
This function disables online tools for the application.
"""
from .utils.db import deactivate_online_tools_setting
deactivate_online_tools_setting()
from .gpt_computer_agent import the_main_window
the_main_window.update_from_thread("Online tools disabled")
return jsonify({"response": "Online tools disabled"})
@app.route("/change_name", methods=["POST"])
def change_name():
"""
This function changes the name of the application.
"""
data = request.json
new_name = data["new_name"]
print("Name:", new_name)
from .character import change_name
change_name(new_name)
return jsonify({"response": "Name changed to " + new_name})
@app.route("/change_developer", methods=["POST"])
def change_developer():
"""
This function changes the developer of the application.
"""
data = request.json
new_developer = data["new_developer"]
print("Developer:", new_developer)
from .character import change_developer
change_developer(new_developer)
return jsonify({"response": "Developer changed to " + new_developer})
@app.route("/library_install", methods=["POST"])
def library_install():
"""
This function install a library.
"""
data = request.json
library = data["library"]
print("Library İnstall:", library)
from .utils.pypi import install_library
if install_library(library):
return jsonify({"response": f"Library {library} installed"})
else:
return jsonify({"response": f"Library {library} installation failed"})
@app.route("/library_uninstall", methods=["POST"])
def library_uninstall():
"""
This function uninstall a library.
"""
data = request.json
library = data["library"]
print("Library Uninstall:", library)
from .utils.pypi import uninstall_library
if uninstall_library(library):
return jsonify({"response": f"Library {library} uninstalled"})
else:
return jsonify({"response": f"Library {library} uninstallation failed"})
@app.route("/custom_tool", methods=["POST"])
def custom_tool():
"""
This function adds a custom tool to the application.
"""
data = request.json
code = data["code"]
print("Custom Tool:", code)
from .utils.function import string_to_function
try:
func = string_to_function(code)
from .tooler import Tool
Tool(func)
return jsonify({"response": f"Custom tool {func.__name__} added"})
except Exception as e:
return jsonify({"response": f"Custom tool addition failed: {e}"}), 500
@app.route("/top_bar_activate", methods=["POST"])
def top_bar_activate():
"""
This function serve an animation of top bar to show an operations especialy
"""
from .gpt_computer_agent import the_main_window
data = request.json
text = data["text"]
the_main_window.active_border_animation(text)
return jsonify({"response": "Activated top bar animation"})
@app.route("/top_bar_deactivate", methods=["POST"])
def top_bar_deactivate():
"""
This function stop the top bar animation
"""
from .gpt_computer_agent import the_main_window
data = request.json
text = data["text"]
the_main_window.deactive_border_animation(text)
return jsonify({"response": "Deactivated top bar animation"})
@app.route("/boop_sound", methods=["POST"])
def boop_sound():
"""
This function sound an boop to user
"""
from .gpt_computer_agent import click_sound
click_sound()
return jsonify({"response": "Sound played"})
@app.route("/ask_to_user", methods=["POST"])
def ask_to_user():
"""
This api asks question to the user and return the result
"""
data = request.json
question = data["question"]
wait_for_answer = data["wait_for_answer"]
from .standard_tools import ask_to_user
result = ask_to_user(question, wait_for_answer)
return jsonify({"response": result})
@app.route("/set_text", methods=["POST"])
def set_text():
"""
This api set text to main window text input
"""
data = request.json
text = data["text"]
from .gpt_computer_agent import the_main_window
the_main_window.set_text_from_api(text)
return jsonify({"response": "Text set."})
@app.route("/set_background_color", methods=["POST"])
def set_background_color():
"""
This api set text to main window text input
"""
data = request.json
color = data["color"]
from .gpt_computer_agent import the_main_window
the_main_window.set_background_color(color)
return jsonify({"response": "Background color set."})
@app.route("/set_opacity", methods=["POST"])
def set_opacity():
"""
This api set text to main window text input
"""
data = request.json
opacity = data["opacity"]
from .gpt_computer_agent import the_main_window
the_main_window.set_opacity(opacity)
return jsonify({"response": "Opacity set."})
@app.route("/set_border_radius", methods=["POST"])
def set_border_radius():
"""
This api set text to main window text input
"""
data = request.json
radius = data["radius"]
from .gpt_computer_agent import the_main_window
the_main_window.set_border_radius(radius)
return jsonify({"response": "Border radius set."})
@app.route("/collapse", methods=["POST"])
def collapse():
"""
This api set text to main window text input
"""
from .gpt_computer_agent import the_main_window
the_main_window.collapse_gca_api()
return jsonify({"response": "Collapsed."})
@app.route("/expand", methods=["POST"])
def expand():
"""
This api set text to main window text input
"""
from .gpt_computer_agent import the_main_window
the_main_window.uncollapse_gca_api()
return jsonify({"response": "Expanded."})
@app.route("/save_openai_api_key", methods=["POST"])
def save_openai_api_key():
"""
This api saves the OpenAI API key
"""
data = request.json
openai_api_key = data["openai_api_key"]
from .utils.db import save_api_key
save_api_key(openai_api_key)
return jsonify({"response": "OpenAI API key saved."})
@app.route("/save_openai_url", methods=["POST"])
def save_openai_url():
"""
This api saves the OpenAI base URL
"""
data = request.json
openai_url = data["openai_url"]
from .utils.db import save_openai_url
save_openai_url(openai_url)
return jsonify({"response": "OpenAI base URL saved."})
@app.route("/save_model_settings", methods=["POST"])
def save_model_settings():
"""
This api saves the model settings
"""
data = request.json
model_settings = data["model_settings"]
from .utils.db import save_model_settings
save_model_settings(model_settings)
return jsonify({"response": "Model settings saved."})
@app.route("/save_groq_api_key", methods=["POST"])
def save_groq_api_key():
"""
This api saves the Groq API key
"""
data = request.json
groq_api_key = data["groq_api_key"]
from .utils.db import save_groq_api_key
save_groq_api_key(groq_api_key)
return jsonify({"response": "Groq API key saved."})
@app.route("/save_google_api_key", methods=["POST"])
def save_google_api_key():
"""
This api saves the Google Generative AI API key
"""
data = request.json
google_api_key = data["google_api_key"]
from .utils.db import save_google_api_key
save_google_api_key(google_api_key)
return jsonify({"response": "Google Generative AI API key saved."})
@app.route("/save_tts_model_settings", methods=["POST"])
def save_tts_model_settings():
"""
This api saves the TTS model settings
"""
data = request.json
tts_model_settings = data["tts_model_settings"]
from .utils.db import save_tts_model_settings
save_tts_model_settings(tts_model_settings)
return jsonify({"response": "TTS model settings saved."})
@app.route("/save_stt_model_settings", methods=["POST"])
def save_stt_model_settings():
"""
This api saves the STT model settings
"""
data = request.json
stt_model_settings = data["stt_model_settings"]
from .utils.db import save_stt_model_settings
save_stt_model_settings(stt_model_settings)
return jsonify({"response": "STT model settings saved."})
@app.route("/show_logo", methods=["POST"])
def show_logo():
"""
This api shows the custom logo
"""
from .utils.db import activate_logo_active_setting
activate_logo_active_setting()
from .gpt_computer_agent import the_main_window
the_main_window.show_logo_api()
return jsonify({"response": "Custom logo activated."})
@app.route("/hide_logo", methods=["POST"])
def hide_logo():
"""
This api hides the custom logo
"""
from .utils.db import deactivate_logo_active_setting
deactivate_logo_active_setting()
from .gpt_computer_agent import the_main_window
the_main_window.hide_logo_api()
return jsonify({"response": "Custom logo deactivated."})
@app.route("/default_logo", methods=["POST"])
def default_logo():
"""
This api enable default logo
"""
from .utils.db import (
save_logo_file_path,
icon_256_path,
is_logo_active_setting_active,
)
save_logo_file_path(icon_256_path)
from .gpt_computer_agent import the_main_window
the_main_window.tray_and_task_bar_logo_api()
if is_logo_active_setting_active():
the_main_window.show_logo_api()
return jsonify({"response": "Custom logo deactivated."})
@app.route("/custom_logo_upload", methods=["POST"])
def custom_logo_upload():
"""
This api uploads a custom logo
"""
file = request.files["logo"]
from .utils.db import (
save_logo_file_path,
custom_logo_path,
is_logo_active_setting_active,
)
file.save(custom_logo_path)
save_logo_file_path(custom_logo_path)
from .gpt_computer_agent import the_main_window
the_main_window.tray_and_task_bar_logo_api()
if is_logo_active_setting_active():
the_main_window.show_logo_api()
return jsonify({"response": "Custom logo uploaded."})
@app.route("/activate_long_gca", methods=["POST"])
def activate_long_gca():
"""
This api activates long GCA
"""
from .gpt_computer_agent import the_main_window
the_main_window.activate_long_gca_api()
return jsonify({"response": "Long GCA activated."})
@app.route("/deactivate_long_gca", methods=["POST"])
def deactivate_long_gca():
"""
This api deactivates long GCA
"""
from .gpt_computer_agent import the_main_window
the_main_window.deactivate_long_gca_api()
return jsonify({"response": "Long GCA deactivated."})
@app.route("/train", methods=["POST"])
def train():
"""
This api trains the gca with given url
"""
data = request.json
url = data["url"]
from .utils.train import train
the_result = train(url)
return jsonify({"response": the_result})
@app.route("/get_openai_models", methods=["POST"])
def get_openai_models():
"""
This api returns the list of OpenAI models
"""
from .llm_settings import get_openai_models
return jsonify({"response": get_openai_models()})
@app.route("/get_ollama_models", methods=["POST"])
def get_ollama_models():
"""
This api returns the list of Ollama models
"""
from .llm_settings import get_ollama_models
return jsonify({"response": get_ollama_models()})
@app.route("/get_google_models", methods=["POST"])
def get_google_models():
"""
This api returns the list of Google models
"""
from .llm_settings import get_google_models
return jsonify({"response": get_google_models()})
@app.route("/get_groq_models", methods=["POST"])
def get_groq_models():
"""
This api returns the list of Groq models
"""
from .llm_settings import get_groq_models
return jsonify({"response": get_groq_models()})
class ServerThread(threading.Thread):
def __init__(self, app, host, port):
threading.Thread.__init__(self)
self.srv = make_server(host, port, app)
self.ctx = app.app_context()
self.ctx.push()
def run(self):
print("Starting server")
self.srv.serve_forever()
def shutdown(self):
print("Stopping server")
self.srv.shutdown()
server_thread = None
def start_api():
global server_thread
if server_thread is None:
server_thread = ServerThread(app, "localhost", 7541)
server_thread.start()
print("API started")
else:
print("API is already running")
def stop_api():
global server_thread
if server_thread is not None:
server_thread.shutdown()
server_thread.join()
server_thread = None
print("API stopped")
else:
print("API is not running")
|