AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
test_hooks.go
根目录
/
internal
/
provider
/
responses
/
test_hooks.go
1
package responses
2
3
var sendChunkEnterBlocking func()
4
5
func notifySendChunkEnterBlocking() {
6
if sendChunkEnterBlocking != nil {
7
sendChunkEnterBlocking()
8
}
9
}
10
10 lines
GO