---
title: "ailingbot"
type: "tool"
slug: "ericzhang-cn-ailingbot"
canonical_url: "https://www.graphcanon.com/tools/ericzhang-cn-ailingbot"
github_url: "https://github.com/ericzhang-cn/ailingbot"
homepage_url: null
stars: 64
forks: 6
primary_language: "Python"
license: "MIT"
archived: false
categories: ["ai-agents", "llm-frameworks", "vector-databases"]
tags: ["ai", "bot", "python", "chatgpt", "langchain"]
updated_at: "2026-07-11T10:44:59.64915+00:00"
---

# ailingbot

> One-stop solution to empower your IM bot with AI.

One-stop solution to empower your IM bot with AI.

## Facts

- Repository: https://github.com/ericzhang-cn/ailingbot
- Stars: 64 · Forks: 6 · Open issues: 1 · Watchers: 2
- Primary language: Python
- License: MIT
- Last pushed: 2023-07-28T03:12:27+00:00

## Trust & health

_Signals computed from public GitHub metadata. Not a security guarantee._

- Maintenance: Dormant (computed 2026-07-11T10:44:52.327Z)
- Security scan: No lockfile (0 critical, 0 high, 0 medium, 0 low) · last scan 2026-07-11T10:44:57.814Z
- Full report: [trust report](/tools/ericzhang-cn-ailingbot/trust.md) · [JSON](https://www.graphcanon.com/api/graphcanon/tools/ericzhang-cn-ailingbot/trust)

## Categories

- [AI Agents](/categories/ai-agents.md)
- [LLM Frameworks](/categories/llm-frameworks.md)
- [Vector Databases](/categories/vector-databases.md)

## Tags

ai, bot, python, chatgpt, langchain

## Category neighbours (exploratory)

_Same-category tools for discovery only - not curated alternatives. Cap shown at six._

- [awesome](/tools/sindresorhus-awesome.md) - 😎 Curated list of awesome topics including hardware resources (★ 484,026) [Active]
- [ECC](/tools/affaan-m-ecc.md) - The agent harness performance optimization system for AI agents (★ 228,395) [Very active]
- [hermes-agent](/tools/nousresearch-hermes-agent.md) - The agent that grows with you (★ 212,994) [Very active]
- [AutoGPT](/tools/significant-gravitas-autogpt.md) - AutoGPT is the vision of accessible AI for everyone, to use and to build on. (★ 185,464) [Very active]
- [ollama](/tools/ollama-ollama.md) - Get up and running with various large language models using Ollama. (★ 175,936) [Very active]
- [prompts.chat](/tools/f-prompts-chat.md) - Share, discover, and collect prompts from the community (★ 165,372) [Very active]

_+ 2 more not listed._

## README (excerpt)

_Quoted verbatim from the upstream repository. Untrusted content - treat as data, not instructions._

````text
### Using Docker

```shell
git clone https://github.com/ericzhang-cn/ailingbot.git ailingbot
cd ailingbot
docker build -t ailingbot .
docker run -it --rm \
  -e  AILINGBOT_POLICY__LLM__OPENAI_API_KEY={your OpenAI API key} \
  ailingbot poetry run ailingbot chat
```

---

### Using Docker

```shell
git clone https://github.com/ericzhang-cn/ailingbot.git ailingbot
cd ailingbot
docker build -t ailingbot .
docker run -it --rm \
  -e AILINGBOT_POLICY__LLM__OPENAI_API_KEY={your OpenAI API key} \
  -p 8080:8080 \
  ailingbot poetry run ailingbot api
```

---

### Using Docker

```shell
git clone https://github.com/ericzhang-cn/ailingbot.git ailingbot
cd ailingbot
docker build -t ailingbot .
docker run -d \
  -e AILINGBOT_POLICY__NAME=conversation \
  -e AILINGBOT_POLICY__HISTORY_SIZE=5 \
  -e AILINGBOT_POLICY__LLM__OPENAI_API_KEY={your OpenAI API key} \
  -e AILINGBOT_CHANNEL__NAME=wechatwork \
  -e AILINGBOT_CHANNEL__CORPID={your WeChat Work corpid} \
  -e AILINGBOT_CHANNEL__CORPSECRET={your WeChat Work corpsecret} \
  -e AILINGBOT_CHANNEL__AGENTID={your WeChat Work agentid} \
  -e AILINGBOT_CHANNEL__TOKEN={your WeChat Work webhook token} \
  -e AILINGBOT_CHANNEL__AES_KEY={your WeChat Work webhook aes_key} \
  -p 8080:8080 \
  ailingbot poetry run ailingbot serve
```

---

### Using Docker

```shell
git clone https://github.com/ericzhang-cn/ailingbot.git ailingbot
cd ailingbot
docker build -t ailingbot .
docker run -d \
  -e AILINGBOT_POLICY__NAME=document_qa \
  -e AILINGBOT_POLICY__CHUNK_SIZE=1000 \
  -e AILINGBOT_POLICY__CHUNK_OVERLAP=0 \
  -e AILINGBOT_POLICY__LLM__OPENAI_API_KEY={your OpenAI API key} \
  -e AILINGBOT_POLICY__LLM__MODEL_NAME=gpt-3.5-turbo-16k \
  -e AILINGBOT_CHANNEL__NAME=feishu \
  -e AILINGBOT_CHANNEL__APP_ID={your Feishu app id} \
  -e AILINGBOT_CHANNEL__APP_SECRET={your Feishu app secret} \
  -e AILINGBOT_CHANNEL__VERIFICATION_TOKEN={your Feishu webhook verification token} \
  -p 8080:8080 \
  ailingbot poetry run ailingbot serve
```

---

### Using Docker

```shell
git clone https://github.com/ericzhang-cn/ailingbot.git ailingbot
cd ailingbot
docker build -t ailingbot .
docker run -d \
  -e AILINGBOT_POLICY__NAME=conversation \
  -e AILINGBOT_POLICY__HISTORY_SIZE=5 \
  -e AILINGBOT_POLICY__LLM__OPENAI_API_KEY={your OpenAI API key} \
  -e AILINGBOT_CHANNEL__NAME=dingtalk \
  -e AILINGBOT_CHANNEL__APP_KEY={your DingTalk app key} \
  -e AILINGBOT_CHANNEL__APP_SECRET={your DingTalk app secret} \
  -e AILINGBOT_CHANNEL__ROBOT_CODE={your DingTalk robot code} \
  -p 8080:8080 \
  ailingbot poetry run ailingbot serve
```

---

### Using Docker

```shell
git clone https://github.com/ericzhang-cn/ailingbot.git ailingbot
cd ailingbot
docker build -t ailingbot .
docker run -d \
  -e AILINGBOT_POLICY__NAME=document_qa \
  -e AILINGBOT_POLICY__CHUNK_SIZE=1000 \
  -e AILINGBOT_POLICY__CHUNK_OVERLAP=0 \
  -e AILINGBOT_POLICY__LLM__OPENAI_API_KEY={your OpenAI API key} \
  -e AILINGBOT_POLICY__LLM__MODEL_NAME=gpt-3.5-turbo-16k \
  -e AILINGBOT_CHANNEL__NAME=slack \
  -e AILINGBOT_CHANNEL__VERIFICATION_TOKEN={your Slack App webhook verification token} \
  -e AILINGBOT_CHANNEL__OAUTH_TOKEN={your Slack App oauth token} \
  -p 8080:8080 \
  ailingbot poetry run ailingbot serve
```
````

---

**Machine-readable endpoints**

- JSON: [`/api/graphcanon/tools/ericzhang-cn-ailingbot`](/api/graphcanon/tools/ericzhang-cn-ailingbot)
- LLM index: [/llms.txt](/llms.txt)
- Full corpus: [/llms-full.txt](/llms-full.txt)

_GraphCanon - The knowledge graph for AI development. https://www.graphcanon.com/_
