Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a03397-4d51-7fd1-8ff2-946eb22ea2bc
This commit is contained in:
parent
7b3eff4a47
commit
2983fe6551
12 changed files with 203 additions and 7 deletions
|
|
@ -18,7 +18,7 @@ from pathlib import Path
|
|||
|
||||
from . import __version__
|
||||
from .config import db_path, pid_path, lock_path, config_path, socket_path, state_dir, setting
|
||||
from .service import Service, ping, request
|
||||
from .service import PUSHY_FRAMING_CAPABILITY, Service, ping, request
|
||||
from .store import Store
|
||||
from .tmux import TmuxError, TmuxManager
|
||||
from .broker import BrokerIdentity, InputBroker
|
||||
|
|
@ -130,7 +130,9 @@ def ensure_output_service() -> bool:
|
|||
|
||||
|
||||
def ensure_pushy_service() -> bool:
|
||||
return ensure_service_capabilities({"manual_delivery", "pushy_input"})
|
||||
return ensure_service_capabilities(
|
||||
{"manual_delivery", "pushy_input", PUSHY_FRAMING_CAPABILITY}
|
||||
)
|
||||
|
||||
|
||||
def preflight_runtime_paths() -> None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue