mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
13 lines
238 B
Go
13 lines
238 B
Go
package main
|
|
|
|
import (
|
|
"chatplus/utils"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
text := "https://nk.img.r9it.com/chatgpt-plus/1712709360012445.png 请简单描述一下这幅图上的内容 "
|
|
imgURL := utils.ExtractImgURL(text)
|
|
fmt.Println(imgURL)
|
|
}
|