mirror of
https://shylinux.com/x/ollama-story
synced 2025-05-05 03:27:02 +08:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
a485983fff | |||
506b87b3e8 | |||
7ff2d416e3 | |||
7d797f1fb3 | |||
3dec9b3ea0 | |||
![]() |
d821a27d9d | ||
![]() |
ac45330965 |
4
Makefile
4
Makefile
@ -5,8 +5,8 @@ flags = -ldflags "-w -s" -v
|
||||
|
||||
all: def
|
||||
@date +"%Y-%m-%d %H:%M:%S"
|
||||
go build ${flags} -o ${binarys} src/main.go ${version} ${binpack} && ./${binarys} forever restart &>/dev/null
|
||||
go build ${flags} -o ${binarys} src/main.go src/option.go ${version} ${binpack} && ./${binarys} forever restart &>/dev/null
|
||||
|
||||
def:
|
||||
@[ -f ${version} ] || echo "package main">${version}
|
||||
@[ -f ${binpack} ] || echo "package main">${binpack}
|
||||
@[ -f ${binpack} ] || echo "package main">${binpack}
|
||||
|
6
go.mod
6
go.mod
@ -3,9 +3,9 @@ module shylinux.com/x/ollama-story
|
||||
go 1.13
|
||||
|
||||
require (
|
||||
shylinux.com/x/ice v1.5.59
|
||||
shylinux.com/x/icebergs v1.9.61
|
||||
shylinux.com/x/toolkits v1.0.16
|
||||
shylinux.com/x/ice v1.5.73
|
||||
shylinux.com/x/icebergs v1.9.75
|
||||
shylinux.com/x/toolkits v1.0.19
|
||||
)
|
||||
|
||||
require github.com/gomarkdown/markdown v0.0.0-20250207164621-7a1f277a159e // indirect
|
||||
|
13
go.sum
13
go.sum
@ -4,13 +4,12 @@ shylinux.com/x/go-git/v5 v5.6.7 h1:WD5QSco7m3QooPCgdvQ6/GyGIFPun8C+hex5N41LYlk=
|
||||
shylinux.com/x/go-git/v5 v5.6.7/go.mod h1:Qb0lA+uIrofZg8NQerhYcJHgGWixFqvS6p3aJ/L5Nlk=
|
||||
shylinux.com/x/go-qrcode v0.0.3 h1:RMo+Vidbgq3HatLBj7DDXcTbTLFUwzis5K7TqBkD38U=
|
||||
shylinux.com/x/go-qrcode v0.0.3/go.mod h1:KAbtU+KwiiABMZ/CJ0zh9PI2AX82Uf9rRYcQ4ODm4po=
|
||||
shylinux.com/x/ice v1.5.59 h1:9TugxrDR5rlH+fMnm1L3sLtxoZXY5j0sR4SRLQyqcgg=
|
||||
shylinux.com/x/ice v1.5.59/go.mod h1:/jZUXZGsBpTdHy/c8JkpWtVPGg6uPHOghlUULzg4R7o=
|
||||
shylinux.com/x/icebergs v1.9.59/go.mod h1:d8sN77l5UZA+h8/swZ9OzqRCruoSYHWYjg5qKWnQI2s=
|
||||
shylinux.com/x/icebergs v1.9.61 h1:BguYfB7lzhjtJMhNG2efzzCJplHfaO+gNC0wBzunduc=
|
||||
shylinux.com/x/icebergs v1.9.61/go.mod h1:d8sN77l5UZA+h8/swZ9OzqRCruoSYHWYjg5qKWnQI2s=
|
||||
shylinux.com/x/ice v1.5.73 h1:wp+KeQ14hLOdxxSou/Y0zHi48Jm4nLx1rFOwGz8ix04=
|
||||
shylinux.com/x/ice v1.5.73/go.mod h1:uGI73gYkk+FiJt5qmy/aYhoKRJ4wobcJk3WrPGh8Waw=
|
||||
shylinux.com/x/icebergs v1.9.75 h1:9zAm0ppwUWl0As/vqfQG/QR/vwXa5zmfdIGE/gmvErQ=
|
||||
shylinux.com/x/icebergs v1.9.75/go.mod h1:3Bdp3tjzw+hUKJF+kR8pfsrbjAf72DVZmCaE8/MPFtk=
|
||||
shylinux.com/x/toolkits v0.7.10/go.mod h1:CHDJarGlDkg60kVsvMLYL/a5hAnRLEOShiEsMOuEp0Q=
|
||||
shylinux.com/x/toolkits v1.0.16 h1:7Oh454uAyBLfflIFEQooLNzml4pqXIReiaxEVA/YXaU=
|
||||
shylinux.com/x/toolkits v1.0.16/go.mod h1:CHDJarGlDkg60kVsvMLYL/a5hAnRLEOShiEsMOuEp0Q=
|
||||
shylinux.com/x/toolkits v1.0.19 h1:Nrx0xYRc5ph1WS66EZ1hJUCe+2FdSWQ4QP6tBlguikQ=
|
||||
shylinux.com/x/toolkits v1.0.19/go.mod h1:CHDJarGlDkg60kVsvMLYL/a5hAnRLEOShiEsMOuEp0Q=
|
||||
shylinux.com/x/websocket v0.0.4 h1:AJpwblePoOpiE6C8NrvgNYpKTotXMLrDDX2chTvx44Q=
|
||||
shylinux.com/x/websocket v0.0.4/go.mod h1:3UGWkjTu3ie5NAZen7J+uLPBrO7DFeKloj6Jxo13Oiw=
|
||||
|
@ -1,7 +1,6 @@
|
||||
$content { padding:10px 20px; }
|
||||
$content>div.message { padding:0px; overflow:auto; }
|
||||
$content>div.message>div.request { background-color:#94ec69; color:black; padding:10px; float:right; clear:both; }
|
||||
$content>div.message>div.request>span { float:right; }
|
||||
$content>div.message>div.response { padding:0px; clear:both; }
|
||||
$content>div.message>div.response p { margin:5px 0; }
|
||||
$content>div.request { padding-top:10px; }
|
||||
$content>div.request { background-color:#94ec69; color:black; padding:10px; float:right; }
|
||||
$content>div.response { clear:both; }
|
||||
$content>div.response p { margin:5px 0; }
|
||||
$display { background-color:var(--plugin-bg-color); height:120px; }
|
||||
$display textarea { margin:10px; width:calc(100% - 20px); }
|
@ -9,18 +9,18 @@ import (
|
||||
)
|
||||
|
||||
type chat struct {
|
||||
client client
|
||||
list string `name:"list list" help:"大模型对话" icon:"src/main.png"`
|
||||
client client
|
||||
request string `name:"request model* role* content* which*"`
|
||||
list string `name:"list list" help:"大模型对话" icon:"src/main.png"`
|
||||
}
|
||||
|
||||
func (s chat) Request(m *ice.Message, arg ...string) {
|
||||
m.Optionv(web.SPIDE_STREAM, func(text string) { web.PushNoticeGrow(m.Message, m.Option("which"), text) })
|
||||
m.Cmdy(web.SPIDE, ice.DEV, web.SPIDE_STREAM, http.MethodPost, "http://localhost:11434/api/chat", web.SPIDE_DATA, kit.Format(kit.Dict(
|
||||
"model", m.Option("model"), "stream", true, "messages", kit.List(kit.Dict("role", "user", "content", arg[0])),
|
||||
m.Cmdy(web.SPIDE, OLLAMA, web.SPIDE_STREAM, http.MethodPost, "/api/chat", web.SPIDE_DATA, kit.Format(kit.Dict(
|
||||
m.OptionSimple("model"), "stream", true, "messages", kit.List(kit.Dict(m.OptionSimple("role", "content"))),
|
||||
)))
|
||||
}
|
||||
func (s chat) List(m *ice.Message, arg ...string) {
|
||||
m.Cmdy(s.client).Display("").DisplayCSS("")
|
||||
}
|
||||
|
||||
func init() { ice.Cmd("web.chat.ollama.chat", chat{}) }
|
||||
func init() { ice.ChatModCmd(chat{}) }
|
||||
|
@ -1,30 +1,26 @@
|
||||
Volcanos(chat.ONIMPORT, {
|
||||
_init: function(can, msg) {
|
||||
can.require(["https://unpkg.com/showdown/dist/showdown.min.js"])
|
||||
can.ui = can.onappend.layout(can), can.ui.responseList = []
|
||||
_init: function(can, msg) { can.require(["https://unpkg.com/showdown/dist/showdown.min.js"])
|
||||
can.ui = can.onappend.layout(can), can.ui.responseList = [], can.onmotion.toggle(can, can.ui.display, true)
|
||||
msg.Table(function(value) { can.onimport.item(can, {
|
||||
name: value.NAME, nick: value.NAME+" ("+value.SIZE+")",
|
||||
}, function(event, item, show, target) {
|
||||
can.onimport.tabsCache(can, item, target, function() { can.onimport.content(can, target) })
|
||||
can.db.model = item.name, can.ui.message = target.ui.message, can.ui.request = target.ui.request
|
||||
can.onappend._status(can, msg), can.onimport.layout(can)
|
||||
}) })
|
||||
},
|
||||
content: function(can, target) {
|
||||
target.ui = can.page.Append(can, can.ui.content, [
|
||||
{view: "message", list: [
|
||||
{view: "response", list: [
|
||||
{text: can.user.trans(can, "Please Ask Anything!", "有什么问题尽管问吧!")},
|
||||
]},
|
||||
]},
|
||||
{view: "request", list: [
|
||||
{type: html.TEXTAREA, onkeydown: function(event) {
|
||||
if (event.key == code.ENTER) {
|
||||
can.onaction.request(event, can, event.target.value), event.target.value = "", can.onkeymap.prevent(event)
|
||||
}
|
||||
}},
|
||||
can.page.Append(can, can.ui.content, [
|
||||
{view: chat.RESPONSE, list: [
|
||||
{text: can.user.trans(can, "Please Ask Anything!", "有什么问题尽管问吧!")},
|
||||
]},
|
||||
])
|
||||
can.page.Append(can, can.ui.display, [
|
||||
{type: html.TEXTAREA, placeholder: can.user.trans(can, "Please Input Your Question!", "请输入的您的问题!"), onkeydown: function(event) {
|
||||
if (event.key == code.ENTER) {
|
||||
can.onaction.request(event, can, event.target.value), event.target.value = "", can.onkeymap.prevent(event)
|
||||
}
|
||||
}},
|
||||
])
|
||||
},
|
||||
_grow: function(can, msg, which, text) {
|
||||
var target = can.ui.responseList[parseInt(which)-1], data = JSON.parse(text)
|
||||
@ -32,18 +28,13 @@ Volcanos(chat.ONIMPORT, {
|
||||
var converter = new showdown.Converter(); target.innerHTML = converter.makeHtml(target._text)
|
||||
} else {
|
||||
can.page.Append(can, target, [{text: data.message.content}])
|
||||
} can.ui.message.scrollBy(0, 1000)
|
||||
} can.ui.content.scrollBy(0, 1000)
|
||||
},
|
||||
layout: function(can) {
|
||||
can.ui.layout(can.ConfHeight(), can.ConfWidth(), 0, function() {
|
||||
can.ui.request && can.page.style(can, can.ui.message, html.MAX_HEIGHT, can.ConfHeight()-can.ui.request.offsetHeight-20)
|
||||
})
|
||||
}
|
||||
})
|
||||
Volcanos(chat.ONACTION, {
|
||||
request: function(event, can, text) { can.page.Append(can, can.ui.message, [{view: "request", list: [{text: text}]}])
|
||||
var response = can.page.Append(can, can.ui.message, [{view: "response"}])._target; can.ui.responseList.push(response)
|
||||
can.request(event, {which: ""+can.ui.responseList.length, model: can.db.model})
|
||||
can.runAction(event, "request", [text], function(msg) {})
|
||||
request: function(event, can, text) { can.page.Append(can, can.ui.content, [{view: chat.REQUEST, list: [{text: text}]}])
|
||||
var response = can.page.Append(can, can.ui.content, [{view: chat.RESPONSE}])._target; can.ui.responseList.push(response)
|
||||
can.request(event, {model: can.db.value.name, role: "user", content: text, which: ""+can.ui.responseList.length})
|
||||
can.runAction(event, chat.REQUEST, [], function(msg) {})
|
||||
},
|
||||
})
|
||||
|
@ -3,12 +3,22 @@ package client
|
||||
import (
|
||||
"shylinux.com/x/ice"
|
||||
"shylinux.com/x/icebergs/base/cli"
|
||||
"shylinux.com/x/icebergs/base/mdb"
|
||||
"shylinux.com/x/icebergs/base/nfs"
|
||||
"shylinux.com/x/icebergs/base/web"
|
||||
)
|
||||
|
||||
const (
|
||||
OLLAMA = "ollama"
|
||||
)
|
||||
|
||||
type client struct {
|
||||
list string `name:"list NAME auto" help:"大模型"`
|
||||
}
|
||||
|
||||
func (s client) Init(m *ice.Message, arg ...string) {
|
||||
m.Cmd(web.SPIDE, mdb.CREATE, "http://localhost:11434/api/chat", OLLAMA, nfs.SRC_MAIN_PNG)
|
||||
}
|
||||
func (s client) List(m *ice.Message, arg ...string) {
|
||||
if len(arg) == 0 {
|
||||
m.SplitIndex(s.cmdx(m, ice.LIST))
|
||||
@ -17,8 +27,8 @@ func (s client) List(m *ice.Message, arg ...string) {
|
||||
}
|
||||
}
|
||||
|
||||
func init() { ice.Cmd("web.chat.ollama.client", client{}) }
|
||||
func init() { ice.ChatModCmd(client{}) }
|
||||
|
||||
func (s client) cmdx(m *ice.Message, arg ...string) string {
|
||||
return m.Cmdx(cli.SYSTEM, "ollama", arg)
|
||||
return m.Cmdx(cli.SYSTEM, OLLAMA, arg)
|
||||
}
|
||||
|
46
src/main.shy
46
src/main.shy
@ -5,22 +5,56 @@ refer `
|
||||
模型 https://ollama.com/library/deepseek-r1
|
||||
应用 https://feizhuke.com/
|
||||
`
|
||||
chapter "DeepSeek"
|
||||
|
||||
chapter "应用"
|
||||
refer `
|
||||
官网 https://www.deepseek.com/
|
||||
简介 https://blog.csdn.net/qq_40999403/article/details/139320266
|
||||
帖子 https://bbs.shylinux.com/forum.php?mod=viewthread&tid=6&page=1&extra=#pid23
|
||||
源码 https://github.com/shylinux/ollama-story
|
||||
帖子 https://bbs.shylinux.com/forum.php?mod=viewthread&tid=6&extra=page%3D1
|
||||
showdown https://igithub.com/showdownjs/showdown
|
||||
nodejs https://nodejs.org/en
|
||||
`
|
||||
field web.chat.ollama.chat
|
||||
|
||||
chapter "常用模型"
|
||||
refer `
|
||||
硅基流动 https://siliconflow.cn/
|
||||
深度求索 https://www.deepseek.com/
|
||||
字节豆包 https://www.doubao.com/
|
||||
腾讯元宝 https://yuanbao.tencent.com/
|
||||
通义千问 https://tongyi.aliyun.com/
|
||||
文心一言 https://yiyan.baidu.com/
|
||||
月之暗面 https://kimi.moonshot.cn/
|
||||
`
|
||||
chapter "外部依赖"
|
||||
|
||||
chapter "常用工具"
|
||||
section "AnythingLLM"
|
||||
refer `
|
||||
https://github.com/showdownjs/showdown
|
||||
官网 https://anythingllm.com/
|
||||
文档 https://docs.anythingllm.com/
|
||||
源码 https://github.com/Mintplex-Labs/anything-llm
|
||||
`
|
||||
section "Cherry Studio"
|
||||
refer `
|
||||
官网 https://cherry-ai.com/
|
||||
文档 https://docs.cherry-ai.com/
|
||||
源码 https://github.com/CherryHQ/cherry-studio
|
||||
`
|
||||
section "OBS Studio"
|
||||
refer `
|
||||
官网 https://obsproject.com/
|
||||
文档 https://obsproject.com/kb/quick-start-guide
|
||||
源码 https://github.com/obsproject/obs-studio
|
||||
`
|
||||
section "community"
|
||||
refer `
|
||||
https://x.com/
|
||||
https://discord.com/
|
||||
https://telegram.org/
|
||||
https://www.facebook.com/
|
||||
https://www.youtube.com/
|
||||
https://mail.google.com/
|
||||
https://www.bilibili.com/
|
||||
https://www.xiaohongshu.com/
|
||||
https://www.douyin.com/
|
||||
https://weibo.com/
|
||||
`
|
@ -11,4 +11,4 @@ func (s server) List(m *ice.Message, arg ...string) {
|
||||
s.Hash.List(m, arg...)
|
||||
}
|
||||
|
||||
func init() { ice.Cmd("web.chat.ollama.server", server{}) }
|
||||
func init() { ice.ChatModCmd(server{}) }
|
||||
|
Loading…
x
Reference in New Issue
Block a user