zhouyangtingwen 9488f0b1c8 Update api_test.go
2023-07-21 13:33:33 +08:00
2023-07-21 13:33:33 +08:00
2023-06-21 15:48:12 +08:00
2023-06-20 17:53:23 +08:00
2023-06-20 17:53:23 +08:00
2023-06-20 17:53:23 +08:00
2023-06-25 16:11:58 +08:00

Dify Go SDK

This is the Go SDK for the Dify API, which allows you to easily integrate Dify into your Go applications.

Install

go get github.com/zhouyangtingwen/dify-sdk-go

Usage

After installing the SDK, you can use it in your project like this:

package main

import (
	"context"
	"log"
	"strings"

	"github.com/zhouyangtingwen/dify-sdk-go"
)

func main() {
	var (
		ctx = context.Background()
		c = dify.NewClient("your-dify-server-host", "your-api-key-here")

		req = &dify.ChatMessageRequest{
			Query: "your-question",
			User: "your-user",
		}

		ch chan dify.ChatMessageStreamChannelResponse
		err error
	)

	if ch, err = c.Api().ChatMessagesStream(ctx, req); err != nil {
		return
	}

	var strBuilder strings.Builder

	for {
		select {
		case <-ctx.Done():
			return
		case streamData, isOpen := <-ch:
			if err = streamData.Err; err != nil {
				log.Println(err.Error())
				return
			}
			if !isOpen {
				log.Println(strBuilder.String())
				return
			}

			strBuilder.WriteString(streamData.Answer)
		}
	}
}

License

This SDK is released under the MIT License.

S
Description
No description provided
Readme 78 KiB
Languages
Go 100%