File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed
registry/coder/modules/aider Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -129,12 +129,6 @@ variable "ai_api_key" {
129129 sensitive = true
130130}
131131
132- resource "coder_env" "ai_api_key" {
133- agent_id = var. agent_id
134- name = " ARG_API_KEY"
135- value = var. ai_api_key
136- }
137-
138132variable "custom_env_var_name" {
139133 type = string
140134 description = " Custom environment variable name when using custom provider"
@@ -156,7 +150,7 @@ variable "agentapi_version" {
156150variable "base_aider_config" {
157151 type = string
158152 description = <<- EOT
159- Base Aider configuration in ynl format. Will be Store in .aider.conf.yml file.
153+ Base Aider configuration in yaml format. Will be stored in .aider.conf.yml file.
160154
161155 options include:
162156 read:
Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ echo "Workspace: $AIDER_START_DIRECTORY"
1212echo " --------------------------------"
1313
1414function install_aider() {
15- echo " pipx not found"
16- echo " Installing pipx via apt-get..."
15+ echo " pipx installing..."
1716 sudo apt-get install -y pipx
1817 echo " pipx installed!"
1918 pipx ensurepath
@@ -46,7 +45,7 @@ function configure_aider_settings(){
4645
4746 mkdir -p " $HOME /.config/aider"
4847
49- echo $ARG_AIDER_CONFIG > " $HOME /.config/aider/.aider.conf.yml"
48+ echo " $ARG_AIDER_CONFIG " > " $HOME /.config/aider/.aider.conf.yml"
5049 echo " Added Coder MCP extension to Aider config.yml"
5150 else
5251 printf " MCP Server not Implemented"
You can’t perform that action at this time.
0 commit comments