发布应用 Telegram Search

This commit is contained in:
2025-09-29 00:26:43 +08:00
parent de45b69658
commit 49ac1f929f
14 changed files with 218 additions and 0 deletions
+1
View File
@@ -183,6 +183,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/tangsengdaodao/logo.png" width="22"/> | 唐僧叨叨 | https://tsdaodao.com/ | 让企业轻松拥有自己的即时通讯 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/teemii/logo.png" width="22"/> | Teemii | https://www.teemii.io/ | 漫画阅读器和管理器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/telegram-bot-api/logo.png" width="22"/> | Telegram Bot Api | https://telegram.org/ | 自建 Telegram Bot API 服务器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/telegram-search/logo.png" width="22"/> | Telegram Search | https://search.lingogram.app/ | Telegram 聊天搜索工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/tissue/logo.png" width="22"/> | Tissue | https://github.com/chris-2s/tissue/ | 老师教材刮削工具,提供海报下载、元数据匹配等功能 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/topiam-ce/logo.png" width="22"/> | TOPIAM | https://topiam.cn/ | IAM/IDaaS 身份管理平台 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/traccar/logo.png" width="22"/> | Traccar 轨迹 | https://www.traccar.org/ | 现代 GPS 追踪系统 | |
+2
View File
@@ -98,6 +98,7 @@
| 🟢 | <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镜像加速专家 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/kvrocks/logo.png" width="22"/> | Kvrocks | https://kvrocks.apache.org/ | 分布式键值 NoSQL 数据库 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/libretv/logo.png" width="22"/> | LibreTV | https://libretv.is-an.org/ | 免费在线视频搜索与观看平台 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/limesurvey/logo.png" width="22"/> | 问卷星 | https://www.limesurvey.org/ | 在线问卷调查程序 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/linkding/logo.png" width="22"/> | LinkDing | https://github.com/sissbruecker/linkding/ | 自托管书签管理器 | |
@@ -177,6 +178,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/tangsengdaodao/logo.png" width="22"/> | 唐僧叨叨 | https://tsdaodao.com/ | 让企业轻松拥有自己的即时通讯 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/teemii/logo.png" width="22"/> | Teemii | https://www.teemii.io/ | 漫画阅读器和管理器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/telegram-bot-api/logo.png" width="22"/> | Telegram Bot Api | https://telegram.org/ | 自建 Telegram Bot API 服务器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/telegram-search/logo.png" width="22"/> | Telegram Search | https://search.lingogram.app/ | Telegram 聊天搜索工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/tissue/logo.png" width="22"/> | Tissue | https://github.com/chris-2s/tissue/ | 老师教材刮削工具,提供海报下载、元数据匹配等功能 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/topiam-ce/logo.png" width="22"/> | TOPIAM | https://topiam.cn/ | IAM/IDaaS 身份管理平台 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/traccar/logo.png" width="22"/> | Traccar 轨迹 | https://www.traccar.org/ | 现代 GPS 追踪系统 | |
@@ -0,0 +1,34 @@
database:
# Database type: postgres, pglite
type: postgres
host: telegram_search_pgvector
port: 5432
user: postgres
password: 'telegram_search'
database: postgres
api:
telegram:
apiId: '611335'
apiHash: d524b414d21f4d37f08684c1df41ac9c
receiveMessage: false
proxy:
ip: ''
port: 0
MTProxy: false
secret: ''
socksType: 5
timeout: 2
username: ''
password: ''
embedding:
# Embedding provider (openai or ollama)
provider: openai
# Embedding model
model: text-embedding-3-small
# API key for provider
apiKey: your_openai_api_key
# Optional, available dimensions: 1536, 1024, 768. Default dimension is 1536. #If using gemini-embedding-exp-03-07, choose 768
dimension: 1536
# Optional, for custom API providers
apiBase: 'https://api.openai.com/v1'
@@ -0,0 +1,4 @@
ALTER SYSTEM SET vectors.pgvector_compatibility=on;
DROP EXTENSION IF EXISTS vectors;
CREATE EXTENSION vectors;
+52
View File
@@ -0,0 +1,52 @@
additionalProperties:
formFields:
- default: "/home/telegram-search"
edit: true
envKey: TELEGRAM_SEARCH_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 3333
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "telegram_search"
edit: true
envKey: POSTGRES_DATABASE
labelZh: 数据库 名称
labelEn: Database Name
required: true
type: text
- default: "telegram_search"
edit: true
envKey: POSTGRES_USER
labelZh: 数据库 用户名
labelEn: Database Username
required: true
type: text
- default: "telegram_search"
edit: true
envKey: POSTGRES_PASSWORD
labelZh: 数据库 密码
labelEn: Database Password
required: true
type: password
- default: ""
edit: true
envKey: TELEGRAM_API_ID
labelZh: Telegram 应用程序 ID
labelEn: Telegram APPID
required: false
type: text
- default: ""
edit: true
envKey: TELEGRAM_API_HASH
labelZh: Telegram 应用程序 哈希
labelEn: Telegram APP HASH
required: false
type: text
@@ -0,0 +1,48 @@
networks:
1panel-network:
external: true
services:
telegram_search:
image: ghcr.io/groupultra/telegram-search:1.1.9
depends_on:
telegram_search_pgvector:
condition: service_healthy
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:3333
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${TELEGRAM_SEARCH_ROOT_PATH}/data:/app/data
environment:
- TZ=Asia/Shanghai
- DATABASE_TYPE=postgres
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@telegram_search_pgvector:5432/${POSTGRES_DATABASE}
telegram_search_pgvector:
image: ghcr.io/tensorchord/pgvecto-rs:pg17-v0.4.0
container_name: db-${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ./config/init.sql:/docker-entrypoint-initdb.d/init.sql
- ${TELEGRAM_SEARCH_ROOT_PATH}/db:/var/lib/postgresql/data
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DATABASE=${POSTGRES_DATABASE}
healthcheck:
test: [ CMD-SHELL, pg_isready -d postgres -U postgres ]
interval: 10s
timeout: 5s
retries: 5
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
@@ -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
+15
View File
@@ -0,0 +1,15 @@
# Telegram Search
Telegram 聊天搜索工具,具有矢量搜索和语义匹配功能
![Telegram Search](https://file.lifebus.top/imgs/telegram-search_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)
## 简介
功能强大的 Telegram 聊天搜索工具,具有矢量搜索和语义匹配功能。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
+14
View File
@@ -0,0 +1,14 @@
additionalProperties:
key: telegram-search
name: Telegram Search
tags:
- WebSite
- Local
shortDescZh: Telegram 聊天搜索工具
shortDescEn: Telegram Chat Search Tool
type: website
crossVersionUpdate: true
limit: 0
website: https://search.lingogram.app/
github: https://github.com/groupultra/telegram-search/
document: https://github.com/groupultra/telegram-search/
Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB