Junyan Qin (Chin)
32f6d8b253
Merge pull request #1654 from langbot-app/feat/wecom_ai_bot
...
Feat/wecom ai bot
2025-09-15 14:05:08 +08:00
Junyan Qin
dc454b24ec
chore: register migration
2025-09-14 23:32:12 +08:00
Junyan Qin
0dce884519
perf: full_command_text field in execute context
2025-09-14 19:12:44 +08:00
WangCham
d70196e799
feat: modify for new plugin system
2025-09-14 16:40:34 +08:00
wangcham
2c6f127f47
feat: delete host config
2025-09-14 12:42:31 +08:00
wangcham
72ec4b77d6
feat: fix bot id
2025-09-14 12:42:31 +08:00
wangcham
8b935175bd
feat:wecom ai bot
2025-09-14 12:42:31 +08:00
Junyan Qin
6a7e88ffd6
perf: minor fixes
2025-09-13 17:59:10 +08:00
Bruce
e2071d9486
Revert "add adapter send card & dingtalk send_card"
...
This reverts commit 0f4d65072b5e328e7d3c50291a8d5157beff1225.
2025-09-13 17:23:39 +08:00
Bruce
0b0a0c07a0
add adapter send card & dingtalk send_card
2025-09-13 17:23:29 +08:00
Bruce
d7b354b9b4
add database connect config
2025-09-13 17:23:06 +08:00
Junyan Qin
78d36af96b
fix: bug after rebase
2025-09-13 17:13:13 +08:00
Junyan Qin (Chin)
826ceab5b8
Merge branch 'master' into rc/new-plugin
2025-09-12 23:02:51 +08:00
Guanchao Wang
6f98feaaf1
Feat/qdrant vdb ( #1649 )
...
* feat: Qdrant vector search support
Signed-off-by: Anush008 <anushshetty90@gmail.com >
* fix: modify env
* fix: fix the old version problem
* fix: For older versions
* perf: minor perf
---------
Signed-off-by: Anush008 <anushshetty90@gmail.com >
Co-authored-by: Anush008 <anushshetty90@gmail.com >
Co-authored-by: Junyan Qin <rockchinq@gmail.com >
2025-09-12 12:41:16 +08:00
ashen
345c8b113f
feat: supported langflow api provider ( #1646 )
...
* add langflow api provider
* chore: migration
* feat: okay for non-stream req
* fix: langflow sse data extracting
* doc: add comment on langflow api
---------
Co-authored-by: Junyan Qin <rockchinq@gmail.com >
2025-09-11 21:37:45 +08:00
fdc
a95c422de9
fix: wechatpad pydantic.BaseModel norm
2025-08-31 22:20:22 +08:00
fdc
93319ec2a8
fix: dingtalk pydantic.BaseModel norm
2025-08-31 22:20:05 +08:00
fdc
e0d5469ae2
del self.ap error
2025-08-31 22:18:10 +08:00
Junyan Qin
1f9f330cef
fix: missing key in v3 config migration
2025-08-31 21:57:36 +08:00
Junyan Qin
11acd99c10
feat: supports for command return image base64
2025-08-30 22:41:07 +08:00
Junyan Qin
caab1c2831
Merge branch 'master' into refactor/new-plugin-system
2025-08-30 17:25:35 +08:00
Junyan Qin
89b25b8985
chore: release v4.2.2
2025-08-29 17:01:26 +08:00
Junyan Qin
40f1af4434
perf: display installed plugin icon
2025-08-28 23:50:26 +08:00
Junyan Qin
91959527a4
feat: available for disabling marketplace(offline env)
2025-08-28 23:04:21 +08:00
Junyan Qin
4bdd8a021c
fix: tool call params in localagent
2025-08-28 14:38:10 +08:00
Junyan Qin
c0ccdaf91a
fix: minor bugs
2025-08-28 14:02:56 +08:00
Bruce
d9fa1cbb06
perf: add cmd enable config & fix announce request timeout & fix send card with disconnect ai platform ( #1633 )
...
* add cmd config && fix bugs
* perf: use `get`
* update bansess fix block match rule
* perf: comment for access-control session str
---------
Co-authored-by: Junyan Qin <rockchinq@gmail.com >
2025-08-28 12:59:50 +08:00
Bruce
8858f432b5
fix dingtalk message sender id & update dingtalk streaming card without content ( #1630 )
2025-08-27 18:09:30 +08:00
Junyan Qin
56183867a7
fix: replace message_chain.has usage
2025-08-25 23:22:36 +08:00
Junyan Qin
ea6ce2f552
fix: set plugin enabled=true as default
2025-08-25 20:56:39 +08:00
Junyan Qin
55df728471
fix: wrong migration target version
2025-08-24 21:47:54 +08:00
Junyan Qin
64764c412b
Merge branch 'rc/new-plugin' into refactor/new-plugin-system
2025-08-24 21:40:02 +08:00
Junyan Qin
118ebddae6
fix: use --standalone-runtime
2025-08-23 23:03:32 +08:00
Junyan Qin
2742144e12
feat: change standalone runtime tag env
2025-08-23 22:57:46 +08:00
devin-ai-integration[bot]
83ff64698b
feat: add ZIP file upload support for knowledge base ( #1626 )
...
* feat: add ZIP file upload support for knowledge base
- Add _parse_zip method to FileParser class using zipfile library
- Support extraction and processing of TXT, PDF, DOCX, MD, HTML files from ZIP
- Update FileUploadZone to accept .zip files
- Add ZIP format to supported formats in internationalization files
- Implement error handling for invalid ZIP files and unsupported content
- Follow existing async parsing patterns and error handling conventions
Co-Authored-By: Rock <rockchinq@gmail.com >
* refactor: modify ZIP processing to store each document as separate file
- Remove _parse_zip method from FileParser as ZIP handling now occurs at knowledge base level
- Add _store_zip_file method to RuntimeKnowledgeBase to extract and store each document separately
- Each document in ZIP is now stored as individual file entry in knowledge base
- Process ZIP files in memory using io.BytesIO to avoid filesystem writes
- Generate unique file names for extracted documents to prevent conflicts
Co-Authored-By: Rock <rockchinq@gmail.com >
* perf: delete temp files
---------
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: Rock <rockchinq@gmail.com >
2025-08-23 21:18:13 +08:00
Junyan Qin
d3a147bbdd
chore: bump version 4.3.0b3
2025-08-23 20:08:29 +08:00
Junyan Qin
8eb1b8759b
chore: bump version to '4.3.0b2'
2025-08-23 20:06:19 +08:00
Junyan Qin
0155d3b0b9
fix: conflict in table plugin_settings
2025-08-23 20:05:24 +08:00
Junyan Qin
87ecb4e519
feat: add note for remove_think & remove dify remove cot code
2025-08-21 21:38:58 +08:00
Ljzd_PRO
df524b8a7a
Fix: Fixed the incorrect extraction method of sender ID when converting aiocqhttp reply messages ( #1624 )
...
* fix: update invoke_embedding to return only embeddings from client.embed
* fix: Fixed the incorrect extraction method of sender ID when converting aiocqhttp reply messages
2025-08-21 20:46:26 +08:00
Junyan Qin
cafd623c92
chore: update shengsuanyun
2025-08-21 12:03:04 +08:00
Junyan Qin
4df11ef064
chore: update for shengsuanyun
2025-08-21 11:47:40 +08:00
Junyan Qin
4012310d99
chore: bump version 4.3.0b1
2025-08-21 10:49:51 +08:00
Junyan Qin
aa7c08ee00
chore: release v4.2.1
2025-08-21 10:15:05 +08:00
Junyan Qin
b98de29b07
feat: add shengsuanyun requester
2025-08-20 23:33:35 +08:00
fdc310
c7c2eb4518
fix:in the gmini tool_calls no id The resulting call failure ( #1622 )
...
* fix:in the dify agent llm return message can not joint
* fix:in the gmini tool_calls no id The resulting call failure
2025-08-20 22:39:16 +08:00
Ljzd_PRO
37fa318258
fix: update invoke_embedding to return only embeddings from client.embed ( #1619 )
2025-08-20 10:25:33 +08:00
fdc310
ff7bebb782
fix:in the dify agent llm return message can not joint ( #1617 )
2025-08-19 23:23:00 +08:00
Junyan Qin
9c1f4e1690
chore: release v4.2.0
2025-08-18 18:43:20 +08:00
Dong_master
67b622d5a6
fix:Some adjustments to the return types
2025-08-17 23:34:19 +08:00