poe-code 3.0.406 → 3.0.407

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.
@@ -23040,7 +23040,10 @@ function createDaemonTerminalPilotRuntime() {
23040
23040
  return {
23041
23041
  async createSession(params17, env) {
23042
23042
  const result = await request("createSession", {
23043
- params: params17,
23043
+ params: {
23044
+ ...params17,
23045
+ cwd: params17.cwd ?? process.cwd()
23046
+ },
23044
23047
  envSession: env?.get(SESSION_ENV_VAR)
23045
23048
  });
23046
23049
  return { name: result.name, session: proxySession(result.name, result.session) };