1
0

Marge sephiroth233/appstore into localApps

This commit is contained in:
pooneyy
2025-07-01 09:08:18 +00:00
71 changed files with 2757 additions and 78 deletions

82
apps/kirara/README.md Normal file
View File

@@ -0,0 +1,82 @@
<div align="center">
# Kirara AI Chatbot Framework
[![GitHub stars](https://img.shields.io/github/stars/lss233/chatgpt-mirai-qq-bot?style=social)](https://github.com/lss233/chatgpt-mirai-qq-bot)
</div>
## 概述
Kirara 是一个基于插件生态和工作流系统的 AI 聊天机器人框架,支持多种 AI 模型和即时通讯平台。
## 主要特性
- 支持多种 AI 模型DeepSeek、Claude、Grok、OpenAI、Gemini、ChatGLM、Ollama
- 人设调教与虚拟女仆功能
- 语音对话支持
- 多平台支持QQ、Telegram、Discord、微信等
- 插件系统扩展
- 工作流自定义
## 部署
### 使用 Docker Compose 部署(推荐)
```yaml
version: "3.8"
services:
kirara-agent:
image: lss233/kirara-agent-framework:latest
container_name: kirara-agent
restart: always
volumes:
- ./data:/app/data
ports:
- "${PANEL_APP_PORT_HTTP}:8080"
```
启动命令:
```bash
docker-compose up -d
```
### 直接使用 Docker 镜像
```bash
docker run -d \
--name kirara-agent \
--restart always \
-v $(pwd)/data:/app/data \
-p 8080:8080 \
lss233/kirara-agent-framework:latest
```
## 配置
环境变量配置:
| 变量名 | 描述 | 默认值 |
|--------|------|--------|
| PANEL_APP_PORT_HTTP | HTTP 服务端口 | 8080 |
| DATA_PATH | 数据存储路径 | /app/data |
## 界面截图
(截图待添加)
## 交流与支持
- GitHub Issues: [https://github.com/lss233/chatgpt-mirai-qq-bot/issues](https://github.com/lss233/chatgpt-mirai-qq-bot/issues)
- QQ 群: 123456789
- Telegram 群: @kirara_chat
## 相关项目
- [Mirai](https://github.com/mamoe/mirai): QQ 协议实现
- [ChatGPT-Mirai](https://github.com/lss233/chatgpt-mirai-qq-bot): 项目基础
## Star History
[![Star History Chart](https://api.star-history.com/svg?repos=lss233/chatgpt-mirai-qq-bot&type=Date)](https://star-history.com/#lss233/chatgpt-mirai-qq-bot&Date)

21
apps/kirara/data.yml Normal file
View File

@@ -0,0 +1,21 @@
name: kirara
tags:
- AI / 大模型
- 聊天机器人
title: Kirara AI 聊天机器人框架
description: Kirara AI 聊天机器人框架
additionalProperties:
key: kirara
name: kirara
tags:
- AI
- Chatbot
shortDescZh: 插件生态 x 工作流系统DIY 你自己的 AI 聊天机器人支持DeepSeek、Claude、Grok、OpenAI、Gemini、ChatGLM、Ollama人设调教虚拟女仆、语音对话 | 支持 QQ、Telegram、Discord、微信 等平台
shortDescEn: Plugin ecosystem x workflow system, DIY your own AI chatbot! Supports DeepSeek, Claude, Grok, OpenAI, Gemini, ChatGLM, Ollama, character customization, virtual maid, voice chat | Supports QQ, Telegram, Discord, WeChat and other platforms
type: tool
crossVersionUpdate: true
limit: 0
recommend: 0
website: https://kirara-docs.app.lss233.com/
github: https://github.com/lss233/chatgpt-mirai-qq-bot/
document: https://github.com/lss233/chatgpt-mirai-qq-bot/blob/master/README.md

View File

@@ -0,0 +1,17 @@
additionalProperties:
formFields:
- default: 48080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: ./data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text

View File

@@ -0,0 +1,18 @@
version: "3.8"
services:
kirara-agent:
image: lss233/kirara-agent-framework:latest
container_name: ${CONTAINER_NAME}
restart: always
volumes:
- "${DATA_PATH}:/app/data"
ports:
- "${PANEL_APP_PORT_HTTP}:8080"
networks:
- 1panel-network
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true

BIN
apps/kirara/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB