ollama/examples/golang-simplegenerate/main.go

28 lines
411 B
Go
Raw Normal View History

package main
import (
"bytes"
"fmt"
"io"
"log"
2023-10-19 16:21:00 +00:00
"net/http"
"os"
)
func main() {
body := []byte(`{"model":"mistral"}`)
resp, err := http.Post("http://localhost:11434/api/generate", "application/json", bytes.NewBuffer(body))
if err != nil {
fmt.Print(err.Error())
os.Exit(1)
2023-10-19 16:21:00 +00:00
}
responseData, err := io.ReadAll(resp.Body)
if err != nil {
log.Fatal(err)
}
fmt.Println(string(responseData))
}