ltcai 2.1.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@
8
8
  <link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32.png">
9
9
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap">
10
10
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css">
11
- <link rel="stylesheet" href="/static/workspace.css?v=2.0.0">
11
+ <link rel="stylesheet" href="/static/workspace.css?v=2.2.0">
12
12
  </head>
13
13
  <body>
14
14
  <div class="workspace-shell">
package/telegram_bot.py CHANGED
@@ -840,7 +840,7 @@ async def handle_command(client, chat_id, command: str, args: str):
840
840
  await send_message(client, chat_id, HELP_TEXT)
841
841
  elif cmd == "agent":
842
842
  if not args:
843
- await send_message(client, chat_id, "사용법: /agent <작업 내용>\n예: /agent 쇼핑몰 메인 페이지 HTML 만들어줘\n\n특정 LLM 지정:\n/agent <작업> --exec openai/gpt-4o --review deepseek/deepseek-chat")
843
+ await send_message(client, chat_id, "사용법: /agent <작업 내용>\n예: /agent 쇼핑몰 메인 페이지 HTML 만들어줘\n\n특정 AI 지정:\n/agent <작업> --exec openai/gpt-4o --review together:Qwen/Qwen3-VL-32B-Instruct")
844
844
  return
845
845
  # Parse optional --exec / --review flags
846
846
  exec_model = reviewing_model = None