File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ OpenAI-compatible proxy server for the CommandCode API. It exposes `/v1/chat/com
44
55Repository: 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
219219If 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
Original file line number Diff line number Diff 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 ),
Original file line number Diff line number Diff line change 99 "github.com/dev2k6/command-code-proxy-server/internal/update"
1010)
1111
12- const appVersion = "v1.0.5 "
12+ const appVersion = "v1.0.6 "
1313const repositoryURL = "https://github.com/dev2k6/command-code-proxy-server"
1414const debugLogging = false
1515
You can’t perform that action at this time.
0 commit comments