Skip to content

Commit 8d56ee8

Browse files
fix: resolve aider icon path to correct icon (#102)
- code.svg to aider.svg in README.md --------- Co-authored-by: M Atif Ali <[email protected]>
1 parent 9788acb commit 8d56ee8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

registry/coder/modules/aider/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
display_name: Aider
33
description: Run Aider AI pair programming in your workspace
4-
icon: ../../../../.icons/code.svg
4+
icon: ../../../../.icons/aider.svg
55
maintainer_github: coder
66
verified: true
7-
tags: [agent, aider]
7+
tags: [agent, ai, aider]
88
---
99

1010
# Aider
@@ -14,7 +14,7 @@ Run [Aider](https://aider.chat) AI pair programming in your workspace. This modu
1414
```tf
1515
module "aider" {
1616
source = "registry.coder.com/coder/aider/coder"
17-
version = "1.0.0"
17+
version = "1.0.1"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -69,7 +69,7 @@ variable "anthropic_api_key" {
6969
module "aider" {
7070
count = data.coder_workspace.me.start_count
7171
source = "registry.coder.com/coder/aider/coder"
72-
version = "1.0.0"
72+
version = "1.0.1"
7373
agent_id = coder_agent.example.id
7474
ai_api_key = var.anthropic_api_key
7575
}
@@ -94,7 +94,7 @@ variable "openai_api_key" {
9494
module "aider" {
9595
count = data.coder_workspace.me.start_count
9696
source = "registry.coder.com/coder/aider/coder"
97-
version = "1.0.0"
97+
version = "1.0.1"
9898
agent_id = coder_agent.example.id
9999
use_tmux = true
100100
ai_provider = "openai"
@@ -115,7 +115,7 @@ variable "custom_api_key" {
115115
module "aider" {
116116
count = data.coder_workspace.me.start_count
117117
source = "registry.coder.com/coder/aider/coder"
118-
version = "1.0.0"
118+
version = "1.0.1"
119119
agent_id = coder_agent.example.id
120120
ai_provider = "custom"
121121
custom_env_var_name = "MY_CUSTOM_API_KEY"
@@ -132,7 +132,7 @@ You can extend Aider's capabilities by adding custom extensions:
132132
module "aider" {
133133
count = data.coder_workspace.me.start_count
134134
source = "registry.coder.com/coder/aider/coder"
135-
version = "1.0.0"
135+
version = "1.0.1"
136136
agent_id = coder_agent.example.id
137137
ai_api_key = var.anthropic_api_key
138138
@@ -211,7 +211,7 @@ data "coder_parameter" "ai_prompt" {
211211
module "aider" {
212212
count = data.coder_workspace.me.start_count
213213
source = "registry.coder.com/coder/aider/coder"
214-
version = "1.0.0"
214+
version = "1.0.1"
215215
agent_id = coder_agent.example.id
216216
ai_api_key = var.anthropic_api_key
217217
task_prompt = data.coder_parameter.ai_prompt.value

0 commit comments

Comments
 (0)