Spaces:
Running
Running
File size: 3,582 Bytes
931bd01 |
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 |
package official
import "encoding/json"
type ChatCompletionChunk struct {
ID string `json:"id"`
Object string `json:"object"`
Created int64 `json:"created"`
Model string `json:"model"`
Choices []Choices `json:"choices"`
}
func (chunk *ChatCompletionChunk) String() string {
resp, _ := json.Marshal(chunk)
return string(resp)
}
type Choices struct {
Delta Delta `json:"delta"`
Index int `json:"index"`
FinishReason interface{} `json:"finish_reason"`
}
type Delta struct {
Content string `json:"content,omitempty"`
Role string `json:"role,omitempty"`
}
func NewChatCompletionChunk(text string) ChatCompletionChunk {
return ChatCompletionChunk{
ID: "chatcmpl-QXlha2FBbmROaXhpZUFyZUF3ZXNvbWUK",
Object: "chat.completion.chunk",
Created: 0,
Model: "gpt-3.5-turbo-0301",
Choices: []Choices{
{
Index: 0,
Delta: Delta{
Content: text,
},
FinishReason: nil,
},
},
}
}
func NewChatCompletionChunkWithModel(text string, model string) ChatCompletionChunk {
return ChatCompletionChunk{
ID: "chatcmpl-QXlha2FBbmROaXhpZUFyZUF3ZXNvbWUK",
Object: "chat.completion.chunk",
Created: 0,
Model: model,
Choices: []Choices{
{
Index: 0,
Delta: Delta{
Content: text,
},
FinishReason: nil,
},
},
}
}
func StopChunkWithModel(reason string, model string) ChatCompletionChunk {
return ChatCompletionChunk{
ID: "chatcmpl-QXlha2FBbmROaXhpZUFyZUF3ZXNvbWUK",
Object: "chat.completion.chunk",
Created: 0,
Model: model,
Choices: []Choices{
{
Index: 0,
FinishReason: reason,
},
},
}
}
func StopChunk(reason string) ChatCompletionChunk {
return ChatCompletionChunk{
ID: "chatcmpl-QXlha2FBbmROaXhpZUFyZUF3ZXNvbWUK",
Object: "chat.completion.chunk",
Created: 0,
Model: "gpt-3.5-turbo-0125",
Choices: []Choices{
{
Index: 0,
FinishReason: reason,
},
},
}
}
type ChatCompletion struct {
ID string `json:"id"`
Object string `json:"object"`
Created int64 `json:"created"`
Model string `json:"model"`
Usage usage `json:"usage"`
Choices []Choice `json:"choices"`
}
type Msg struct {
Role string `json:"role"`
Content string `json:"content"`
}
type Choice struct {
Index int `json:"index"`
Message Msg `json:"message"`
FinishReason interface{} `json:"finish_reason"`
}
type usage struct {
PromptTokens int `json:"prompt_tokens"`
CompletionTokens int `json:"completion_tokens"`
TotalTokens int `json:"total_tokens"`
}
func NewChatCompletionWithModel(text string, model string) ChatCompletion {
return ChatCompletion{
ID: "chatcmpl-QXlha2FBbmROaXhpZUFyZUF3ZXNvbWUK",
Object: "chat.completion",
Created: int64(0),
Model: model,
Usage: usage{
PromptTokens: 0,
CompletionTokens: 0,
TotalTokens: 0,
},
Choices: []Choice{
{
Message: Msg{
Content: text,
Role: "assistant",
},
Index: 0,
},
},
}
}
func NewChatCompletion(full_test string, input_tokens, output_tokens int) ChatCompletion {
return ChatCompletion{
ID: "chatcmpl-QXlha2FBbmROaXhpZUFyZUF3ZXNvbWUK",
Object: "chat.completion",
Created: int64(0),
Model: "gpt-3.5-turbo-0125",
Usage: usage{
PromptTokens: input_tokens,
CompletionTokens: output_tokens,
TotalTokens: input_tokens + output_tokens,
},
Choices: []Choice{
{
Message: Msg{
Content: full_test,
Role: "assistant",
},
Index: 0,
},
},
}
}
|