エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
ChatGPTのAPIをGolangで実装する - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
ChatGPTのAPIをGolangで実装する - Qiita
package gpt import ( "bytes" "encoding/json" "errors" "fmt" "net/http" ) type IGpt interface { Ge... package gpt import ( "bytes" "encoding/json" "errors" "fmt" "net/http" ) type IGpt interface { GenerateText(message []Chat) (string, error) } type Gpt struct { apiKey string model string } func NewGpt(apiKey string, model string) IGpt { return &Gpt{ apiKey: apiKey, model: model, } } type Chat struct { Role string `json:"role"` Content string `json:"content"` } func (gpt *Gpt) GenerateText(messages

