File size: 27,844 Bytes
50c3ed9 942b4ab 50c3ed9 20ad26e 942b4ab 50c3ed9 942b4ab cc37d72 50c3ed9 942b4ab 20ad26e 942b4ab 50c3ed9 942b4ab cb145d6 942b4ab cb145d6 942b4ab cc37d72 942b4ab cc37d72 942b4ab cc37d72 942b4ab cc37d72 942b4ab cc37d72 942b4ab 881779c 942b4ab 881779c 20ad26e 942b4ab cc37d72 942b4ab 20ad26e 942b4ab 20ad26e 942b4ab 20ad26e 942b4ab 881779c 942b4ab 881779c 942b4ab 881779c 942b4ab 881779c 942b4ab cc37d72 942b4ab 50c3ed9 942b4ab 20ad26e 942b4ab 20ad26e 942b4ab 20ad26e 881779c 942b4ab 20ad26e 942b4ab 20ad26e 942b4ab 50c3ed9 942b4ab 20ad26e 942b4ab 20ad26e 942b4ab 50c3ed9 942b4ab 50c3ed9 942b4ab |
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 675 676 677 678 679 680 681 |
#!/usr/bin/env python3
import os
import sys
import json
import time
import shutil
import signal
import logging
import subprocess
from pathlib import Path
import tempfile
import threading
# Настройка логирования
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[logging.StreamHandler()]
)
logger = logging.getLogger("TEN-Agent")
# Пути к директориям
TMP_DIR = Path("/tmp/ten_user")
LOG_DIR = TMP_DIR / "logs"
AGENTS_DIR = TMP_DIR / "agents"
RAG_DIR = TMP_DIR / "rag_data"
def setup_environment():
"""Настройка базового окружения"""
logger.info("Current directory: %s", os.getcwd())
logger.info("Current user: %s", os.environ.get('USER', 'unknown'))
# Информация об окружении
logger.info("HOME: %s", os.environ.get('HOME', 'Not set'))
logger.info("PATH: %s", os.environ.get('PATH', 'Not set'))
# Проверка прав доступа во временной директории
logger.info("Checking permissions for %s", "/tmp")
try:
result = subprocess.run(["ls", "-la", "/tmp"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
logger.info(" - %s", result.stdout.decode('utf-8').strip())
# Проверка возможности записи
test_file = "/tmp/ten_test_write.txt"
can_write = False
try:
with open(test_file, 'w') as f:
f.write("Test write")
can_write = True
logger.info(" - Can write: Yes")
os.remove(test_file)
except Exception as e:
logger.info(" - Can write: No (%s)", str(e))
if not can_write:
logger.error("Cannot write to /tmp. This is required for operation.")
sys.exit(1)
except Exception as e:
logger.error("Error checking permissions: %s", str(e))
def create_directory_structure():
"""Создание необходимой структуры директорий"""
logger.info("Creating user directory...")
# Создание основной директории
TMP_DIR.mkdir(exist_ok=True)
logger.info(f"Created directory structure at {TMP_DIR}")
# Создание поддиректорий
AGENTS_DIR.mkdir(exist_ok=True)
RAG_DIR.mkdir(exist_ok=True)
LOG_DIR.mkdir(exist_ok=True)
# Создаем папки, которые ожидает API сервер
server_log_dir = Path("/tmp/ten_agent/logs")
server_log_dir.parent.mkdir(exist_ok=True)
server_log_dir.mkdir(exist_ok=True)
logger.info(f"Created log directory at {LOG_DIR}")
logger.info(f"Created server log directory at {server_log_dir}")
def create_env_file():
"""Создание файла .env для API сервера"""
logger.info("Creating .env file...")
# Создаем .env файл в директории сервера
env_path = Path("/app/.env")
tmp_env_path = Path("/tmp/ten_agent/.env")
# Базовое содержимое .env
env_content = """
LOG_LEVEL=debug
LOG_DIR=/tmp/ten_agent/logs
AGENT_SERVER_DIRECTORY=/tmp/ten_user/agents
AGENT_SERVER_HOST=0.0.0.0
AGENT_SERVER_PORT=8080
PUBLIC_URL=http://localhost:7860
DISABLE_CAMERA=true
"""
# Записываем файл во временную директорию
with open(tmp_env_path, 'w') as f:
f.write(env_content)
# Пытаемся скопировать в основную директорию (может не сработать из-за прав доступа)
try:
with open(env_path, 'w') as f:
f.write(env_content)
logger.info(f"Created .env file at {env_path}")
except Exception as e:
logger.warning(f"Could not create .env in /app, using temporary one: {e}")
logger.info(f"Created .env file at {tmp_env_path}")
# Также устанавливаем переменные окружения напрямую
os.environ["LOG_LEVEL"] = "debug"
os.environ["LOG_DIR"] = "/tmp/ten_agent/logs"
os.environ["AGENT_SERVER_DIRECTORY"] = str(AGENTS_DIR)
os.environ["AGENT_SERVER_HOST"] = "0.0.0.0"
os.environ["AGENT_SERVER_PORT"] = "8080"
os.environ["PUBLIC_URL"] = "http://localhost:7860"
os.environ["DISABLE_CAMERA"] = "true"
def create_basic_config():
"""Создание базовых конфигурационных файлов"""
logger.info("Creating basic configuration files...")
# Создание property.json
property_path = AGENTS_DIR / "property.json"
if not property_path.exists():
property_data = {
"_ten": {
"version": "0.0.1"
},
"name": "TEN Agent Example",
"version": "0.0.1",
"extensions": ["openai_chatgpt"],
"description": "A basic voice agent with OpenAI",
"graphs": [
{
"id": "voice_agent",
"name": "Voice Agent",
"description": "Basic voice agent with OpenAI",
"file": "examples/voice_agent.json"
},
{
"id": "chat_agent",
"name": "Chat Agent",
"description": "Simple chat agent",
"file": "examples/chat_agent.json"
}
]
}
with open(property_path, 'w') as f:
json.dump(property_data, f, indent=2)
# Создание директории examples
examples_dir = AGENTS_DIR / "examples"
examples_dir.mkdir(exist_ok=True)
# Создание voice_agent.json
voice_agent_path = examples_dir / "voice_agent.json"
if not voice_agent_path.exists():
voice_data = {
"_ten": {
"version": "0.0.1"
},
"nodes": [
{
"id": "start",
"type": "start",
"data": {
"x": 100,
"y": 100
}
},
{
"id": "openai_chatgpt",
"type": "openai_chatgpt",
"data": {
"x": 300,
"y": 200,
"properties": {
"model": "gpt-3.5-turbo",
"temperature": 0.7,
"system_prompt": "Вы полезный голосовой помощник."
}
}
},
{
"id": "end",
"type": "end",
"data": {
"x": 500,
"y": 100
}
}
],
"edges": [
{
"id": "start_to_chatgpt",
"source": "start",
"target": "openai_chatgpt"
},
{
"id": "chatgpt_to_end",
"source": "openai_chatgpt",
"target": "end"
}
],
"groups": [],
"templates": [],
"root": "start"
}
with open(voice_agent_path, 'w') as f:
json.dump(voice_data, f, indent=2)
# Создание chat_agent.json
chat_agent_path = examples_dir / "chat_agent.json"
if not chat_agent_path.exists():
chat_data = {
"_ten": {
"version": "0.0.1"
},
"nodes": [
{
"id": "start",
"type": "start",
"data": {
"x": 100,
"y": 100
}
},
{
"id": "openai_chatgpt",
"type": "openai_chatgpt",
"data": {
"x": 300,
"y": 200,
"properties": {
"model": "gpt-3.5-turbo",
"temperature": 0.7,
"system_prompt": "Вы полезный чат-бот."
}
}
},
{
"id": "end",
"type": "end",
"data": {
"x": 500,
"y": 100
}
}
],
"edges": [
{
"id": "start_to_chatgpt",
"source": "start",
"target": "openai_chatgpt"
},
{
"id": "chatgpt_to_end",
"source": "openai_chatgpt",
"target": "end"
}
],
"groups": [],
"templates": [],
"root": "start"
}
with open(chat_agent_path, 'w') as f:
json.dump(chat_data, f, indent=2)
# Создание manifest.json
manifest_path = AGENTS_DIR / "manifest.json"
if not manifest_path.exists():
manifest_data = {
"_ten": {
"version": "0.0.1"
},
"name": "default",
"agents": [
{
"name": "voice_agent",
"description": "A simple voice agent",
"type": "voice"
},
{
"name": "chat_agent",
"description": "A text chat agent",
"type": "chat"
}
]
}
with open(manifest_path, 'w') as f:
json.dump(manifest_data, f, indent=2)
logger.info("Basic configuration files created successfully.")
def run_api_server():
"""Запуск API сервера"""
logger.info(f"Starting API server with agents directory: {AGENTS_DIR}")
# Запуск API сервера напрямую из директории server
api_binary = Path("/app/server/bin/api")
if not api_binary.exists():
logger.error(f"API binary not found at {api_binary}")
raise FileNotFoundError(f"API binary not found at {api_binary}")
# Настраиваем рабочую директорию и окружение
work_dir = Path("/app/server")
env = os.environ.copy()
env["AGENT_SERVER_DIRECTORY"] = str(AGENTS_DIR)
env["LOG_DIR"] = "/tmp/ten_agent/logs"
cmd = [str(api_binary)]
logger.info(f"Running command: {' '.join(cmd)}")
logger.info(f"With AGENT_SERVER_DIRECTORY={env['AGENT_SERVER_DIRECTORY']}")
logger.info(f"With LOG_DIR={env['LOG_DIR']}")
# Запуск процесса сервера
api_process = subprocess.Popen(
cmd,
cwd=str(work_dir),
env=env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
bufsize=1,
)
# Логирование вывода процесса
def log_output(stream, prefix):
for line in stream:
logger.info(f"{prefix}: {line.strip()}")
threading.Thread(target=log_output, args=(api_process.stdout, "API"), daemon=True).start()
threading.Thread(target=log_output, args=(api_process.stderr, "API ERROR"), daemon=True).start()
# Проверка, что процесс запустился
time.sleep(2)
if api_process.poll() is not None:
logger.error(f"API server failed to start with exit code {api_process.returncode}")
# Если процесс упал, логируем его вывод
stdout, stderr = api_process.communicate()
logger.error(f"API stdout: {stdout}")
logger.error(f"API stderr: {stderr}")
# Пробуем запустить с другими аргументами, если первая попытка не удалась
logger.info("Trying alternative API server launch method...")
try:
# Пробуем запустить с помощью wrapper скрипта
wrapper_script = Path("/app/api_wrapper.py")
if wrapper_script.exists():
logger.info("Using api_wrapper.py as fallback")
env["AGENT_DIR"] = str(AGENTS_DIR)
wrapper_process = subprocess.Popen(
["python3", str(wrapper_script)],
env=env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
bufsize=1,
)
threading.Thread(target=log_output, args=(wrapper_process.stdout, "WRAPPER"), daemon=True).start()
threading.Thread(target=log_output, args=(wrapper_process.stderr, "WRAPPER ERROR"), daemon=True).start()
time.sleep(2)
if wrapper_process.poll() is not None:
logger.error(f"Wrapper script failed with code {wrapper_process.returncode}")
stdout, stderr = wrapper_process.communicate()
logger.error(f"Wrapper stdout: {stdout}")
logger.error(f"Wrapper stderr: {stderr}")
raise RuntimeError("All API server launch methods failed")
logger.info("API server started through wrapper script")
return wrapper_process
except Exception as e:
logger.error(f"Alternative launch method also failed: {e}")
raise RuntimeError(f"API server failed to start with exit code {api_process.returncode}")
logger.info("API server started successfully")
return api_process
def run_proxy_server():
"""Запуск прокси-сервера для обработки запросов TEN-Agent Designer API"""
# Код для запуска прокси-сервера
logger.info("Starting proxy server for Designer API requests")
import http.server
import socketserver
import urllib.request
import urllib.error
import json
class ProxyHTTPRequestHandler(http.server.SimpleHTTPRequestHandler):
def do_POST(self):
logger.info(f"Received POST request: {self.path}")
# Перенаправляем запрос /api/dev/v1/packages/reload на /graphs
if self.path.startswith('/api/dev/v1/packages/reload') or self.path.startswith('/api/designer/v1/packages/reload'):
try:
logger.info("Redirecting to /graphs")
try:
with urllib.request.urlopen("http://localhost:8080/graphs") as response:
data = response.read().decode('utf-8')
# Если сервер вернул пустой ответ или ошибку, создаем свой собственный ответ
if not data or "Invalid format" in data:
logger.info("Server returned error or empty response, creating custom response")
# Создаем хардкодный список графов из property.json
property_path = AGENTS_DIR / "property.json"
if property_path.exists():
try:
with open(property_path, 'r') as f:
property_data = json.load(f)
graphs = property_data.get("graphs", [])
except Exception as e:
logger.error(f"Error reading property.json: {e}")
graphs = []
else:
graphs = []
# Добавляем обязательные поля для каждого графа
for graph in graphs:
if "id" not in graph:
graph["id"] = graph.get("name", "").lower().replace(" ", "_")
else:
try:
# Пытаемся разобрать JSON из ответа
graphs = json.loads(data)
except json.JSONDecodeError:
logger.error(f"Error parsing JSON from server response: {data}")
graphs = []
# Форматируем ответ в нужном формате для фронтенда
formatted_response = {
"data": graphs,
"status": 200,
"message": "Success"
}
response_data = json.dumps(formatted_response).encode('utf-8')
# Отправляем ответ
self.send_response(200)
self.send_header('Content-Type', 'application/json')
self.send_header('Content-Length', len(response_data))
self.send_header('Access-Control-Allow-Origin', '*')
self.end_headers()
self.wfile.write(response_data)
logger.info(f"Sent response: {response_data.decode('utf-8')}")
except urllib.error.URLError as e:
logger.error(f"Error when redirecting: {e}")
# В случае ошибки, отправляем хардкодный ответ
property_path = AGENTS_DIR / "property.json"
if property_path.exists():
try:
with open(property_path, 'r') as f:
property_data = json.load(f)
graphs = property_data.get("graphs", [])
except Exception as e:
logger.error(f"Error reading property.json: {e}")
graphs = []
else:
graphs = []
# Добавляем обязательные поля для каждого графа
for graph in graphs:
if "id" not in graph:
graph["id"] = graph.get("name", "").lower().replace(" ", "_")
formatted_response = {
"data": graphs,
"status": 200,
"message": "Success"
}
response_data = json.dumps(formatted_response).encode('utf-8')
self.send_response(200)
self.send_header('Content-Type', 'application/json')
self.send_header('Content-Length', len(response_data))
self.send_header('Access-Control-Allow-Origin', '*')
self.end_headers()
self.wfile.write(response_data)
logger.info(f"Sent hardcoded response: {response_data.decode('utf-8')}")
except Exception as e:
logger.error(f"Unexpected error: {e}")
self.send_error(500, f"Internal Server Error: {str(e)}")
else:
self.send_error(404, "Not Found")
def do_OPTIONS(self):
self.send_response(200)
self.send_header('Access-Control-Allow-Origin', '*')
self.send_header('Access-Control-Allow-Methods', 'GET, POST, OPTIONS')
self.send_header('Access-Control-Allow-Headers', 'Content-Type')
self.end_headers()
def do_GET(self):
logger.info(f"Received GET request: {self.path}")
# Перенаправляем запрос /api/designer/v1/addons/extensions
if self.path.startswith('/api/designer/v1/addons/extensions'):
# Отправляем хардкодный ответ со списком расширений
extensions = [
{
"id": "openai_chatgpt",
"name": "OpenAI ChatGPT",
"version": "0.0.1",
"description": "Integration with OpenAI ChatGPT API",
"nodes": [
{
"id": "openai_chatgpt",
"name": "OpenAI ChatGPT",
"category": "AI",
"description": "Sends message to OpenAI ChatGPT API"
}
]
}
]
formatted_response = {
"data": extensions,
"status": 200,
"message": "Success"
}
response_data = json.dumps(formatted_response).encode('utf-8')
self.send_response(200)
self.send_header('Content-Type', 'application/json')
self.send_header('Content-Length', len(response_data))
self.send_header('Access-Control-Allow-Origin', '*')
self.end_headers()
self.wfile.write(response_data)
logger.info(f"Sent response for extensions: {response_data.decode('utf-8')}")
else:
self.send_error(404, "Not Found")
# Запуск HTTP сервера
port = 49483
httpd = socketserver.ThreadingTCPServer(("", port), ProxyHTTPRequestHandler)
logger.info(f"Proxy server started at port {port}")
# Запуск в отдельном потоке
proxy_thread = threading.Thread(target=httpd.serve_forever)
proxy_thread.daemon = True
proxy_thread.start()
return httpd
def run_playground():
"""Запуск Playground UI"""
logger.info("Starting Playground UI in development mode")
# Настройка окружения для Playground
env = os.environ.copy()
env["PORT"] = "7860"
env["AGENT_SERVER_URL"] = "http://localhost:8080"
env["NEXT_PUBLIC_EDIT_GRAPH_MODE"] = "true"
env["NEXT_PUBLIC_DISABLE_CAMERA"] = "true"
playground_dir = Path("/app/playground")
if not playground_dir.exists():
logger.error(f"Playground directory not found at {playground_dir}")
raise FileNotFoundError(f"Playground directory not found at {playground_dir}")
cmd = ["pnpm", "dev"]
logger.info(f"Running command in {playground_dir}: {' '.join(cmd)}")
# Запуск процесса Playground
playground_process = subprocess.Popen(
cmd,
cwd=str(playground_dir),
env=env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
bufsize=1,
)
# Логирование вывода процесса
def log_output(stream, prefix):
for line in stream:
logger.info(f"{prefix}: {line.strip()}")
threading.Thread(target=log_output, args=(playground_process.stdout, "PLAYGROUND"), daemon=True).start()
threading.Thread(target=log_output, args=(playground_process.stderr, "PLAYGROUND ERROR"), daemon=True).start()
# Проверка, что процесс запустился
time.sleep(3)
if playground_process.poll() is not None:
logger.error(f"Playground UI failed to start with exit code {playground_process.returncode}")
raise RuntimeError(f"Playground UI failed to start with exit code {playground_process.returncode}")
logger.info("Playground UI started successfully")
return playground_process
def main():
"""Основная функция запуска"""
try:
# Настройка окружения
setup_environment()
# Создание структуры директорий
create_directory_structure()
# Создаем .env файл
create_env_file()
# Создание базовых конфигурационных файлов
create_basic_config()
# Запуск сервисов
api_process = run_api_server()
proxy_server = run_proxy_server()
playground_process = run_playground()
# Отслеживание статуса процессов
logger.info("All services started. Monitoring status...")
try:
while True:
# Проверка статуса API сервера
if api_process.poll() is not None:
logger.error(f"API server exited with code {api_process.returncode}")
break
# Проверка статуса Playground
if playground_process.poll() is not None:
logger.error(f"Playground UI exited with code {playground_process.returncode}")
break
time.sleep(5)
except KeyboardInterrupt:
logger.info("Received interrupt signal")
finally:
# Остановка сервисов
logger.info("Stopping services...")
try:
if api_process and api_process.poll() is None:
api_process.terminate()
api_process.wait(timeout=5)
except Exception as e:
logger.warning(f"Error stopping API server: {e}")
try:
if playground_process and playground_process.poll() is None:
playground_process.terminate()
playground_process.wait(timeout=5)
except Exception as e:
logger.warning(f"Error stopping Playground UI: {e}")
try:
proxy_server.shutdown()
except Exception as e:
logger.warning(f"Error stopping proxy server: {e}")
except Exception as e:
logger.error(f"Error: {e}", exc_info=True)
return 1
return 0
if __name__ == "__main__":
# Настройка обработки сигналов
signal.signal(signal.SIGINT, lambda sig, frame: sys.exit(0))
signal.signal(signal.SIGTERM, lambda sig, frame: sys.exit(0))
# Запуск основной функции
sys.exit(main()) |