Spaces:
Runtime error
Runtime error
File size: 13,940 Bytes
581b6d4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 | package unofficialapi
import (
"encoding/json"
"fmt"
"log"
"math/rand"
"strconv"
"strings"
"time"
"github.com/google/uuid"
)
type ChatReqTemplate struct {
Id string `json:"id"`
Author struct {
Role string `json:"role"`
} `json:"author"`
Content struct {
ContentType string `json:"content_type"`
Parts []interface{} `json:"parts"`
} `json:"content"`
Metadata interface{} `json:"metadata"`
}
type ChatReqStr struct {
Action string `json:"action"`
Messages []ChatReqTemplate `json:"messages"`
ParentMessageId string `json:"parent_message_id"`
Model string `json:"model"`
TimezoneOffsetMin int `json:"timezone_offset_min"`
HistoryAndTrainingDisabled bool `json:"history_and_training_disabled"`
ArkoseToken string `json:"arkose_token"`
ConversationMode struct {
Kind string `json:"kind"`
} `json:"conversation_mode"`
ForceParagen bool `json:"force_paragen"`
ForceRateLimit bool `json:"force_rate_limit"`
}
type ChatRespStr struct {
Message struct {
Id string `json:"id"`
Author struct {
Role string `json:"role"`
Name interface{} `json:"name"`
Metadata struct {
} `json:"metadata"`
} `json:"author"`
CreateTime float64 `json:"create_time"`
UpdateTime interface{} `json:"update_time"`
Content struct {
ContentType string `json:"content_type"`
Parts []string `json:"parts"`
} `json:"content"`
Status string `json:"status"`
EndTurn bool `json:"end_turn"`
Weight float64 `json:"weight"`
Metadata struct {
FinishDetails struct {
Type string `json:"type"`
StopTokens []int `json:"stop_tokens"`
} `json:"finish_details"`
IsComplete bool `json:"is_complete"`
MessageType string `json:"message_type"`
ModelSlug string `json:"model_slug"`
ParentId string `json:"parent_id"`
Timestamp string `json:"timestamp_"`
IsUserSystemMessage bool `json:"is_user_system_message"`
UserContextMessageData struct {
AboutModelMessage string `json:"about_model_message"`
} `json:"user_context_message_data"`
} `json:"metadata"`
Recipient string `json:"recipient"`
} `json:"message"`
ConversationId string `json:"conversation_id"`
Error interface{} `json:"error"`
}
type ChatEndRespStr struct {
ConversationId string `json:"conversation_id"`
MessageId string `json:"message_id"`
IsCompletion bool `json:"is_completion"`
ModerationResponse struct {
Flagged bool `json:"flagged"`
Blocked bool `json:"blocked"`
ModerationId string `json:"moderation_id"`
} `json:"moderation_response"`
}
type ChatUserSystemMsgReqStr struct {
AboutUserMessage string `json:"about_user_message"`
AboutModelMessage string `json:"about_model_message"`
Enabled bool `json:"enabled"`
}
type ChatUserSystemMsgRespStr struct {
Object string `json:"object"`
Enabled bool `json:"enabled"`
AboutUserMessage string `json:"about_user_message"`
AboutModelMessage string `json:"about_model_message"`
}
type ChatDetectedErrorRespStr struct {
Message interface{} `json:"message"`
ConversationId string `json:"conversation_id"`
Error string `json:"error"`
}
type DALLERespStr struct {
Message struct {
Id string `json:"id"`
Author struct {
Role string `json:"role"`
Name string `json:"name"`
Metadata struct {
} `json:"metadata"`
} `json:"author"`
CreateTime interface{} `json:"create_time"`
UpdateTime interface{} `json:"update_time"`
Content struct {
ContentType string `json:"content_type"`
Parts []struct {
ContentType string `json:"content_type"`
AssetPointer string `json:"asset_pointer"`
SizeBytes int `json:"size_bytes"`
Width int `json:"width"`
Height int `json:"height"`
Fovea int `json:"fovea"`
Metadata struct {
Dalle struct {
GenId string `json:"gen_id"`
Prompt string `json:"prompt"`
Seed int64 `json:"seed"`
SerializationTitle string `json:"serialization_title"`
} `json:"dalle"`
} `json:"metadata"`
} `json:"parts"`
} `json:"content"`
Status string `json:"status"`
EndTurn interface{} `json:"end_turn"`
Weight float64 `json:"weight"`
Metadata struct {
MessageType string `json:"message_type"`
ModelSlug string `json:"model_slug"`
ParentId string `json:"parent_id"`
} `json:"metadata"`
Recipient string `json:"recipient"`
} `json:"message"`
ConversationId string `json:"conversation_id"`
Error interface{} `json:"error"`
}
type StrChoices struct {
Index int `json:"index"`
Message struct {
Role string `json:"role"`
Content string `json:"content"`
} `json:"message"`
FinishReason string `json:"finish_reason"`
}
type ApiRespStr struct {
Id string `json:"id"`
Object string `json:"object"`
Created int64 `json:"created"`
Model string `json:"model"`
SystemFingerprint string `json:"system_fingerprint"`
Choices []StrChoices `json:"choices"`
Usage struct {
PromptTokens int `json:"prompt_tokens"`
CompletionTokens int `json:"completion_tokens"`
TotalTokens int `json:"total_tokens"`
} `json:"usage"`
}
type StreamChoice struct {
Delta struct {
Content string `json:"content"`
} `json:"delta"`
Index int `json:"index"`
FinishReason interface{} `json:"finish_reason"`
}
type ApiRespStrStream struct {
Id string `json:"id"`
Object string `json:"object"`
Created int64 `json:"created"`
Model string `json:"model"`
SystemFingerprint string `json:"system_fingerprint"`
Choices []StreamChoice `json:"choices"`
}
type ApiRespStrStreamEnd struct {
Id string `json:"id"`
Object string `json:"object"`
Created int64 `json:"created"`
Model string `json:"model"`
SystemFingerprint interface{} `json:"system_fingerprint"`
Choices []struct {
Index int `json:"index"`
Delta struct {
} `json:"delta"`
FinishReason string `json:"finish_reason"`
} `json:"choices"`
}
type ApiImageGenerationRespStr struct {
Created int64 `json:"created"`
Data []ApiImageItem `json:"data"`
}
type ApiImageItem struct {
RevisedPrompt string `json:"revised_prompt"`
Url string `json:"url"`
}
type ApiImageGenerationErrorRespStr struct {
Error struct {
Code interface{} `json:"code"`
Message string `json:"message"`
Param interface{} `json:"param"`
Type string `json:"type"`
} `json:"error"`
}
type ImageDownloadUrl struct {
Status string `json:"status"`
DownloadUrl string `json:"download_url"`
Metadata struct {
} `json:"metadata"`
FileName string `json:"file_name"`
CreationTime string `json:"creation_time"`
}
func GetChatReqStr(model string) *ChatReqStr {
jsonStr := `{
"action": "next",
"messages": [],
"parent_message_id": "",
"model": "gpt-4-code-interpreter",
"timezone_offset_min": -480,
"history_and_training_disabled": true,
"arkose_token": "",
"conversation_mode": {
"kind": "primary_assistant"
},
"force_paragen": false,
"force_rate_limit": false
}`
t := new(ChatReqStr)
err := json.Unmarshal([]byte(jsonStr), &t)
t.ParentMessageId = uuid.New().String()
t.Model = model
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetChatReqTemplate() *ChatReqTemplate {
jsonStr := `{
"id": "",
"author": {
"role": ""
},
"content": {
"content_type": "text",
"parts": []
},
"metadata": {}
}`
t := new(ChatReqTemplate)
err := json.Unmarshal([]byte(jsonStr), &t)
t.Id = uuid.New().String()
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetChatFileReqTemplate() *ChatReqTemplate {
jsonStr := `{
"id": "",
"author": {
"role": ""
},
"content": {
"content_type": "multimodal_text",
"parts": [
]
},
"metadata": {
"attachments": [
]
}
}`
t := new(ChatReqTemplate)
err := json.Unmarshal([]byte(jsonStr), &t)
t.Id = uuid.New().String()
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetChatRespStr() *ChatRespStr {
jsonStr := `{
"message":
{
"id": "",
"author":
{
"role": "assistant",
"name": null,
"metadata": {}
},
"create_time": 1699032699.636848,
"update_time": null,
"content": {
"content_type": "text",
"parts": []
},
"status": "finished_successfully",
"end_turn": true,
"weight": 1.0,
"metadata": {
"finish_details":
{
"type": "stop",
"stop_tokens": [100260]
},
"is_complete": true,
"message_type": "next",
"timestamp_": "absolute",
"message_type": null,
"is_user_system_message": true,
"user_context_message_data": {
"about_model_message": "Strict adherence to Instructions"
}
}, "recipient": "all"
},
"conversation_id": "611228f2-94fd-44ed-b5d9-4f229ef3c400",
"error": null
}`
t := new(ChatRespStr)
err := json.Unmarshal([]byte(jsonStr), &t)
nowTime := fmt.Sprintf("%.6f\n", float64(time.Now().UnixNano())/1e9)
floatTime, _ := strconv.ParseFloat(nowTime, 64)
t.Message.CreateTime = floatTime
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetChatEndRespStr() *ChatEndRespStr {
jsonStr := `{
"conversation_id": "",
"message_id": "",
"is_completion": true,
"moderation_response": {
"flagged": false,
"blocked": false,
"moderation_id": ""
}
}`
t := new(ChatEndRespStr)
err := json.Unmarshal([]byte(jsonStr), &t)
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetChatUserSystemMsgReqStr() *ChatUserSystemMsgReqStr {
jsonStr := `{
"about_user_message": "",
"about_model_message": "",
"enabled": true
}`
t := new(ChatUserSystemMsgReqStr)
err := json.Unmarshal([]byte(jsonStr), &t)
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetApiRespStr(id string) *ApiRespStr {
jsonStr := `{
"id": "",
"object": "chat.completion",
"created": 1699074998,
"model": "",
"system_fingerprint": null,
"choices": [
],
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0
}
}`
t := new(ApiRespStr)
err := json.Unmarshal([]byte(jsonStr), &t)
t.Id = id
t.Created = time.Now().Unix()
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func IdGenerator() string {
const prefix = "chatcmpl-"
const characters = "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
var uniqueString strings.Builder
rand.Seed(time.Now().UnixNano()) // 初始化随机数生成器
for i := 0; i < 29; i++ {
uniqueString.WriteByte(characters[rand.Intn(len(characters))])
}
log.Println("id_generator")
return prefix + uniqueString.String()
}
func GetApiRespStrStream(id string) *ApiRespStrStream {
jsonStr := `{
"id": "",
"object": "chat.completion.chunk",
"created": 1701705204,
"model": "",
"system_fingerprint": null,
"choices": [
{
"index": 0,
"delta": {
"role": "assistant",
"content": ""
},
"finish_reason": null
}
]
}`
t := new(ApiRespStrStream)
err := json.Unmarshal([]byte(jsonStr), &t)
t.Id = id
t.Created = time.Now().Unix()
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetApiRespStrStreamEnd(id string) *ApiRespStrStreamEnd {
jsonStr := `{
"id": "",
"object": "chat.completion.chunk",
"created": 1701705204,
"model": "",
"system_fingerprint": null,
"choices": [
{
"index": 0,
"delta": {},
"finish_reason": "stop"
}
]
}`
t := new(ApiRespStrStreamEnd)
err := json.Unmarshal([]byte(jsonStr), &t)
t.Id = id
t.Created = time.Now().Unix()
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetApiImageGenerationRespStr() *ApiImageGenerationRespStr {
jsonStr := `{
"created": 1700809991,
"data": [
{
"revised_prompt": "",
"url": ""
}
]
}`
t := new(ApiImageGenerationRespStr)
err := json.Unmarshal([]byte(jsonStr), &t)
t.Created = time.Now().Unix()
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetStreamChoice() *StreamChoice {
jsonStr := ` {
"index": 0,
"delta": {
"content": ""
},
"finish_reason": null
}`
t := new(StreamChoice)
err := json.Unmarshal([]byte(jsonStr), &t)
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
func GetStrChoices() *StrChoices {
jsonStr := `{
"finish_reason": "stop",
"index": 0,
"message": {
"content": "",
"role": "assistant"
}
}`
t := new(StrChoices)
err := json.Unmarshal([]byte(jsonStr), &t)
if err != nil {
log.Printf("Error parsing JSON: %v", err)
}
return t
}
|