File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
src/Cnblogs.DashScope.Core Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 66public class BatchGetEmbeddingsParameters : IBatchGetEmbeddingsParameters
77{
88 /// <summary>
9- /// Text type of input. Use <see cref="TextTypes"/> to get available options. Defaults to 'document'.
9+ /// Text type of input(ignored by v3) . Use <see cref="TextTypes"/> to get available options. Defaults to 'document'.
1010 /// </summary>
1111 public string ? TextType { get ; set ; }
12+
13+ /// <inheritdoc />
14+ public int ? Dimension { get ; set ; }
15+
16+ /// <inheritdoc />
17+ public string ? OutputType { get ; set ; }
1218}
Original file line number Diff line number Diff line change @@ -7,4 +7,10 @@ public class TextEmbeddingParameters : ITextEmbeddingParameters
77{
88 /// <inheritdoc />
99 public string ? TextType { get ; set ; }
10+
11+ /// <inheritdoc />
12+ public int ? Dimension { get ; set ; }
13+
14+ /// <inheritdoc />
15+ public string ? OutputType { get ; set ; }
1016}
You can’t perform that action at this time.
0 commit comments