[开源] Golang 文心千帆 sdk

查看 25|回复 0
作者:alone88   
文心千帆: https://cloud.baidu.com/product/wenxinworkshop
现在基本申请了就会审核通过
项目地址: https://github.com/anhao/go-ernie
支持接口:
  • ERNIE-Bot
  • ERNIE-Bot-turbo
  • BLOOMZ-7B
  • Llama-2
  • Embeddings

    使用
    package main
    import (
            "context"
            "fmt"
            ernie "github.com/anhao/go-ernie"
    )
    func main() {
            client := ernie.NewDefaultClient("API Key", "Secret Key")
            completion, err := client.CreateErnieBotChatCompletion(context.Background(), ernie.ErnieBotRequest{
                    Messages: []ernie.ChatCompletionMessage{
                            {
                                    Role:    ernie.MessageRoleUser,
                                    Content: "你好呀",
                            },
                    },
            })
            if err != nil {
                    fmt.Printf("ernie bot error: %v\n", err)
                    return
            }
            fmt.Println(completion)
    }
  • 您需要登录后才可以回帖 登录 | 立即注册

    返回顶部