From 8d07a0b4eb31080484267567f203bee9dc55f0d3 Mon Sep 17 00:00:00 2001 From: Shen Hao <65658684+shenhao-stu@users.noreply.github.com> Date: Sun, 19 Apr 2026 19:12:36 +0800 Subject: [PATCH] feat: Import chatapp_common for command activation Added import for chatapp_common to enable command functionality. --- frontends/stapp.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontends/stapp.py b/frontends/stapp.py index 2fe9afa..466311b 100644 --- a/frontends/stapp.py +++ b/frontends/stapp.py @@ -9,10 +9,12 @@ try: sys.stderr.reconfigure(errors='replace') except: pass script_dir = os.path.dirname(__file__) sys.path.append(os.path.abspath(os.path.join(script_dir, '..'))) +sys.path.append(os.path.abspath(script_dir)) import streamlit as st import time, json, re, threading, queue from agentmain import GeneraticAgent +import chatapp_common # activate /continue command (monkey patches GeneraticAgent) st.set_page_config(page_title="Cowork", layout="wide")