blob: a3e4240a5fc65215dc01b9c63a33d0e8829e3b68 [file] [log] [blame]
package loop
import (
"github.com/anthropics/anthropic-sdk-go"
"github.com/anthropics/anthropic-sdk-go/option"
)
type Client struct {
c anthropic.Client
}
func NewClient(key string) *Client {
return &Client{
c: anthropic.NewClient(
option.WithAPIKey(key),
),
}
}