๐Ÿ“ฆ google-gemini / api-examples

๐Ÿ“„ configure_model_parameters_test.go ยท 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13package examples

import (
	"testing"
)

func TestConfigureModelParameters(t *testing.T) {
	_, err := ConfigureModelParameters()
	if err != nil {
		t.Errorf("ConfigureModelParameters returned an error.")
	}
}