Skip to content

Commit c4a5184

Browse files
authored
chore: bump agentapi versions in the goose and gemini modules (#321)
related to #320
1 parent 63d56ea commit c4a5184

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

registry/coder-labs/modules/gemini/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run [Gemini CLI](https://ai.google.dev/gemini-api/docs/cli) in your workspace to
1313
```tf
1414
module "gemini" {
1515
source = "registry.coder.com/coder-labs/gemini/coder"
16-
version = "1.0.0"
16+
version = "1.0.1"
1717
agent_id = coder_agent.example.id
1818
gemini_api_key = var.gemini_api_key
1919
gemini_model = "gemini-2.5-pro"
@@ -42,7 +42,7 @@ variable "gemini_api_key" {
4242
module "gemini" {
4343
count = data.coder_workspace.me.start_count
4444
source = "registry.coder.com/coder-labs/gemini/coder"
45-
version = "1.0.0"
45+
version = "1.0.1"
4646
agent_id = coder_agent.example.id
4747
gemini_api_key = var.gemini_api_key # we recommend providing this parameter inorder to have a smoother experience (i.e. no google sign-in)
4848
gemini_model = "gemini-2.5-flash"

registry/coder-labs/modules/gemini/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ EOT
166166

167167
module "agentapi" {
168168
source = "registry.coder.com/coder/agentapi/coder"
169-
version = "1.0.0"
169+
version = "1.1.1"
170170

171171
agent_id = var.agent_id
172172
web_app_slug = local.app_slug

registry/coder/modules/goose/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run the [Goose](https://block.github.io/goose/) agent in your workspace to gener
1313
```tf
1414
module "goose" {
1515
source = "registry.coder.com/coder/goose/coder"
16-
version = "2.1.0"
16+
version = "2.1.1"
1717
agent_id = coder_agent.example.id
1818
folder = "/home/coder"
1919
install_goose = true
@@ -79,7 +79,7 @@ resource "coder_agent" "main" {
7979
module "goose" {
8080
count = data.coder_workspace.me.start_count
8181
source = "registry.coder.com/coder/goose/coder"
82-
version = "2.1.0"
82+
version = "2.1.1"
8383
agent_id = coder_agent.example.id
8484
folder = "/home/coder"
8585
install_goose = true

registry/coder/modules/goose/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ EOT
139139

140140
module "agentapi" {
141141
source = "registry.coder.com/coder/agentapi/coder"
142-
version = "1.1.0"
142+
version = "1.1.1"
143143

144144
agent_id = var.agent_id
145145
web_app_slug = local.app_slug

0 commit comments

Comments
 (0)