Compare commits
No commits in common. "7cb2a4e01726d8265e4ac642826bdab6b8a35f6f" and "9c9b8fa4124b3bd6eaecbcb57d1e7c452d8e148d" have entirely different histories.
7cb2a4e017
...
9c9b8fa412
@ -7,9 +7,6 @@ import (
|
|||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO: allow setting with flag
|
|
||||||
const MAX_TOKENS = 256
|
|
||||||
|
|
||||||
var rootCmd = &cobra.Command{
|
var rootCmd = &cobra.Command{
|
||||||
Use: "lmcli",
|
Use: "lmcli",
|
||||||
Short: "Interact with Large Language Models",
|
Short: "Interact with Large Language Models",
|
||||||
@ -115,6 +112,7 @@ var newCmd = &cobra.Command{
|
|||||||
ConversationID: conversation.ID,
|
ConversationID: conversation.ID,
|
||||||
Role: "assistant",
|
Role: "assistant",
|
||||||
}
|
}
|
||||||
|
|
||||||
reply.RenderTTY(false)
|
reply.RenderTTY(false)
|
||||||
|
|
||||||
receiver := make(chan string)
|
receiver := make(chan string)
|
||||||
@ -122,8 +120,7 @@ var newCmd = &cobra.Command{
|
|||||||
go func() {
|
go func() {
|
||||||
response <- HandleDelayedResponse(receiver)
|
response <- HandleDelayedResponse(receiver)
|
||||||
}()
|
}()
|
||||||
|
err = CreateChatCompletionStream(messages, receiver)
|
||||||
err = CreateChatCompletionStream(messages, MAX_TOKENS, receiver)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
Fatal("%v\n", err)
|
Fatal("%v\n", err)
|
||||||
}
|
}
|
||||||
@ -163,7 +160,7 @@ var promptCmd = &cobra.Command{
|
|||||||
|
|
||||||
receiver := make(chan string)
|
receiver := make(chan string)
|
||||||
go HandleDelayedResponse(receiver)
|
go HandleDelayedResponse(receiver)
|
||||||
err := CreateChatCompletionStream(messages, MAX_TOKENS, receiver)
|
err := CreateChatCompletionStream(messages, receiver)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
Fatal("%v\n", err)
|
Fatal("%v\n", err)
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
openai "github.com/sashabaranov/go-openai"
|
openai "github.com/sashabaranov/go-openai"
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreateChatCompletionRequest(messages []Message, maxTokens int) openai.ChatCompletionRequest {
|
func CreateChatCompletionRequest(messages []Message) *openai.ChatCompletionRequest {
|
||||||
chatCompletionMessages := []openai.ChatCompletionMessage{}
|
chatCompletionMessages := []openai.ChatCompletionMessage{}
|
||||||
for _, m := range messages {
|
for _, m := range messages {
|
||||||
chatCompletionMessages = append(chatCompletionMessages, openai.ChatCompletionMessage{
|
chatCompletionMessages = append(chatCompletionMessages, openai.ChatCompletionMessage{
|
||||||
@ -17,19 +17,23 @@ func CreateChatCompletionRequest(messages []Message, maxTokens int) openai.ChatC
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
return openai.ChatCompletionRequest{
|
return &openai.ChatCompletionRequest{
|
||||||
Model: openai.GPT3Dot5Turbo,
|
Model: openai.GPT4,
|
||||||
|
MaxTokens: 256,
|
||||||
Messages: chatCompletionMessages,
|
Messages: chatCompletionMessages,
|
||||||
MaxTokens: maxTokens,
|
Stream: true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateChatCompletion submits a Chat Completion API request and returns the
|
// CreateChatCompletion accepts a slice of Message and returns the response
|
||||||
// response.
|
// of the Large Language Model.
|
||||||
func CreateChatCompletion(messages []Message, maxTokens int) (string, error) {
|
func CreateChatCompletion(messages []Message) (string, error) {
|
||||||
client := openai.NewClient(config.OpenAI.APIKey)
|
client := openai.NewClient(config.OpenAI.APIKey)
|
||||||
req := CreateChatCompletionRequest(messages, maxTokens)
|
resp, err := client.CreateChatCompletion(
|
||||||
resp, err := client.CreateChatCompletion(context.Background(), req)
|
context.Background(),
|
||||||
|
*CreateChatCompletionRequest(messages),
|
||||||
|
)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
@ -37,15 +41,18 @@ func CreateChatCompletion(messages []Message, maxTokens int) (string, error) {
|
|||||||
return resp.Choices[0].Message.Content, nil
|
return resp.Choices[0].Message.Content, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateChatCompletionStream submits a streaming Chat Completion API request
|
// CreateChatCompletionStream submits an streaming Chat Completion API request
|
||||||
// and streams the received response to the provided output channel.
|
// and sends the received data to the output channel.
|
||||||
func CreateChatCompletionStream(messages []Message, maxTokens int, output chan string) error {
|
func CreateChatCompletionStream(messages []Message, output chan string) error {
|
||||||
client := openai.NewClient(config.OpenAI.APIKey)
|
client := openai.NewClient(config.OpenAI.APIKey)
|
||||||
req := CreateChatCompletionRequest(messages, maxTokens)
|
ctx := context.Background()
|
||||||
|
|
||||||
|
req := CreateChatCompletionRequest(messages)
|
||||||
|
req.Stream = true
|
||||||
|
|
||||||
defer close(output)
|
defer close(output)
|
||||||
|
|
||||||
stream, err := client.CreateChatCompletionStream(context.Background(), req)
|
stream, err := client.CreateChatCompletionStream(ctx, *req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -45,9 +45,7 @@ func HandleDelayedResponse(response chan string) string {
|
|||||||
firstChunk := true
|
firstChunk := true
|
||||||
for chunk := range response {
|
for chunk := range response {
|
||||||
if firstChunk {
|
if firstChunk {
|
||||||
// notify wait animation that we've received data
|
|
||||||
waitSignal <- ""
|
waitSignal <- ""
|
||||||
// wait for signal that wait animation has completed
|
|
||||||
<-waitSignal
|
<-waitSignal
|
||||||
firstChunk = false
|
firstChunk = false
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user