feat: initial groqqer OpenAI proxy gateway for Groq Streamlit space

This commit is contained in:
Luxferre
2026-09-08 15:12:35 +03:00
commit 354db0afcb
5 changed files with 2582 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
all: groqqer
groqqer:
go build -trimpath -ldflags="-s -w" -o bin/groqqer groqqer.go
clean:
rm -rf bin/
.PHONY: all groqqer clean