Skip to content

Commit 97330ac

Browse files
chore: move string to constant for easier reuse
1 parent cee1a75 commit 97330ac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/openai/client.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -546,14 +546,16 @@ func override(left, right string) string {
546546
return left
547547
}
548548

549+
const WaitingMessage = "Waiting for model response..."
550+
549551
func (c *Client) call(ctx context.Context, request openai.ChatCompletionRequest, transactionID string, env []string, partial chan<- types.CompletionStatus) (types.CompletionMessage, error) {
550552
streamResponse := os.Getenv("GPTSCRIPT_INTERNAL_OPENAI_STREAMING") != "false"
551553

552554
partial <- types.CompletionStatus{
553555
CompletionID: transactionID,
554556
PartialResponse: &types.CompletionMessage{
555557
Role: types.CompletionMessageRoleTypeAssistant,
556-
Content: types.Text("Waiting for model response..."),
558+
Content: types.Text(WaitingMessage),
557559
},
558560
}
559561

0 commit comments

Comments
 (0)