Skip to content

Commit b5b451e

Browse files
committed
Update version to v1.0.6
1 parent d141644 commit b5b451e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ OpenAI-compatible proxy server for the CommandCode API. It exposes `/v1/chat/com
44

55
Repository: https://github.com/dev2k6/command-code-proxy-server
66

7-
Version: `v1.0.5`
7+
Version: `v1.0.6`
88

99
## Features
1010

@@ -219,7 +219,7 @@ https://api.github.com/repos/dev2k6/command-code-proxy-server/tags
219219
If the latest GitHub tag is newer than the current app version, the version line is displayed as:
220220

221221
```text
222-
v1.0.5 (latest: v1.x.x)
222+
v1.0.6 (latest: v1.x.x)
223223
```
224224

225225
## CommandCode version header

internal/proxy/convert.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func ConvertMessages(openAIMsgs []api.OpenAIMessage) []api.CCMessage {
2222

2323
if m.Role == "tool" {
2424
ccMsgs = append(ccMsgs, api.CCMessage{
25-
Role: "user",
25+
Role: "tool",
2626
Content: []api.CCContentPart{{
2727
Type: "tool_result",
2828
ToolUseID: strPtr(m.ToolCallID),

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/dev2k6/command-code-proxy-server/internal/update"
1010
)
1111

12-
const appVersion = "v1.0.5"
12+
const appVersion = "v1.0.6"
1313
const repositoryURL = "https://github.com/dev2k6/command-code-proxy-server"
1414
const debugLogging = false
1515

0 commit comments

Comments
 (0)