mirror of
https://github.com/ArvinLovegood/go-stock.git
synced 2025-07-19 00:00:09 +08:00
- 在 App.d.ts 和 App.js 中添加 NewChat 方法的声明和实现 - 在 models.ts 中添加 OpenAI 相关的配置项 - 在 package.json 中添加 md-editor-v3 依赖,可能用于富文本编辑
12 lines
144 B
Go
12 lines
144 B
Go
package data
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestNewDeepSeekOpenAiConfig(t *testing.T) {
|
|
ai := NewDeepSeekOpenAi()
|
|
ai.NewChat("闻泰科技")
|
|
|
|
}
|