-
Notifications
You must be signed in to change notification settings - Fork 15
/
completion_test.go
47 lines (43 loc) · 1.37 KB
/
completion_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package anthropic_test
import (
"context"
"errors"
"os"
"testing"
"github.com/anthropics/anthropic-sdk-go"
"github.com/anthropics/anthropic-sdk-go/internal/testutil"
"github.com/anthropics/anthropic-sdk-go/option"
)
func TestCompletionNewWithOptionalParams(t *testing.T) {
baseURL := "http://localhost:4010"
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
baseURL = envURL
}
if !testutil.CheckTestServer(t, baseURL) {
return
}
client := anthropic.NewClient(
option.WithBaseURL(baseURL),
option.WithAPIKey("my-anthropic-api-key"),
)
_, err := client.Completions.New(context.TODO(), anthropic.CompletionNewParams{
MaxTokensToSample: anthropic.F(int64(256)),
Model: anthropic.F(anthropic.ModelClaude3_5HaikuLatest),
Prompt: anthropic.F("\n\nHuman: Hello, world!\n\nAssistant:"),
Metadata: anthropic.F(anthropic.MetadataParam{
UserID: anthropic.F("13803d75-b4b5-4c3e-b2a2-6f21399b021b"),
}),
StopSequences: anthropic.F([]string{"string"}),
Temperature: anthropic.F(1.000000),
TopK: anthropic.F(int64(5)),
TopP: anthropic.F(0.700000),
})
if err != nil {
var apierr *anthropic.Error
if errors.As(err, &apierr) {
t.Log(string(apierr.DumpRequest(true)))
}
t.Fatalf("err should be nil: %s", err.Error())
}
}