-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [fix] 实现量化列表显示 - [fix] 实现自定义文本上传 - [fix] 强依赖Qdrant向量知识库提示性能和查询准确性
- Loading branch information
Showing
54 changed files
with
6,031 additions
and
662 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
src/Contracts/FastWiki.Service.Contracts/QuantizedListState.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
namespace FastWiki.Service.Contracts; | ||
|
||
|
||
/// <summary> | ||
/// 表示量化列表的状态。 | ||
/// </summary> | ||
public enum QuantizedListState | ||
{ | ||
/// <summary> | ||
/// 待处理状态。 | ||
/// </summary> | ||
Pending = 1, | ||
|
||
/// <summary> | ||
/// 成功状态。 | ||
/// </summary> | ||
Success = 2, | ||
|
||
/// <summary> | ||
/// 失败状态。 | ||
/// </summary> | ||
Fail = 3 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace FastWiki.Service.Contracts; | ||
|
||
public enum VectorType | ||
{ | ||
/// <summary> | ||
/// 默认向量方式 | ||
/// </summary> | ||
None, | ||
|
||
/// <summary> | ||
/// Mem0向量方式 | ||
/// </summary> | ||
Mem0, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.