|
package main
|
|
|
|
import (
|
|
"go.wit.com/lib/protobuf/chatpb"
|
|
"google.golang.org/genai"
|
|
)
|
|
|
|
func convertToPB(resp *genai.GenerateContentResponse) *chatpb.ChatEntry {
|
|
pb := new(chatpb.ChatEntry)
|
|
// TODO: add the code to convert the response to the protobuf
|
|
return pb
|
|
}
|