Commit Graph

3155 Commits

Author SHA1 Message Date
tam
cc287702bc fix(reranker)In the recall test scenario, the reranking logic is updated based on the application configuration
The logic for determining whether to use reranking and setting the `top_k` value now depends on the `app_config` instead of directly using `CFG.RERANK_MODEL` and `CFG.RERANK_TOP_K`. This change ensures that the application's specific configuration settings are respected.
2025-04-19 15:20:10 +08:00
dobet
129509fcd2
fix connect mssql embedding error (#2589) 2025-04-17 12:44:51 +08:00
magic.chen
8d66d0271f
fix:storage add collection bug (#2615)
Close #2595 
# Description
fix hybrid memory milvus create collection bug 

# How Has This Been Tested?

switch milvus for hybrid storage type.

# Snapshots:

Include snapshots for easier review.

# Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have already rebased the commits and make the commit message
conform to the project standard.
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] Any dependent changes have been merged and published in downstream
modules
2025-04-15 22:48:26 +08:00
Fangyin Cheng
17b7e5ba0c
feat(model): Support GLM-4-0414 (#2630) 2025-04-15 22:48:18 +08:00
alanchen
7de6937865
fix(docs): update doc example code to work (#2624)
Co-authored-by: alan.cl <alan.cl@antgroup.com>
2025-04-15 22:45:55 +08:00
Fangyin Cheng
5e7f3568d3
feat(model): Multimodal supports (#2627) 2025-04-15 16:29:02 +08:00
aries_ckt
ac72bb0927 Merge remote-tracking branch 'main-com/main' into fix_issue2590 2025-04-15 10:06:36 +08:00
aries_ckt
2991c7e437 fix:memory create collection bug 2025-04-14 21:29:41 +08:00
aries_ckt
4c6386ad3f fix:add create collection method for other vector db. 2025-04-13 12:24:16 +08:00
magic.chen
0245cfdff8
fix(storage): Fix load too many chunks error (#2614)
# Description

Closes #2607

# How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration

# Snapshots:

Include snapshots for easier review.

# Checklist:

- [x] My code follows the style guidelines of this project
- [x] I have already rebased the commits and make the commit message
conform to the project standard.
- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
- [x] I have made corresponding changes to the documentation
- [x] Any dependent changes have been merged and published in downstream
modules
2025-04-12 20:48:59 +08:00
aries_ckt
2fad7485fc chore:fmt 2025-04-12 14:34:19 +08:00
aries_ckt
5d67f166d9 fix:storage add collection 2025-04-12 14:18:12 +08:00
Fangyin Cheng
c04e3c7cb0 fix(storage): Fix load big documents error 2025-04-11 20:46:48 +08:00
ethan
12170e2504
feat(mode) : Adding the siliconflow embeding proxy (#2603)
Co-authored-by: 9527 <9527@163.com>
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com>
2025-04-11 16:41:51 +08:00
ethan
61565f7369
fix: the issue is the app_code can't be stored in the chat_history… (#2606)
Co-authored-by: 9527 <9527@163.com>
2025-04-11 16:41:04 +08:00
Fangyin Cheng
5ddd9e5bf8
fix(model): Fix apiserver error (#2605) 2025-04-10 10:23:49 +08:00
Tam
babc484261
Fix postgresql (#2601)
Co-authored-by: tam <tanwe@fulan.com.cn>
2025-04-10 09:40:45 +08:00
geebytes
90e22ac136
fix: Bugfix/elasticsearch store read config dict (#2577) 2025-04-10 07:36:43 +08:00
Tam
ae4112cf35
fix(schema): change flow_data column type from text to longtext (#2590)
Co-authored-by: tam <tanwe@fulan.com.cn>
2025-04-09 12:36:19 +08:00
Fangyin Cheng
e9ce534ca1
feat(agent): Support SSL/TLS for MCP (#2591) 2025-04-08 08:47:41 +08:00
Cooper
0fd578cf87
fix(agents): fix ReActAgent (#2588) 2025-04-07 13:04:55 +08:00
Fangyin Cheng
3ceba89102
feat(build): Add git for docker image (#2584) 2025-04-03 10:47:03 +08:00
alanchen
5dbfb24a86
Fix ChatWithDbQA param validate (#2569)
Co-authored-by: alan.cl <alan.cl@antgroup.com>
2025-04-03 09:49:48 +08:00
magic.chen
e7b23f6425
feat(agent): Support MCP authentication (#2582)
# Description

Support MCP authentication(SSE).

# How Has This Been Tested?

```python
from dbgpt.agent.resource import  MCPToolPack

tools = MCPToolPack(
    "http://127.0.0.1:8000/sse"
    default_headers={"Authorization": "Bearer your_token"}
)
# Set the default headers for each server
tools2 = MCPToolPack(
    "http://127.0.0.1:8000/sse"
    headers = {
        "http://127.0.0.1:8000/sse": {
            "Authorization": "Bearer your_token"
        }
    }
)

```

# Snapshots:

Website:


![image](https://github.com/user-attachments/assets/f7f96fa5-dd21-4a81-86f3-2a73a3fc464f)



# Checklist:

- [x] My code follows the style guidelines of this project
- [x] I have already rebased the commits and make the commit message
conform to the project standard.
- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
- [x] I have made corresponding changes to the documentation
- [x] Any dependent changes have been merged and published in downstream
modules
2025-04-03 09:47:19 +08:00
Fangyin Cheng
2e0e140b51 feat(agent): Support MCP authentication 2025-04-03 09:21:05 +08:00
yyhhyy
0b6633703d
fix(web): Fix resource binding bug (#2572) 2025-04-02 20:19:44 +08:00
Fangyin Cheng
59e34e2d89
feat(agent): Compatible with MCP and tools (#2566)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-04-01 16:03:52 +08:00
Tam
9719c0abcd
fix(knowledge):Fix KB document questions list check logic (#2565)
Co-authored-by: tam <tanwe@fulan.com.cn>
2025-03-31 20:12:45 +08:00
yyhhyy
9fce5cec3d
fix(web): Prevent dragging node when selecting text in parameter input fields (#2560) 2025-03-31 19:55:16 +08:00
yihong
beafca5c6c
fix: make tugraph work again (#2551)
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
2025-03-31 19:46:44 +08:00
Fangyin Cheng
3bfbdc3fc7
feat(agent): More general ReAct Agent (#2556) 2025-03-31 09:38:31 +08:00
magic.chen
0bdff7a0f2
fix: fix vllm tokenizer count error (#2555)
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com>
2025-03-31 08:31:04 +08:00
magic.chen
c68332be4c
fix: some typos using typos (#2552)
# Description

Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.

This path fix some of typos using typos just an example

using tools https://github.com/crate-ci/typos

# How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration

# Snapshots:

Include snapshots for easier review.

# Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have already rebased the commits and make the commit message
conform to the project standard.
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] Any dependent changes have been merged and published in downstream
modules
2025-03-29 16:39:46 +08:00
yihong0618
80eef20422 fix: some typos using typos
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
2025-03-29 11:10:16 +08:00
cumbersun
b880082586
fix: issue 2549 (#2550)
Co-authored-by: cumbermiao <cumbermiao@163.com>
2025-03-29 11:05:43 +08:00
geebytes
c86243aa62
feat(KnowledgeBase):Add Word97-2003 (.doc) Binary File parsing module (#2544) 2025-03-29 11:05:06 +08:00
yihong
7c05bc1784
fix: clouse issue #2469 by fixing the type (#2533)
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
2025-03-28 05:46:44 +08:00
yihong
10619aaf96
fix: wrong name close #2530 (#2532)
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
2025-03-26 22:03:34 +08:00
yihong
e68bdfcb8e
doc: fix a typo in README (#2526)
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
2025-03-25 23:32:02 +08:00
Fangyin Cheng
99ce1ed992
feat(web): Support html/svg preview (#2518) 2025-03-25 11:41:18 +08:00
Tam
1ec855fd79
feat(rerank): add Text Embeddings Inference (TEI) API support for reranking (#2516)
Co-authored-by: tam <tanwe@fulan.com.cn>
2025-03-24 23:16:03 +08:00
Fangyin Cheng
b715cdb131
docs: Fix build doc error (#2517) 2025-03-24 19:53:23 +08:00
Fangyin Cheng
7bce2a9ce6
docs: Add 0.7.0 release blog (#2515) 2025-03-24 18:29:35 +08:00
yyhhyy
59771a09f3
chore(style): Code format (#2513) 2025-03-24 15:48:02 +08:00
北极
201e216a15
fix(log): Modify AWEL init log param (#2510)
Co-authored-by: 刘家星 <liujiaxing@fulan.com.cn>
2025-03-24 15:37:58 +08:00
magic.chen
d13875caa9
fix: rag knowledge process workflow template (#2509)
Close #issue2277
# Description

fix rag knowledge process workflow template error

# How Has This Been Tested?

run rag knowledge process workflow template

# Snapshots:

Include snapshots for easier review.

# Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have already rebased the commits and make the commit message
conform to the project standard.
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] Any dependent changes have been merged and published in downstream
modules
2025-03-24 11:04:11 +08:00
aries_ckt
4f2903a6b7 chore:fmt 2025-03-23 19:31:49 +08:00
aries_ckt
d095091525 fix:rag workflow error fix 2025-03-23 19:17:43 +08:00
aries_ckt
eccbe2ba94 Merge remote-tracking branch 'main-com/main' into issue2484 2025-03-23 16:20:50 +08:00
aries_ckt
2107f472e1 fix:rag workflow update 2025-03-23 16:20:40 +08:00