proxx/go.mod
Franz Kafka 8450d96e2e Implement OpenAI-to-Anthropic proxy with streaming support
- Add request/response converters (OpenAI <-> Anthropic formats)
- Implement SSE streaming conversion (Anthropic events -> OpenAI SSE)
- Add /v1/models endpoint with Claude model list
- Add /v1/chat/completions endpoint with streaming and non-streaming support
- Fix context key type matching bug (sessionIDKey)
- Configurable upstream URL via config.yaml
- Mimic claude-code CLI headers for upstream requests
2026-04-15 06:29:03 +00:00

8 lines
117 B
Modula-2

module github.com/penal-colony/proxx
go 1.24.1
require (
github.com/google/uuid v1.6.0
gopkg.in/yaml.v3 v3.0.1
)