add ask AI

This commit is contained in:
2025-06-13 15:01:08 +09:00
parent 962017f922
commit fb0e5107cf
14 changed files with 506 additions and 383 deletions

20
run.zsh
View File

@ -17,8 +17,8 @@ function _env() {
}
function _server() {
_env
lsof -ti:$port | xargs kill -9 2>/dev/null || true
lsof -ti:11434 | xargs kill -9 2>/dev/null || true
cd $d/my-blog
cargo build --release
$ailog build
@ -26,12 +26,10 @@ function _server() {
}
function _server_public() {
_env
cloudflared tunnel --config $d/cloudflared-config.yml run
}
function _oauth_build() {
_env
cd $oauth
nvm use 21
npm i
@ -43,11 +41,17 @@ function _oauth_build() {
}
function _server_comment() {
_env
cargo build --release
AILOG_DEBUG_ALL=1 $ailog stream start
AILOG_DEBUG_ALL=1 $ailog stream start my-blog
}
function _server_ollama(){
brew services stop ollama
OLLAMA_ORIGINS="https://log.syui.ai" ollama serve
}
_env
case "${1:-serve}" in
tunnel|c)
_server_public
@ -58,6 +62,12 @@ case "${1:-serve}" in
comment|co)
_server_comment
;;
ollama|ol)
_server_ollama
;;
proxy|p)
_server_proxy
;;
serve|s|*)
_server
;;