-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathcompletion_test.go
More file actions
48 lines (44 loc) · 1.38 KB
/
completion_test.go
File metadata and controls
48 lines (44 loc) · 1.38 KB
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
48
// 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: 256,
Model: anthropic.ModelClaudeOpus4_6,
Prompt: "\n\nHuman: Hello, world!\n\nAssistant:",
Metadata: anthropic.MetadataParam{
UserID: anthropic.String("13803d75-b4b5-4c3e-b2a2-6f21399b021b"),
},
StopSequences: []string{"string"},
Temperature: anthropic.Float(1),
TopK: anthropic.Int(5),
TopP: anthropic.Float(0.7),
Betas: []anthropic.AnthropicBeta{anthropic.AnthropicBetaMessageBatches2024_09_24},
})
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())
}
}