@hddjs/hdd-cloud-types 1.0.6 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/HddCloud/common/index.d.ts +4 -4
- package/HddCloud/index.d.ts +59 -59
- package/README.md +2 -2
- package/hdd-ai-cloud/common/AISceneEnum.d.ts +54 -54
- package/hdd-ai-cloud/common/IAliFcContext.d.ts +5 -5
- package/hdd-ai-cloud/common/ICallUniCloudParams.js +3 -3
- package/hdd-ai-cloud/common/ICallUniCloudParams.ts +20 -20
- package/hdd-ai-cloud/common/IChatAiMessageItem.d.ts +23 -23
- package/hdd-ai-cloud/common/ICommonError.d.ts +13 -0
- package/hdd-ai-cloud/common/ICommonReqRes.d.ts +23 -30
- package/hdd-ai-cloud/common/ICommonRequstHead.js +3 -3
- package/hdd-ai-cloud/common/ICommonRequstHead.ts +17 -17
- package/hdd-ai-cloud/common/IConfigInfo.d.ts +6 -0
- package/hdd-ai-cloud/common/ICounselor.d.ts +4 -4
- package/hdd-ai-cloud/common/ICounselorType.d.ts +23 -23
- package/hdd-ai-cloud/common/IFormatCutOffCollegeData.d.ts +29 -29
- package/hdd-ai-cloud/common/IFormatGaokaoBasicInfo.d.ts +67 -0
- package/hdd-ai-cloud/common/IFormatProfessional.js +3 -3
- package/hdd-ai-cloud/common/IFormatProfessional.ts +29 -29
- package/hdd-ai-cloud/common/IGetRecommendSchool.d.ts +77 -73
- package/hdd-ai-cloud/common/IInquiryBasicInfo.d.ts +39 -39
- package/hdd-ai-cloud/common/IInquirySession.d.ts +25 -25
- package/hdd-ai-cloud/common/IPicture.d.ts +13 -13
- package/hdd-ai-cloud/common/IReportData.d.ts +136 -0
- package/hdd-ai-cloud/common/ISceneAiConfig.d.ts +27 -27
- package/hdd-ai-cloud/common/IScoreRank.d.ts +18 -18
- package/hdd-ai-cloud/common/ISelectSubject.d.ts +29 -29
- package/hdd-ai-cloud/common/ISessionContent.d.ts +31 -27
- package/hdd-ai-cloud/common/ISessionRole.d.ts +21 -21
- package/hdd-ai-cloud/common/ISseChunk.d.ts +57 -57
- package/hdd-ai-cloud/common/ISseData.d.ts +108 -96
- package/hdd-ai-cloud/common/IThisContext.d.ts +128 -128
- package/hdd-ai-cloud/common/ReportTypeEnum.d.ts +7 -0
- package/hdd-ai-cloud/common/SubReportTypeEnum.d.ts +18 -0
- package/hdd-ai-cloud/common/index.d.ts +29 -23
- package/hdd-ai-cloud/controller/index.d.ts +496 -453
- package/hdd-ai-cloud/index.d.ts +3 -3
- package/hdd-ai-cloud/service/index.d.ts +36 -36
- package/index.d.ts +2 -2
- package/npmPublish.md +10 -10
- package/package.json +11 -11
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 专业信息(来源招生计划表)
|
|
3
|
-
*/
|
|
4
|
-
export interface IFormatProfessional {
|
|
5
|
-
/**
|
|
6
|
-
* 专业名称
|
|
7
|
-
*/
|
|
8
|
-
professionalName?: string;
|
|
9
|
-
/**
|
|
10
|
-
* 专业填报要求
|
|
11
|
-
*/
|
|
12
|
-
professionalRequirements?: string;
|
|
13
|
-
/**
|
|
14
|
-
* 专业备注
|
|
15
|
-
*/
|
|
16
|
-
professionalRemark?: string;
|
|
17
|
-
/**
|
|
18
|
-
* 学费
|
|
19
|
-
*/
|
|
20
|
-
tuitionFee?: number;
|
|
21
|
-
/**
|
|
22
|
-
* 计划招生人数
|
|
23
|
-
*/
|
|
24
|
-
plannedNumber?: number;
|
|
25
|
-
/**
|
|
26
|
-
* 专业代码
|
|
27
|
-
*/
|
|
28
|
-
professionalCode?: string;
|
|
29
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* 专业信息(来源招生计划表)
|
|
3
|
+
*/
|
|
4
|
+
export interface IFormatProfessional {
|
|
5
|
+
/**
|
|
6
|
+
* 专业名称
|
|
7
|
+
*/
|
|
8
|
+
professionalName?: string;
|
|
9
|
+
/**
|
|
10
|
+
* 专业填报要求
|
|
11
|
+
*/
|
|
12
|
+
professionalRequirements?: string;
|
|
13
|
+
/**
|
|
14
|
+
* 专业备注
|
|
15
|
+
*/
|
|
16
|
+
professionalRemark?: string;
|
|
17
|
+
/**
|
|
18
|
+
* 学费
|
|
19
|
+
*/
|
|
20
|
+
tuitionFee?: number;
|
|
21
|
+
/**
|
|
22
|
+
* 计划招生人数
|
|
23
|
+
*/
|
|
24
|
+
plannedNumber?: number;
|
|
25
|
+
/**
|
|
26
|
+
* 专业代码
|
|
27
|
+
*/
|
|
28
|
+
professionalCode?: string;
|
|
29
|
+
}
|
|
@@ -1,73 +1,77 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 推荐学校
|
|
3
|
-
*/
|
|
4
|
-
export interface IGetRecommendSchool {
|
|
5
|
-
/**
|
|
6
|
-
* 年份
|
|
7
|
-
*/
|
|
8
|
-
year?: number;
|
|
9
|
-
/**
|
|
10
|
-
* 分数
|
|
11
|
-
*/
|
|
12
|
-
grade?: number;
|
|
13
|
-
/**
|
|
14
|
-
* 学校id
|
|
15
|
-
*/
|
|
16
|
-
schoolId?: number;
|
|
17
|
-
/**
|
|
18
|
-
* 学校名称
|
|
19
|
-
*/
|
|
20
|
-
schoolName?: String;
|
|
21
|
-
/**
|
|
22
|
-
* 省份id
|
|
23
|
-
*/
|
|
24
|
-
provinceId?: string;
|
|
25
|
-
/**
|
|
26
|
-
* 省份名称
|
|
27
|
-
*/
|
|
28
|
-
schoolProvince?: string;
|
|
29
|
-
/**
|
|
30
|
-
* 组别id
|
|
31
|
-
*/
|
|
32
|
-
groupId?: number;
|
|
33
|
-
/**
|
|
34
|
-
* 批次id
|
|
35
|
-
*/
|
|
36
|
-
batchId?: string;
|
|
37
|
-
/**
|
|
38
|
-
* 专业标识
|
|
39
|
-
*/
|
|
40
|
-
majorGroupId?: string;
|
|
41
|
-
/**
|
|
42
|
-
* 专业选科要求
|
|
43
|
-
*/
|
|
44
|
-
majorRequirement?: string;
|
|
45
|
-
/**
|
|
46
|
-
* 专业选科要求id
|
|
47
|
-
*/
|
|
48
|
-
majorRequirementId?: number;
|
|
49
|
-
/**
|
|
50
|
-
* 省控线
|
|
51
|
-
*/
|
|
52
|
-
minControlLine?: number;
|
|
53
|
-
/**
|
|
54
|
-
* 排名
|
|
55
|
-
*/
|
|
56
|
-
rank?: number;
|
|
57
|
-
/**
|
|
58
|
-
* 招生代码
|
|
59
|
-
*/
|
|
60
|
-
enrollmentId?: string;
|
|
61
|
-
/**
|
|
62
|
-
* 专业名称
|
|
63
|
-
*/
|
|
64
|
-
majorName?: string;
|
|
65
|
-
/**
|
|
66
|
-
* 学费
|
|
67
|
-
*/
|
|
68
|
-
money?: number;
|
|
69
|
-
/**
|
|
70
|
-
* 招生人数
|
|
71
|
-
*/
|
|
72
|
-
hc?: number;
|
|
73
|
-
|
|
1
|
+
/**
|
|
2
|
+
* 推荐学校
|
|
3
|
+
*/
|
|
4
|
+
export interface IGetRecommendSchool {
|
|
5
|
+
/**
|
|
6
|
+
* 年份
|
|
7
|
+
*/
|
|
8
|
+
year?: number;
|
|
9
|
+
/**
|
|
10
|
+
* 分数
|
|
11
|
+
*/
|
|
12
|
+
grade?: number;
|
|
13
|
+
/**
|
|
14
|
+
* 学校id
|
|
15
|
+
*/
|
|
16
|
+
schoolId?: number;
|
|
17
|
+
/**
|
|
18
|
+
* 学校名称
|
|
19
|
+
*/
|
|
20
|
+
schoolName?: String;
|
|
21
|
+
/**
|
|
22
|
+
* 省份id
|
|
23
|
+
*/
|
|
24
|
+
provinceId?: string;
|
|
25
|
+
/**
|
|
26
|
+
* 省份名称
|
|
27
|
+
*/
|
|
28
|
+
schoolProvince?: string;
|
|
29
|
+
/**
|
|
30
|
+
* 组别id
|
|
31
|
+
*/
|
|
32
|
+
groupId?: number;
|
|
33
|
+
/**
|
|
34
|
+
* 批次id
|
|
35
|
+
*/
|
|
36
|
+
batchId?: string;
|
|
37
|
+
/**
|
|
38
|
+
* 专业标识
|
|
39
|
+
*/
|
|
40
|
+
majorGroupId?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 专业选科要求
|
|
43
|
+
*/
|
|
44
|
+
majorRequirement?: string;
|
|
45
|
+
/**
|
|
46
|
+
* 专业选科要求id
|
|
47
|
+
*/
|
|
48
|
+
majorRequirementId?: number;
|
|
49
|
+
/**
|
|
50
|
+
* 省控线
|
|
51
|
+
*/
|
|
52
|
+
minControlLine?: number;
|
|
53
|
+
/**
|
|
54
|
+
* 排名
|
|
55
|
+
*/
|
|
56
|
+
rank?: number;
|
|
57
|
+
/**
|
|
58
|
+
* 招生代码
|
|
59
|
+
*/
|
|
60
|
+
enrollmentId?: string;
|
|
61
|
+
/**
|
|
62
|
+
* 专业名称
|
|
63
|
+
*/
|
|
64
|
+
majorName?: string;
|
|
65
|
+
/**
|
|
66
|
+
* 学费
|
|
67
|
+
*/
|
|
68
|
+
money?: number;
|
|
69
|
+
/**
|
|
70
|
+
* 招生人数
|
|
71
|
+
*/
|
|
72
|
+
hc?: number;
|
|
73
|
+
/**
|
|
74
|
+
* 冲稳保标识
|
|
75
|
+
*/
|
|
76
|
+
strategyTag?: 'chong' | 'wen' | 'bao';
|
|
77
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { type ISelectSubject } from './ISelectSubject';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 基础信息
|
|
5
|
-
*/
|
|
6
|
-
export interface IInquiryBasicInfo {
|
|
7
|
-
/**
|
|
8
|
-
* 选科信息
|
|
9
|
-
*/
|
|
10
|
-
selectSubject?: ISelectSubject;
|
|
11
|
-
/**
|
|
12
|
-
* 会话id
|
|
13
|
-
*/
|
|
14
|
-
sessionId?: string;
|
|
15
|
-
/**
|
|
16
|
-
* 省份id
|
|
17
|
-
*/
|
|
18
|
-
provinceId?: string;
|
|
19
|
-
/**
|
|
20
|
-
* 省份
|
|
21
|
-
*/
|
|
22
|
-
province?: string;
|
|
23
|
-
/**
|
|
24
|
-
* 年份
|
|
25
|
-
*/
|
|
26
|
-
year?: number;
|
|
27
|
-
/**
|
|
28
|
-
* 分数
|
|
29
|
-
*/
|
|
30
|
-
grade?: number | null;
|
|
31
|
-
/**
|
|
32
|
-
* 排名
|
|
33
|
-
*/
|
|
34
|
-
rank?: number | null;
|
|
35
|
-
/**
|
|
36
|
-
* 组别id
|
|
37
|
-
*/
|
|
38
|
-
groupId?: number;
|
|
39
|
-
}
|
|
1
|
+
import { type ISelectSubject } from './ISelectSubject';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 基础信息
|
|
5
|
+
*/
|
|
6
|
+
export interface IInquiryBasicInfo {
|
|
7
|
+
/**
|
|
8
|
+
* 选科信息
|
|
9
|
+
*/
|
|
10
|
+
selectSubject?: ISelectSubject;
|
|
11
|
+
/**
|
|
12
|
+
* 会话id
|
|
13
|
+
*/
|
|
14
|
+
sessionId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 省份id
|
|
17
|
+
*/
|
|
18
|
+
provinceId?: string;
|
|
19
|
+
/**
|
|
20
|
+
* 省份
|
|
21
|
+
*/
|
|
22
|
+
province?: string;
|
|
23
|
+
/**
|
|
24
|
+
* 年份
|
|
25
|
+
*/
|
|
26
|
+
year?: number;
|
|
27
|
+
/**
|
|
28
|
+
* 分数
|
|
29
|
+
*/
|
|
30
|
+
grade?: number | null;
|
|
31
|
+
/**
|
|
32
|
+
* 排名
|
|
33
|
+
*/
|
|
34
|
+
rank?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
* 组别id
|
|
37
|
+
*/
|
|
38
|
+
groupId?: number;
|
|
39
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 问询会话
|
|
3
|
-
*/
|
|
4
|
-
export interface IInquirySession {
|
|
5
|
-
/**
|
|
6
|
-
* 用户id
|
|
7
|
-
*/
|
|
8
|
-
uid?: string;
|
|
9
|
-
/**
|
|
10
|
-
* 咨询师id
|
|
11
|
-
*/
|
|
12
|
-
counselorId?: string;
|
|
13
|
-
/**
|
|
14
|
-
* 咨询师name
|
|
15
|
-
*/
|
|
16
|
-
counselorName?: string;
|
|
17
|
-
/**
|
|
18
|
-
* 会话标题
|
|
19
|
-
*/
|
|
20
|
-
sessionTitle?: string;
|
|
21
|
-
/**
|
|
22
|
-
* 当前步骤
|
|
23
|
-
*/
|
|
24
|
-
currentStepId?: string;
|
|
25
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* 问询会话
|
|
3
|
+
*/
|
|
4
|
+
export interface IInquirySession {
|
|
5
|
+
/**
|
|
6
|
+
* 用户id
|
|
7
|
+
*/
|
|
8
|
+
uid?: string;
|
|
9
|
+
/**
|
|
10
|
+
* 咨询师id
|
|
11
|
+
*/
|
|
12
|
+
counselorId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* 咨询师name
|
|
15
|
+
*/
|
|
16
|
+
counselorName?: string;
|
|
17
|
+
/**
|
|
18
|
+
* 会话标题
|
|
19
|
+
*/
|
|
20
|
+
sessionTitle?: string;
|
|
21
|
+
/**
|
|
22
|
+
* 当前步骤
|
|
23
|
+
*/
|
|
24
|
+
currentStepId?: string;
|
|
25
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 会话内容
|
|
3
|
-
*/
|
|
4
|
-
export interface IPicture {
|
|
5
|
-
/**
|
|
6
|
-
* domain的类型,ali、qiniu
|
|
7
|
-
*/
|
|
8
|
-
domainType?: string | null;
|
|
9
|
-
/**
|
|
10
|
-
* 图片path
|
|
11
|
-
*/
|
|
12
|
-
path?: string | null;
|
|
13
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* 会话内容
|
|
3
|
+
*/
|
|
4
|
+
export interface IPicture {
|
|
5
|
+
/**
|
|
6
|
+
* domain的类型,ali、qiniu
|
|
7
|
+
*/
|
|
8
|
+
domainType?: string | null;
|
|
9
|
+
/**
|
|
10
|
+
* 图片path
|
|
11
|
+
*/
|
|
12
|
+
path?: string | null;
|
|
13
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 高考霍兰德职业兴趣测评报告接口
|
|
3
|
+
* @interface IGaokaoInterestReport
|
|
4
|
+
*/
|
|
5
|
+
export interface IGaokaoInterestReport {
|
|
6
|
+
/**
|
|
7
|
+
* 报告摘要
|
|
8
|
+
* @description 对用户职业兴趣的综合分析和描述
|
|
9
|
+
*/
|
|
10
|
+
summary: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* 六个维度的得分
|
|
14
|
+
* @description 霍兰德职业兴趣理论的六个维度分数
|
|
15
|
+
*/
|
|
16
|
+
score?: {
|
|
17
|
+
/** 现实型分数 (Realistic) */
|
|
18
|
+
R: number;
|
|
19
|
+
/** 研究型分数 (Investigative) */
|
|
20
|
+
I: number;
|
|
21
|
+
/** 艺术型分数 (Artistic) */
|
|
22
|
+
A: number;
|
|
23
|
+
/** 社会型分数 (Social) */
|
|
24
|
+
S: number;
|
|
25
|
+
/** 企业型分数 (Enterprising) */
|
|
26
|
+
E: number;
|
|
27
|
+
/** 传统型分数 (Conventional) */
|
|
28
|
+
C: number;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* 主导类型
|
|
33
|
+
* @description 用户的主要职业兴趣类型,应为R、I、A、S、E、C中的一个
|
|
34
|
+
*/
|
|
35
|
+
type: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* 高考专业推荐报告接口
|
|
40
|
+
* @interface IMajorRecommendReport
|
|
41
|
+
*/
|
|
42
|
+
export interface IGaokaoMajorMatchingReport {
|
|
43
|
+
/**
|
|
44
|
+
* 报告摘要
|
|
45
|
+
* @description 对用户的专业推荐的综合分析和描述
|
|
46
|
+
*/
|
|
47
|
+
summary: string;
|
|
48
|
+
/**
|
|
49
|
+
* 补充描述
|
|
50
|
+
* @description 对用户的专业推荐的补充描述
|
|
51
|
+
*/
|
|
52
|
+
description: string;
|
|
53
|
+
/**
|
|
54
|
+
* 专业推荐列表
|
|
55
|
+
* @description 用户推荐的专业列表
|
|
56
|
+
*/
|
|
57
|
+
recommendedMajors: {
|
|
58
|
+
/**
|
|
59
|
+
* 专业名称
|
|
60
|
+
*/
|
|
61
|
+
name: string;
|
|
62
|
+
/**
|
|
63
|
+
* 匹配度分数 满分100分
|
|
64
|
+
*/
|
|
65
|
+
matchScore: number;
|
|
66
|
+
}[];
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* 高考志愿推荐:院校排序接口
|
|
71
|
+
* @interface IGaokaoVolunteerRecommendationReport
|
|
72
|
+
*/
|
|
73
|
+
export interface IGaokaoVolunteerRecommendationReport {
|
|
74
|
+
recommendations: IRecommendationSchoolItem[];
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* 院校排序等推荐列表项
|
|
79
|
+
*/
|
|
80
|
+
export interface IRecommendationSchoolItem {
|
|
81
|
+
/**
|
|
82
|
+
* 学校名称
|
|
83
|
+
*/
|
|
84
|
+
schoolName?: String;
|
|
85
|
+
/**
|
|
86
|
+
* 招生代码
|
|
87
|
+
*/
|
|
88
|
+
enrollmentId?: string;
|
|
89
|
+
/**
|
|
90
|
+
* 专业名称
|
|
91
|
+
*/
|
|
92
|
+
majorName?: string;
|
|
93
|
+
/**
|
|
94
|
+
* 去年最低排名
|
|
95
|
+
*/
|
|
96
|
+
rank?: number;
|
|
97
|
+
/**
|
|
98
|
+
* 学费
|
|
99
|
+
*/
|
|
100
|
+
money?: number;
|
|
101
|
+
/**
|
|
102
|
+
* 招生人数
|
|
103
|
+
*/
|
|
104
|
+
hc?: number;
|
|
105
|
+
/**
|
|
106
|
+
* 排序理由
|
|
107
|
+
*/
|
|
108
|
+
rankReason?: string;
|
|
109
|
+
/**
|
|
110
|
+
* 冲稳保策略标识
|
|
111
|
+
*/
|
|
112
|
+
strategyTag?: 'chong' | 'wen' | 'bao';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* 高考志愿未来发展:未来发展建议接口
|
|
117
|
+
* @interface IGaokaoFutureDevelopmentReport
|
|
118
|
+
*/
|
|
119
|
+
export interface IGaokaoFutureDevelopmentReport {
|
|
120
|
+
/**
|
|
121
|
+
* 未来发展建议摘要
|
|
122
|
+
*/
|
|
123
|
+
futureDevelopmentSummary?: string;
|
|
124
|
+
/**
|
|
125
|
+
* 大学学习建议
|
|
126
|
+
*/
|
|
127
|
+
universityLearningAdvice?: string;
|
|
128
|
+
/**
|
|
129
|
+
* 能力提升建议
|
|
130
|
+
*/
|
|
131
|
+
abilityImprovementAdvice?: string;
|
|
132
|
+
/**
|
|
133
|
+
* 职业发展建议
|
|
134
|
+
*/
|
|
135
|
+
careerDevelopmentAdvice?: string;
|
|
136
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { type AISceneEnum } from './AISceneEnum';
|
|
2
|
-
/**
|
|
3
|
-
* AI场景hdd-ai-config配置
|
|
4
|
-
*/
|
|
5
|
-
export interface ISceneAiConfig {
|
|
6
|
-
/**
|
|
7
|
-
* apiKey
|
|
8
|
-
*/
|
|
9
|
-
apiKey?: string;
|
|
10
|
-
/**
|
|
11
|
-
* baseURL
|
|
12
|
-
*/
|
|
13
|
-
baseURL?: string;
|
|
14
|
-
/**
|
|
15
|
-
* 提问场景
|
|
16
|
-
*/
|
|
17
|
-
scene?: AISceneEnum;
|
|
18
|
-
/**
|
|
19
|
-
* 场景描述
|
|
20
|
-
*/
|
|
21
|
-
desc?: string;
|
|
22
|
-
/**
|
|
23
|
-
* 该场景需要调用的模型
|
|
24
|
-
* @enum 'qwen-max' | 'deepseek-r1' | 'qwen-plus'
|
|
25
|
-
*/
|
|
26
|
-
model?: string;
|
|
27
|
-
}
|
|
1
|
+
import { type AISceneEnum } from './AISceneEnum';
|
|
2
|
+
/**
|
|
3
|
+
* AI场景hdd-ai-config配置
|
|
4
|
+
*/
|
|
5
|
+
export interface ISceneAiConfig {
|
|
6
|
+
/**
|
|
7
|
+
* apiKey
|
|
8
|
+
*/
|
|
9
|
+
apiKey?: string;
|
|
10
|
+
/**
|
|
11
|
+
* baseURL
|
|
12
|
+
*/
|
|
13
|
+
baseURL?: string;
|
|
14
|
+
/**
|
|
15
|
+
* 提问场景
|
|
16
|
+
*/
|
|
17
|
+
scene?: AISceneEnum;
|
|
18
|
+
/**
|
|
19
|
+
* 场景描述
|
|
20
|
+
*/
|
|
21
|
+
desc?: string;
|
|
22
|
+
/**
|
|
23
|
+
* 该场景需要调用的模型
|
|
24
|
+
* @enum 'qwen-max' | 'deepseek-r1' | 'qwen-plus'
|
|
25
|
+
*/
|
|
26
|
+
model?: string;
|
|
27
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 一分一档前端展示对象
|
|
3
|
-
*/
|
|
4
|
-
export interface IScoreRankSeriesVO {
|
|
5
|
-
name?: string;
|
|
6
|
-
type?: string;
|
|
7
|
-
data?: Array<string | null>;
|
|
8
|
-
index?: number;
|
|
9
|
-
color?: string;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* 一份一档表
|
|
14
|
-
*/
|
|
15
|
-
export interface IScoreRank {
|
|
16
|
-
categories?: Array<string | null>;
|
|
17
|
-
series?: Array<IScoreRankSeriesVO | null>;
|
|
18
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* 一分一档前端展示对象
|
|
3
|
+
*/
|
|
4
|
+
export interface IScoreRankSeriesVO {
|
|
5
|
+
name?: string;
|
|
6
|
+
type?: string;
|
|
7
|
+
data?: Array<string | null>;
|
|
8
|
+
index?: number;
|
|
9
|
+
color?: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* 一份一档表
|
|
14
|
+
*/
|
|
15
|
+
export interface IScoreRank {
|
|
16
|
+
categories?: Array<string | null>;
|
|
17
|
+
series?: Array<IScoreRankSeriesVO | null>;
|
|
18
|
+
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 选科信息
|
|
3
|
-
*/
|
|
4
|
-
export interface ISelectSubject {
|
|
5
|
-
/**
|
|
6
|
-
* 物理
|
|
7
|
-
*/
|
|
8
|
-
physics?: boolean;
|
|
9
|
-
/**
|
|
10
|
-
* 化学
|
|
11
|
-
*/
|
|
12
|
-
chemistry?: boolean;
|
|
13
|
-
/**
|
|
14
|
-
* 生物
|
|
15
|
-
*/
|
|
16
|
-
biology?: boolean;
|
|
17
|
-
/**
|
|
18
|
-
* 历史
|
|
19
|
-
*/
|
|
20
|
-
history?: boolean;
|
|
21
|
-
/**
|
|
22
|
-
* 政治
|
|
23
|
-
*/
|
|
24
|
-
politics?: boolean;
|
|
25
|
-
/**
|
|
26
|
-
* 地理
|
|
27
|
-
*/
|
|
28
|
-
geography?: boolean;
|
|
29
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* 选科信息
|
|
3
|
+
*/
|
|
4
|
+
export interface ISelectSubject {
|
|
5
|
+
/**
|
|
6
|
+
* 物理
|
|
7
|
+
*/
|
|
8
|
+
physics?: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* 化学
|
|
11
|
+
*/
|
|
12
|
+
chemistry?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* 生物
|
|
15
|
+
*/
|
|
16
|
+
biology?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* 历史
|
|
19
|
+
*/
|
|
20
|
+
history?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* 政治
|
|
23
|
+
*/
|
|
24
|
+
politics?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* 地理
|
|
27
|
+
*/
|
|
28
|
+
geography?: boolean;
|
|
29
|
+
}
|