Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
kardolus
GitHub Repository: kardolus/chatgpt-cli
Path: blob/main/internal/constants.go
2854 views
1
package internal
2
3
type contextKey string
4
5
const (
6
BinaryDataKey contextKey = "binaryData"
7
ImagePathKey contextKey = "imagePath"
8
AudioPathKey contextKey = "audioPath"
9
HeaderContentTypeKey = "Content-Type"
10
HeaderContentTypeValue = "application/json"
11
HeaderUserAgentKey = "User-Agent"
12
HeaderAuthorizationKey = "Authorization"
13
)
14
15