langchaingo
v0.1.12
⚡通過合併性與LLM一起構建應用程序! ⚡
這是Langchain的GO語言實現。
請參閱./示例例如用法。
package main
import (
"context"
"fmt"
"log"
"github.com/tmc/langchaingo/llms"
"github.com/tmc/langchaingo/llms/openai"
)
func main () {
ctx := context . Background ()
llm , err := openai . New ()
if err != nil {
log . Fatal ( err )
}
prompt := "What would be a good company name for a company that makes colorful socks?"
completion , err := llms . GenerateFromSinglePrompt ( ctx , llm , prompt )
if err != nil {
log . Fatal ( err )
}
fmt . Println ( completion )
}$ go run .
Socktastic以下是一些有關使用Langchain GO的博客文章和文章的鏈接: