Skip to content

Commit 3e4f113

Browse files
authored
Merge pull request #1964 from gtardif/fix_more_urls
Some more cagent urls
2 parents b8dffc1 + 4a7d5fd commit 3e4f113

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/community/contributing/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export ANTHROPIC_API_KEY=your_key_here
5757
Use docker-agent to work on docker-agent! The project includes a specialized developer agent:
5858

5959
```bash
60-
cd cagent
60+
cd docker-agent
6161
docker agent run ./golang_developer.yaml
6262
```
6363

pkg/app/export/export.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ <h1 class="text-base font-semibold">{{.Title}}</h1>
7575

7676
<!-- Footer -->
7777
<footer class="border-t border-border px-4 py-3 text-center text-muted-foreground text-xs">
78-
Exported from <a href="https://github.com/docker/cagent" class="text-tui-cyan no-underline hover:underline">cagent</a>
78+
Exported from <a href="https://github.com/docker/docker-agent" class="text-tui-cyan no-underline hover:underline">Docker Agent</a>
7979
</footer>
8080
</div>
8181
<script>

pkg/model/provider/schema_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ func TestSchemaForAnthropic(t *testing.T) {
186186

187187
// TestEmptyMapSchemaForOpenai makes sure we format empty properties in a way that
188188
// OpenAI and LM Studio accept.
189-
// See https://github.com/docker/cagent/issues/278
189+
// See https://github.com/docker/docker-agent/issues/278
190190
func TestEmptyMapSchemaForOpenai(t *testing.T) {
191191
schema, err := openai.ConvertParametersToSchema(map[string]any{})
192192
require.NoError(t, err)

pkg/tui/commands/commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ func builtInFeedbackCommands() []Item {
265265
Description: "Report a bug or issue",
266266
Category: "Feedback",
267267
Execute: func(string) tea.Cmd {
268-
return core.CmdHandler(messages.OpenURLMsg{URL: "https://github.com/docker/cagent/issues/new/choose"})
268+
return core.CmdHandler(messages.OpenURLMsg{URL: "https://github.com/docker/docker-agent/issues/new/choose"})
269269
},
270270
},
271271
}

0 commit comments

Comments
 (0)