Last active
August 19, 2023 04:11
-
-
Save yarcyarc/dee9ed209e62a59b818a5a4be013a6ce to your computer and use it in GitHub Desktop.
naive golang GPT function call example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apikey.txt | |
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module github.com/dee9ed209e62a59b818a5a4be013a6ce | |
go 1.20 | |
require github.com/sashabaranov/go-openai v1.14.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github.com/sashabaranov/go-openai v1.14.1 h1:jqfkdj8XHnBF84oi2aNtT8Ktp3EJ0MfuVjvcMkfI0LA= | |
github.com/sashabaranov/go-openai v1.14.1/go.mod h1:lj5b/K+zjTSFxVLijLSTDZuP7adOgerWeFyZLUhAKRg= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
// a go rewrite of #cf. https://platform.openai.com/docs/guides/gpt/function-calling | |
// similar, more general function call support is in the works at github.com/sashabaranov/go-openai | |
// you need a file named apikey.txt with the openai key you're using. | |
import ( | |
"context" | |
"encoding/json" | |
"fmt" | |
"github.com/sashabaranov/go-openai" | |
"log" | |
"os" | |
) | |
type WeatherResponse struct { | |
Location string `json:"location"` | |
Temperature string `json:"temperature"` | |
Unit string `json:"unit"` | |
Forecast []string `json:"forecast"` | |
} | |
func CurrentWeather(wr WeatherResponse) WeatherResponse { | |
if len(wr.Unit) == 0 { | |
wr.Unit = "Celsius" | |
} | |
wr.Temperature = "72" | |
wr.Forecast = []string{"sunny", "windy"} | |
return wr | |
} | |
type Parameters struct { | |
Type string `json:"type"` | |
Properties Properties `json:"properties"` | |
Required []string `json:"required"` | |
} | |
type Properties struct { | |
Location Location `json:"location"` | |
Unit Unit `json:"unit"` | |
} | |
type Location struct { | |
Type string `json:"type"` | |
Description string `json:"description"` | |
} | |
type Unit struct { | |
Type string `json:"type"` | |
Enum []string `json:"enum"` | |
} | |
func RunConversation() { | |
unit := &Unit{ | |
Type: "string", | |
Enum: []string{"celsius", "fahrenheit"}, | |
} | |
loc := &Location{ | |
Type: "string", | |
Description: "he city and state, e.g. San Francisco, CA", | |
} | |
props := &Properties{ | |
Location: *loc, | |
Unit: *unit, | |
} | |
pars := &Parameters{ | |
Type: "object", | |
Properties: *props, | |
Required: []string{"location"}, | |
} | |
functions := &openai.FunctionDefinition{ | |
Name: "CurrentWeather", | |
Description: "Get the current weather in a given location", | |
Parameters: *pars, | |
} | |
message := openai.ChatCompletionMessage{ | |
Role: openai.ChatMessageRoleUser, | |
Content: "What's the weather like in Boston?", | |
} | |
messages := []openai.ChatCompletionMessage{message} | |
apikey := readApiKey("apikey.txt") | |
client := openai.NewClient(apikey) | |
resp, err := client.CreateChatCompletion( | |
context.Background(), | |
openai.ChatCompletionRequest{ | |
Model: openai.GPT3Dot5Turbo0613, | |
Messages: messages, | |
Functions: []openai.FunctionDefinition{*functions}, | |
}, | |
) | |
if err != nil { | |
fmt.Printf("ChatCompletion round 1 error: %v\n", err) | |
return | |
} | |
if resp.Choices[0].FinishReason == "function_call" { | |
messages = append(messages, resp.Choices[0].Message) | |
functionToCall := resp.Choices[0].Message.FunctionCall.Name | |
args := resp.Choices[0].Message.FunctionCall.Arguments | |
functionResponse := callFunction(functionToCall, args) | |
message3 := openai.ChatCompletionMessage{ | |
Role: openai.ChatMessageRoleFunction, | |
Content: functionResponse, | |
Name: functionToCall, | |
} | |
messages = append(messages, message3) | |
} | |
resp, err = client.CreateChatCompletion( | |
context.Background(), | |
openai.ChatCompletionRequest{ | |
Model: openai.GPT3Dot5Turbo0613, | |
Messages: messages, | |
}, | |
) | |
if err != nil { | |
fmt.Printf("ChatCompletion round 2 error: %v\n", err) | |
return | |
} | |
println(resp.Choices[0].Message.Content) | |
} | |
// this needs to be more generic for arbitrary json returned | |
func callFunction(funcName string, args string) string { | |
resp := "{}" | |
if funcName == "CurrentWeather" { | |
wr := &WeatherResponse{} | |
if err := json.Unmarshal([]byte(args), wr); err != nil { | |
panic(err) | |
} | |
wr2 := CurrentWeather(*wr) | |
r, _ := json.Marshal(wr2) | |
resp = string(r) | |
} | |
return resp | |
} | |
func readApiKey(fname string) string { | |
fileContent, err := os.ReadFile(fname) | |
if err != nil { | |
log.Fatal(err) | |
} | |
// Convert []byte to string | |
return string(fileContent) | |
} | |
func main() { | |
RunConversation() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment