chat.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package fastgpt
  2. type ChatReq struct {
  3. ChatId string `json:"chatId"`
  4. Stream bool `json:"stream"`
  5. Detail bool `json:"detail"`
  6. Variables Variables `json:"variables"`
  7. Messages []Message `json:"messages"`
  8. }
  9. type ChatResp struct {
  10. Id string `json:"id"`
  11. Object string `json:"object"`
  12. Created uint64 `json:"created"`
  13. Model string `json:"model"`
  14. Choices []Choice `json:"choices"`
  15. }
  16. type Choice struct {
  17. Delta Delta `json:"delta"`
  18. FinishReason string `json:"finish_reason,optional"`
  19. Index uint64 `json:"index"`
  20. }
  21. type Delta struct {
  22. Content string `json:"content"`
  23. Role string `json:"role"`
  24. }
  25. type Variables struct {
  26. Uid string `json:"uid"`
  27. Name string `json:"name"`
  28. }
  29. type Message struct {
  30. Content string `json:"content"`
  31. Role string `json:"role"`
  32. }
  33. type ChatResponse struct {
  34. Id string `json:"id"`
  35. Object string `json:"object"`
  36. Created uint64 `json:"created"`
  37. Model string `json:"model"`
  38. Choices []Choice `json:"choices"`
  39. }
  40. // GetChatUrl 请求地址
  41. func GetChatUrl() string {
  42. return "/v1/chat/completions"
  43. }
  44. func GetChatToken() string {
  45. return "fastgpt-eEvIvCz2ccEmgbp4nUEbUDHLoCN2wz4BnpI3ucxECFRbG9xiNBOfjd797vIkT"
  46. }