mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-09 14:28:01 -05:00
16 lines
270 B
Go
16 lines
270 B
Go
package deepseek
|
|
|
|
import (
|
|
"github.com/danielmiessler/fabric/plugins/ai/openai"
|
|
)
|
|
|
|
func NewClient() (ret *Client) {
|
|
ret = &Client{}
|
|
ret.Client = openai.NewClientCompatible("DeepSeek", "https://api.deepseek.com", nil)
|
|
return
|
|
}
|
|
|
|
type Client struct {
|
|
*openai.Client
|
|
}
|