发布应用 Kirara AI

This commit is contained in:
ms
2025-12-11 12:44:20 +08:00
parent 5f1ca352ed
commit 95384619ea
12 changed files with 136 additions and 0 deletions
+1
View File
@@ -103,6 +103,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/jproxy/logo.png" width="22"/> | JProxy | https://github.com/LuckyPuppy514/jproxy/ | 介于 Sonarr / Radarr 和 Jackett / Prowlarr 之间的代理,主要用于优化查询和提升识别率 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kavita/logo.png" width="22"/> | Kavita | https://www.kavitareader.com/ | 自托管数字图书馆 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kimai/logo.png" width="22"/> | Kimai | https://www.kimai.org/ | 基于网络的多用户时间追踪应用 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kirara-agent/logo.png" width="22"/> | Kirara Agent | https://kirara-docs.app.lss233.com/ | 一款支持主流大语言模型、主流聊天平台的聊天的机器人 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/komga/logo.png" width="22"/> | Komga | https://komga.org/ | 漫画、漫画、蓝光光盘、杂志和电子书的媒体服务器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kotatsu/logo.png" width="22"/> | Kotatsu | https://kotatsu.app/ | 口袋里的漫画 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kspeeder/logo.png" width="22"/> | KSpeeder | https://kspeeder.istoreos.com/ | Docker镜像加速专家 | |
+1
View File
@@ -98,6 +98,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/jproxy/logo.png" width="22"/> | JProxy | https://github.com/LuckyPuppy514/jproxy/ | 介于 Sonarr / Radarr 和 Jackett / Prowlarr 之间的代理,主要用于优化查询和提升识别率 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kavita/logo.png" width="22"/> | Kavita | https://www.kavitareader.com/ | 自托管数字图书馆 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kimai/logo.png" width="22"/> | Kimai | https://www.kimai.org/ | 基于网络的多用户时间追踪应用 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kirara-agent/logo.png" width="22"/> | Kirara Agent | https://kirara-docs.app.lss233.com/ | 一款支持主流大语言模型、主流聊天平台的聊天的机器人 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/komga/logo.png" width="22"/> | Komga | https://komga.org/ | 漫画、漫画、蓝光光盘、杂志和电子书的媒体服务器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kotatsu/logo.png" width="22"/> | Kotatsu | https://kotatsu.app/ | 口袋里的漫画 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kspeeder/logo.png" width="22"/> | KSpeeder | https://kspeeder.istoreos.com/ | Docker镜像加速专家 | |
+17
View File
@@ -0,0 +1,17 @@
additionalProperties:
formFields:
- default: "/home/kirara-agent"
edit: true
envKey: KIRARA_AGENT_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
@@ -0,0 +1,22 @@
networks:
1panel-network:
external: true
services:
kirara-agent:
image: lss233/kirara-agent-framework:v3.2.0
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${KIRARA_AGENT_ROOT_PATH}/data:/app/data
environment:
- TZ=Asia/Shanghai
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+30
View File
@@ -0,0 +1,30 @@
# Kirara Agent
一款支持主流大语言模型、主流聊天平台的聊天的机器人!
![Kirara Agent](https://file.lifebus.top/imgs/kirara-agent_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
### 多平台支持
支持 QQ、Telegram、Discord 等多个主流聊天平台
### 丰富的模型接入
支持 ChatGPT、Claude、文心一言等多个大语言模型
### 灵活的 Agent 编排
通过工作流配置,自定义 AI 助手的行为和个性
### 插件生态
强大的插件系统,支持功能扩展
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
![Ms Studio](https://analytics.lifebus.top/p/wJix5nI1W)
+17
View File
@@ -0,0 +1,17 @@
additionalProperties:
key: kirara-agent
name: Kirara Agent
tags:
- WebSite
- Local
shortDescZh: 一款支持主流大语言模型、主流聊天平台的聊天的机器人
shortDescEn: A chatbot that supports mainstream large language models and mainstream chat platforms
type: website
crossVersionUpdate: true
limit: 0
website: https://kirara-docs.app.lss233.com/
github: https://github.com/lss233/kirara-ai/
document: https://kirara-docs.app.lss233.com/guide/
architectures:
- amd64
- arm64
Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB