go-ernie SDK go-ernie

Alone882023-08-24 11:45:02 • 1772 次点击    
这是一个分享于 2023-08-24 11:45:02 的项目,其中的信息可能已经有所发展或是发生改变。

文心千帆 GO SDK

Go Reference

本库为文心千帆GO语言SDK,非官方库,目前官方还没有GO语言的SDK 文心千帆 目前支持:

  • ERNIE-Bot
  • ERNIE-Bot-turbo
  • BLOOMZ-7B
  • Llama-2
  • Embeddings

安装

go get github.com/anhao/go-ernie

需要 go 版本为 1.18+

使用示例

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)
}

获取文心千帆 APIKEY

  1. 在百度云官网进行申请:https://cloud.baidu.com/product/wenxinworkshop
  2. 申请通过后创建应用:https://console.bce.baidu.com/qianfan/ais/console/applicationConsole/application
  3. 获取 apikey 和 api secret

其他示例

ERNIE-Bot stream流 对话 go import ( "context" "errors" "fmt" ernie "github.com/anhao/go-ernie" "io" ) func main() { client := ernie.NewDefaultClient("API Key", "Secret Key") request := ernie.ErnieBotRequest{ Messages: []ChatCompletionMessage{ { Role: "user", Content: "Hello", }, }, Stream: true, } stream, err := client.CreateErnieBotChatCompletionStream(context.Background(), request) if err != nil { fmt.Printf("ernie bot stream error: %v\n", err) return } defer stream.Close() for { response, err := stream.Recv() if errors.Is(err, io.EOF) { fmt.Println("ernie bot Stream finished") return } if err != nil { fmt.Printf("ernie bot stream error: %v\n", err) return } fmt.Println(response.Result) } }
ERNIE-Bot-Turbo 对话 go package main import ( "context" "fmt" ernie "github.com/anhao/go-ernie" ) func main() { client := ernie.NewDefaultClient("API Key", "Secret Key") completion, err := client.CreateErnieBotTurboChatCompletion(context.Background(), ernie.ErnieBotTurboRequest{ Messages: []ernie.ChatCompletionMessage{ { Role: ernie.MessageRoleUser, Content: "你好呀", }, }, }) if err != nil { fmt.Printf("ernie bot turbo error: %v\n", err) return } fmt.Println(completion) }
ERNIE-Bot Turbo stream流 对话 go import ( "context" "errors" "fmt" ernie "github.com/anhao/go-ernie" "io" ) func main() { client := ernie.NewDefaultClient("API Key", "Secret Key") request := ernie.ErnieBotTurboRequest{ Messages: []ChatCompletionMessage{ { Role: "user", Content: "Hello", }, }, Stream: true, } stream, err := client.CreateErnieBotTurboChatCompletionStream(context.Background(), request) if err != nil { fmt.Printf("ernie bot stream error: %v\n", err) return } defer stream.Close() for { response, err := stream.Recv() if errors.Is(err, io.EOF) { fmt.Println("ernie bot turbo Stream finished") return } if err != nil { fmt.Printf("ernie bot turbo stream error: %v\n", err) return } fmt.Println(response.Result) } }
BLOOMZ-7B 对话 go package main import ( "context" "fmt" ernie "github.com/anhao/go-ernie" ) func main() { client := ernie.NewDefaultClient("API Key", "Secret Key") completion, err := client.CreateBloomz7b1ChatCompletion(context.Background(), ernie.Bloomz7b1Request{ Messages: []ernie.ChatCompletionMessage{ { Role: ernie.MessageRoleUser, Content: "你好呀", }, }, }) if err != nil { fmt.Printf("BLOOMZ-7B error: %v\n", err) return } fmt.Println(completion) }
BLOOMZ-7B stream流 对话 go import ( "context" "errors" "fmt" ernie "github.com/anhao/go-ernie" "io" ) func main() { client := ernie.NewDefaultClient("API Key", "Secret Key") request := ernie.Bloomz7b1Request{ Messages: []ChatCompletionMessage{ { Role: "user", Content: "Hello", }, }, Stream: true, } stream, err := client.CreateBloomz7b1ChatCompletionStream(context.Background(), request) if err != nil { fmt.Printf("BLOOMZ-7B error: %v\n", err) return } defer stream.Close() for { response, err := stream.Recv() if errors.Is(err, io.EOF) { fmt.Println("BLOOMZ-7B Stream finished") return } if err != nil { fmt.Printf("BLOOMZ-7B stream error: %v\n", err) return } fmt.Println(response.Result) } }
Llama2 对话 go package main import ( "context" "fmt" ernie "github.com/anhao/go-ernie" ) func main() { client := ernie.NewDefaultClient("API Key", "Secret Key") completion, err := client.CreateLlamaChatCompletion(context.Background(), ernie.LlamaChatRequest{ Messages: []ernie.ChatCompletionMessage{ { Role: ernie.MessageRoleUser, Content: "你好呀", }, }, Model: "", //申请发布时填写的API名称 }) if err != nil { fmt.Printf("llama2 error: %v\n", err) return } fmt.Println(completion) }
Llama2 stream流 对话 go import ( "context" "errors" "fmt" ernie "github.com/anhao/go-ernie" "io" ) func main() { client := ernie.NewDefaultClient("API Key", "Secret Key") request := ernie.LlamaChatRequest{ Messages: []ChatCompletionMessage{ { Role: "user", Content: "Hello", }, }, Stream: true, Model: "", //申请发布时填写的API名称 } stream, err := client.CreateLlamaChatCompletionStream(context.Background(), request) if err != nil { fmt.Printf("llama2 error: %v\n", err) return } defer stream.Close() for { response, err := stream.Recv() if errors.Is(err, io.EOF) { fmt.Println("llama2 Stream finished") return } if err != nil { fmt.Printf("llama2 stream error: %v\n", err) return } fmt.Println(response.Result) } }
Embedding向量 go package main import ( "context" "fmt" ernie "github.com/anhao/go-ernie" ) func main() { client := ernie.NewDefaultClient("API Key", "Secret Key") request := ernie.EmbeddingRequest{ Input: []string{ "Hello", }, } embeddings, err := client.CreateEmbeddings(context.Background(), request) if err != nil { fmt.Sprintf("embeddings err: %v", err) return } fmt.Println(embeddings) }
自定义 accessToken go client :=ernie.NewClient("accessToken")

文心千帆 GO SDK ,文心一言Read More

Latest commit to the main branch on 12-15-2023
Download as zip
授权协议:
MIT
开发语言:
Go 查看源码»
1772 次点击  
加入收藏 微博
1 回复  |  直到
LIGUANGYAO
LIGUANGYAO · #1 · 4月之前

学习了,能下载系统源码吗,有go开发的小程序案例吗,或者能免费下载源码能也行

添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传