mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-27 01:11:40 +00:00
Merge branch 'main' of github.com:NousResearch/hermes-agent into feat/ink-refactor
This commit is contained in:
commit
f81dba0da2
128 changed files with 8357 additions and 842 deletions
|
|
@ -345,7 +345,7 @@ class ProcessRegistry:
|
|||
pty_env = _sanitize_subprocess_env(os.environ, env_vars)
|
||||
pty_env["PYTHONUNBUFFERED"] = "1"
|
||||
pty_proc = _PtyProcessCls.spawn(
|
||||
[user_shell, "-lic", command],
|
||||
[user_shell, "-lic", f"set +m; {command}"],
|
||||
cwd=session.cwd,
|
||||
env=pty_env,
|
||||
dimensions=(30, 120),
|
||||
|
|
@ -386,7 +386,7 @@ class ProcessRegistry:
|
|||
bg_env = _sanitize_subprocess_env(os.environ, env_vars)
|
||||
bg_env["PYTHONUNBUFFERED"] = "1"
|
||||
proc = subprocess.Popen(
|
||||
[user_shell, "-lic", command],
|
||||
[user_shell, "-lic", f"set +m; {command}"],
|
||||
text=True,
|
||||
cwd=session.cwd,
|
||||
env=bg_env,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue