Files
History_Api/pkg/constants/stream.go
AzenKain a61cf085ce
All checks were successful
Build and Release / release (push) Successful in 1m27s
feat: implement RAG-based chatbot service with daily usage rate limiting and background index worker
2026-05-06 10:02:00 +07:00

11 lines
284 B
Go

package constants
const (
StreamEmailName = "stream:email_tasks"
StreamStorageName = "stream:storage_tasks"
StreamRagName = "stream:rag_tasks"
GroupEmailName = "email_workers_group"
GroupStorageName = "storage_workers_group"
GroupRagName = "rag_workers_group"
)