From 45d3d8ee19ad15a3a9d5ebbf42a89dd4f3facc41 Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Wed, 11 Mar 2026 18:46:42 +0530 Subject: [PATCH] chore: adjust terminal dimensions in start.sh for copilot server --- registry/coder-labs/modules/copilot/scripts/start.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/registry/coder-labs/modules/copilot/scripts/start.sh b/registry/coder-labs/modules/copilot/scripts/start.sh index 0aecb1fe..c7954f75 100644 --- a/registry/coder-labs/modules/copilot/scripts/start.sh +++ b/registry/coder-labs/modules/copilot/scripts/start.sh @@ -186,16 +186,16 @@ start_agentapi() { echo "Using initial prompt with system context" if [ ${#COPILOT_ARGS[@]} -gt 0 ]; then echo "Copilot arguments: ${COPILOT_ARGS[*]}" - agentapi server -I="$initial_prompt" --type copilot --term-width 120 --term-height 40 -- copilot "${COPILOT_ARGS[@]}" + agentapi server -I="$initial_prompt" --type copilot --term-width 67 --term-height 1190 -- copilot "${COPILOT_ARGS[@]}" else - agentapi server -I="$initial_prompt" --type copilot --term-width 120 --term-height 40 -- copilot + agentapi server -I="$initial_prompt" --type copilot --term-width 67 --term-height 1190 -- copilot fi else if [ ${#COPILOT_ARGS[@]} -gt 0 ]; then echo "Copilot arguments: ${COPILOT_ARGS[*]}" - agentapi server --type copilot --term-width 120 --term-height 40 -- copilot "${COPILOT_ARGS[@]}" + agentapi server --type copilot --term-width 67 --term-height 1190 -- copilot "${COPILOT_ARGS[@]}" else - agentapi server --type copilot --term-width 120 --term-height 40 -- copilot + agentapi server --type copilot --term-width 67 --term-height 1190 -- copilot fi fi fi