- Add claude-proxy: lightweight Go proxy to translate between Anthropic and OpenAI-compatible APIs with full streaming and tool-calling support - Update Dockerfile to include claude-proxy binary (multi-arch) - Add auto-start proxy via entrypoint when env vars are set - Update executor.go to write proxy config and start proxy - Simplify command.go to use direct Claude CLI with proxy - Support both docker run -e and config file for proxy settings Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
90 B
Go
7 lines
90 B
Go
package main
|
|
|
|
import "github.com/yaoapp/yao/sandbox/proxy"
|
|
|
|
func main() {
|
|
proxy.Main()
|
|
}
|