@memberjunction/core-entities 2.51.0 → 2.53.0
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/dist/custom/AIPromptExtended.d.ts +23 -2
- package/dist/custom/AIPromptExtended.d.ts.map +1 -1
- package/dist/custom/AIPromptExtended.js +62 -4
- package/dist/custom/AIPromptExtended.js.map +1 -1
- package/dist/custom/UserViewEntity.d.ts +1 -1
- package/dist/custom/UserViewEntity.d.ts.map +1 -1
- package/dist/custom/UserViewEntity.js +2 -2
- package/dist/custom/UserViewEntity.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +265 -0
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +409 -0
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +3 -3
|
@@ -572,6 +572,12 @@ exports.ActionSchema = zod_1.z.object({
|
|
|
572
572
|
* * Display Name: Driver Class
|
|
573
573
|
* * SQL Data Type: nvarchar(255)
|
|
574
574
|
* * Description: For actions where Type='Custom', this specifies the fully qualified class name of the BaseAction sub-class that should be instantiated to handle the action execution. This provides a more reliable mechanism than relying on the Name field for class instantiation.`),
|
|
575
|
+
ParentID: zod_1.z.string().nullable().describe(`
|
|
576
|
+
* * Field Name: ParentID
|
|
577
|
+
* * Display Name: Parent ID
|
|
578
|
+
* * SQL Data Type: uniqueidentifier
|
|
579
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
580
|
+
* * Description: Optional ID of the parent action this action inherits from. Used for hierarchical action composition where child actions can specialize parent actions.`),
|
|
575
581
|
Category: zod_1.z.string().nullable().describe(`
|
|
576
582
|
* * Field Name: Category
|
|
577
583
|
* * Display Name: Category
|
|
@@ -580,6 +586,10 @@ exports.ActionSchema = zod_1.z.object({
|
|
|
580
586
|
* * Field Name: CodeApprovedByUser
|
|
581
587
|
* * Display Name: Code Approved By User
|
|
582
588
|
* * SQL Data Type: nvarchar(100)`),
|
|
589
|
+
Parent: zod_1.z.string().nullable().describe(`
|
|
590
|
+
* * Field Name: Parent
|
|
591
|
+
* * Display Name: Parent
|
|
592
|
+
* * SQL Data Type: nvarchar(425)`),
|
|
583
593
|
});
|
|
584
594
|
/**
|
|
585
595
|
* zod schema definition for the entity AI Actions
|
|
@@ -1562,6 +1572,57 @@ exports.AIPromptSchema = zod_1.z.object({
|
|
|
1562
1572
|
* * First
|
|
1563
1573
|
* * Last
|
|
1564
1574
|
* * Description: Controls message placement for User and Assistant role prompts: First (beginning of conversation) or Last (end of conversation). Not used for System role prompts which are always first`),
|
|
1575
|
+
Temperature: zod_1.z.number().nullable().describe(`
|
|
1576
|
+
* * Field Name: Temperature
|
|
1577
|
+
* * Display Name: Temperature
|
|
1578
|
+
* * SQL Data Type: decimal(3, 2)
|
|
1579
|
+
* * Description: Default temperature setting for this prompt. Controls randomness in the output. 0 = more focused and deterministic, 2 = more random and creative. Can be overridden at runtime.`),
|
|
1580
|
+
TopP: zod_1.z.number().nullable().describe(`
|
|
1581
|
+
* * Field Name: TopP
|
|
1582
|
+
* * Display Name: Top P
|
|
1583
|
+
* * SQL Data Type: decimal(3, 2)
|
|
1584
|
+
* * Description: Default TopP (nucleus sampling) for this prompt. Only consider tokens with cumulative probability up to this value. 1 = consider all tokens. Can be overridden at runtime.`),
|
|
1585
|
+
TopK: zod_1.z.number().nullable().describe(`
|
|
1586
|
+
* * Field Name: TopK
|
|
1587
|
+
* * Display Name: Top K
|
|
1588
|
+
* * SQL Data Type: int
|
|
1589
|
+
* * Description: Default TopK sampling for this prompt. Only sample from the top K tokens. Lower values reduce randomness. Can be overridden at runtime.`),
|
|
1590
|
+
MinP: zod_1.z.number().nullable().describe(`
|
|
1591
|
+
* * Field Name: MinP
|
|
1592
|
+
* * Display Name: Min P
|
|
1593
|
+
* * SQL Data Type: decimal(3, 2)
|
|
1594
|
+
* * Description: Default MinP (minimum probability) for this prompt. Tokens with probability below this threshold are filtered out. Can be overridden at runtime.`),
|
|
1595
|
+
FrequencyPenalty: zod_1.z.number().nullable().describe(`
|
|
1596
|
+
* * Field Name: FrequencyPenalty
|
|
1597
|
+
* * Display Name: Frequency Penalty
|
|
1598
|
+
* * SQL Data Type: decimal(3, 2)
|
|
1599
|
+
* * Description: Default frequency penalty for this prompt. Penalizes tokens based on their frequency in the text. Positive values decrease likelihood of repetition. Can be overridden at runtime.`),
|
|
1600
|
+
PresencePenalty: zod_1.z.number().nullable().describe(`
|
|
1601
|
+
* * Field Name: PresencePenalty
|
|
1602
|
+
* * Display Name: Presence Penalty
|
|
1603
|
+
* * SQL Data Type: decimal(3, 2)
|
|
1604
|
+
* * Description: Default presence penalty for this prompt. Penalizes tokens that have appeared in the text. Positive values increase topic diversity. Can be overridden at runtime.`),
|
|
1605
|
+
Seed: zod_1.z.number().nullable().describe(`
|
|
1606
|
+
* * Field Name: Seed
|
|
1607
|
+
* * Display Name: Seed
|
|
1608
|
+
* * SQL Data Type: int
|
|
1609
|
+
* * Description: Default random seed for this prompt. Used for deterministic generation. Same seed produces same output. Can be overridden at runtime.`),
|
|
1610
|
+
StopSequences: zod_1.z.string().nullable().describe(`
|
|
1611
|
+
* * Field Name: StopSequences
|
|
1612
|
+
* * Display Name: Stop Sequences
|
|
1613
|
+
* * SQL Data Type: nvarchar(1000)
|
|
1614
|
+
* * Description: Default stop sequences for this prompt. Comma-delimited list of sequences that will stop generation when encountered. Can be overridden at runtime.`),
|
|
1615
|
+
IncludeLogProbs: zod_1.z.boolean().nullable().describe(`
|
|
1616
|
+
* * Field Name: IncludeLogProbs
|
|
1617
|
+
* * Display Name: Include Log Probs
|
|
1618
|
+
* * SQL Data Type: bit
|
|
1619
|
+
* * Default Value: 0
|
|
1620
|
+
* * Description: Default setting for including log probabilities in the response. Can be overridden at runtime.`),
|
|
1621
|
+
TopLogProbs: zod_1.z.number().nullable().describe(`
|
|
1622
|
+
* * Field Name: TopLogProbs
|
|
1623
|
+
* * Display Name: Top Log Probs
|
|
1624
|
+
* * SQL Data Type: int
|
|
1625
|
+
* * Description: Default number of top log probabilities to include when IncludeLogProbs is true. Can be overridden at runtime.`),
|
|
1565
1626
|
Template: zod_1.z.string().describe(`
|
|
1566
1627
|
* * Field Name: Template
|
|
1567
1628
|
* * Display Name: Template
|
|
@@ -7784,6 +7845,61 @@ exports.AIPromptRunSchema = zod_1.z.object({
|
|
|
7784
7845
|
* * Display Name: Tokens Completion Rollup
|
|
7785
7846
|
* * SQL Data Type: int
|
|
7786
7847
|
* * Description: Total completion/output tokens including this execution and all child/grandchild executions. For leaf nodes (no children), this equals TokensCompletion. For parent nodes, this includes the sum of all descendant completion tokens.`),
|
|
7848
|
+
Temperature: zod_1.z.number().nullable().describe(`
|
|
7849
|
+
* * Field Name: Temperature
|
|
7850
|
+
* * Display Name: Temperature
|
|
7851
|
+
* * SQL Data Type: decimal(3, 2)
|
|
7852
|
+
* * Description: The temperature parameter used for this prompt run, controlling randomness in the output (0.0 = deterministic, 2.0 = very random)`),
|
|
7853
|
+
TopP: zod_1.z.number().nullable().describe(`
|
|
7854
|
+
* * Field Name: TopP
|
|
7855
|
+
* * Display Name: Top P
|
|
7856
|
+
* * SQL Data Type: decimal(3, 2)
|
|
7857
|
+
* * Description: Top-p (nucleus) sampling parameter used for this run. Considers tokens with cumulative probability up to this value (0-1)`),
|
|
7858
|
+
TopK: zod_1.z.number().nullable().describe(`
|
|
7859
|
+
* * Field Name: TopK
|
|
7860
|
+
* * Display Name: Top K
|
|
7861
|
+
* * SQL Data Type: int
|
|
7862
|
+
* * Description: Top-k sampling parameter used for this run. Limits sampling to the top K most likely tokens`),
|
|
7863
|
+
MinP: zod_1.z.number().nullable().describe(`
|
|
7864
|
+
* * Field Name: MinP
|
|
7865
|
+
* * Display Name: Min P
|
|
7866
|
+
* * SQL Data Type: decimal(3, 2)
|
|
7867
|
+
* * Description: Minimum probability threshold used for token sampling (0-1). Tokens below this probability are filtered out`),
|
|
7868
|
+
FrequencyPenalty: zod_1.z.number().nullable().describe(`
|
|
7869
|
+
* * Field Name: FrequencyPenalty
|
|
7870
|
+
* * Display Name: Frequency Penalty
|
|
7871
|
+
* * SQL Data Type: decimal(3, 2)
|
|
7872
|
+
* * Description: Frequency penalty parameter used (-2.0 to 2.0). Positive values reduce repetition of tokens based on their frequency in the output`),
|
|
7873
|
+
PresencePenalty: zod_1.z.number().nullable().describe(`
|
|
7874
|
+
* * Field Name: PresencePenalty
|
|
7875
|
+
* * Display Name: Presence Penalty
|
|
7876
|
+
* * SQL Data Type: decimal(3, 2)
|
|
7877
|
+
* * Description: Presence penalty parameter used (-2.0 to 2.0). Positive values encourage the model to talk about new topics`),
|
|
7878
|
+
Seed: zod_1.z.number().nullable().describe(`
|
|
7879
|
+
* * Field Name: Seed
|
|
7880
|
+
* * Display Name: Seed
|
|
7881
|
+
* * SQL Data Type: int
|
|
7882
|
+
* * Description: Random seed used for reproducible outputs. When set, the same seed with identical inputs should produce the same output`),
|
|
7883
|
+
StopSequences: zod_1.z.string().nullable().describe(`
|
|
7884
|
+
* * Field Name: StopSequences
|
|
7885
|
+
* * Display Name: Stop Sequences
|
|
7886
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
7887
|
+
* * Description: JSON array of stop sequences used. The model stops generating when any of these sequences are encountered`),
|
|
7888
|
+
ResponseFormat: zod_1.z.string().nullable().describe(`
|
|
7889
|
+
* * Field Name: ResponseFormat
|
|
7890
|
+
* * Display Name: Response Format
|
|
7891
|
+
* * SQL Data Type: nvarchar(50)
|
|
7892
|
+
* * Description: The response format requested for this run (e.g., 'JSON', 'Text', 'Markdown')`),
|
|
7893
|
+
LogProbs: zod_1.z.boolean().nullable().describe(`
|
|
7894
|
+
* * Field Name: LogProbs
|
|
7895
|
+
* * Display Name: Log Probs
|
|
7896
|
+
* * SQL Data Type: bit
|
|
7897
|
+
* * Description: Whether log probabilities were requested for this run`),
|
|
7898
|
+
TopLogProbs: zod_1.z.number().nullable().describe(`
|
|
7899
|
+
* * Field Name: TopLogProbs
|
|
7900
|
+
* * Display Name: Top Log Probs
|
|
7901
|
+
* * SQL Data Type: int
|
|
7902
|
+
* * Description: Number of top log probabilities requested per token (if LogProbs is true)`),
|
|
7787
7903
|
Prompt: zod_1.z.string().describe(`
|
|
7788
7904
|
* * Field Name: Prompt
|
|
7789
7905
|
* * Display Name: Prompt
|
|
@@ -10401,6 +10517,12 @@ exports.TemplateParamSchema = zod_1.z.object({
|
|
|
10401
10517
|
* * Display Name: Order By
|
|
10402
10518
|
* * SQL Data Type: nvarchar(MAX)
|
|
10403
10519
|
* * Description: This field is used only when the Type of the TemplateParam table is "Entity". It is an optional field used to specify the sorting order for the related entity data that is used in the template for the Entity specified.`),
|
|
10520
|
+
TemplateContentID: zod_1.z.string().nullable().describe(`
|
|
10521
|
+
* * Field Name: TemplateContentID
|
|
10522
|
+
* * Display Name: Template Content ID
|
|
10523
|
+
* * SQL Data Type: uniqueidentifier
|
|
10524
|
+
* * Related Entity/Foreign Key: Template Contents (vwTemplateContents.ID)
|
|
10525
|
+
* * Description: Optional reference to a specific template content. When NULL, this parameter applies to all content items within the template. When set, this parameter applies only to the specified template content.`),
|
|
10404
10526
|
Template: zod_1.z.string().describe(`
|
|
10405
10527
|
* * Field Name: Template
|
|
10406
10528
|
* * Display Name: Template
|
|
@@ -12953,6 +13075,19 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
12953
13075
|
this.Set('DriverClass', value);
|
|
12954
13076
|
}
|
|
12955
13077
|
/**
|
|
13078
|
+
* * Field Name: ParentID
|
|
13079
|
+
* * Display Name: Parent ID
|
|
13080
|
+
* * SQL Data Type: uniqueidentifier
|
|
13081
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
13082
|
+
* * Description: Optional ID of the parent action this action inherits from. Used for hierarchical action composition where child actions can specialize parent actions.
|
|
13083
|
+
*/
|
|
13084
|
+
get ParentID() {
|
|
13085
|
+
return this.Get('ParentID');
|
|
13086
|
+
}
|
|
13087
|
+
set ParentID(value) {
|
|
13088
|
+
this.Set('ParentID', value);
|
|
13089
|
+
}
|
|
13090
|
+
/**
|
|
12956
13091
|
* * Field Name: Category
|
|
12957
13092
|
* * Display Name: Category
|
|
12958
13093
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -12968,6 +13103,14 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
12968
13103
|
get CodeApprovedByUser() {
|
|
12969
13104
|
return this.Get('CodeApprovedByUser');
|
|
12970
13105
|
}
|
|
13106
|
+
/**
|
|
13107
|
+
* * Field Name: Parent
|
|
13108
|
+
* * Display Name: Parent
|
|
13109
|
+
* * SQL Data Type: nvarchar(425)
|
|
13110
|
+
*/
|
|
13111
|
+
get Parent() {
|
|
13112
|
+
return this.Get('Parent');
|
|
13113
|
+
}
|
|
12971
13114
|
};
|
|
12972
13115
|
exports.ActionEntity = ActionEntity;
|
|
12973
13116
|
exports.ActionEntity = ActionEntity = __decorate([
|
|
@@ -15530,6 +15673,127 @@ let AIPromptEntity = class AIPromptEntity extends core_1.BaseEntity {
|
|
|
15530
15673
|
this.Set('PromptPosition', value);
|
|
15531
15674
|
}
|
|
15532
15675
|
/**
|
|
15676
|
+
* * Field Name: Temperature
|
|
15677
|
+
* * Display Name: Temperature
|
|
15678
|
+
* * SQL Data Type: decimal(3, 2)
|
|
15679
|
+
* * Description: Default temperature setting for this prompt. Controls randomness in the output. 0 = more focused and deterministic, 2 = more random and creative. Can be overridden at runtime.
|
|
15680
|
+
*/
|
|
15681
|
+
get Temperature() {
|
|
15682
|
+
return this.Get('Temperature');
|
|
15683
|
+
}
|
|
15684
|
+
set Temperature(value) {
|
|
15685
|
+
this.Set('Temperature', value);
|
|
15686
|
+
}
|
|
15687
|
+
/**
|
|
15688
|
+
* * Field Name: TopP
|
|
15689
|
+
* * Display Name: Top P
|
|
15690
|
+
* * SQL Data Type: decimal(3, 2)
|
|
15691
|
+
* * Description: Default TopP (nucleus sampling) for this prompt. Only consider tokens with cumulative probability up to this value. 1 = consider all tokens. Can be overridden at runtime.
|
|
15692
|
+
*/
|
|
15693
|
+
get TopP() {
|
|
15694
|
+
return this.Get('TopP');
|
|
15695
|
+
}
|
|
15696
|
+
set TopP(value) {
|
|
15697
|
+
this.Set('TopP', value);
|
|
15698
|
+
}
|
|
15699
|
+
/**
|
|
15700
|
+
* * Field Name: TopK
|
|
15701
|
+
* * Display Name: Top K
|
|
15702
|
+
* * SQL Data Type: int
|
|
15703
|
+
* * Description: Default TopK sampling for this prompt. Only sample from the top K tokens. Lower values reduce randomness. Can be overridden at runtime.
|
|
15704
|
+
*/
|
|
15705
|
+
get TopK() {
|
|
15706
|
+
return this.Get('TopK');
|
|
15707
|
+
}
|
|
15708
|
+
set TopK(value) {
|
|
15709
|
+
this.Set('TopK', value);
|
|
15710
|
+
}
|
|
15711
|
+
/**
|
|
15712
|
+
* * Field Name: MinP
|
|
15713
|
+
* * Display Name: Min P
|
|
15714
|
+
* * SQL Data Type: decimal(3, 2)
|
|
15715
|
+
* * Description: Default MinP (minimum probability) for this prompt. Tokens with probability below this threshold are filtered out. Can be overridden at runtime.
|
|
15716
|
+
*/
|
|
15717
|
+
get MinP() {
|
|
15718
|
+
return this.Get('MinP');
|
|
15719
|
+
}
|
|
15720
|
+
set MinP(value) {
|
|
15721
|
+
this.Set('MinP', value);
|
|
15722
|
+
}
|
|
15723
|
+
/**
|
|
15724
|
+
* * Field Name: FrequencyPenalty
|
|
15725
|
+
* * Display Name: Frequency Penalty
|
|
15726
|
+
* * SQL Data Type: decimal(3, 2)
|
|
15727
|
+
* * Description: Default frequency penalty for this prompt. Penalizes tokens based on their frequency in the text. Positive values decrease likelihood of repetition. Can be overridden at runtime.
|
|
15728
|
+
*/
|
|
15729
|
+
get FrequencyPenalty() {
|
|
15730
|
+
return this.Get('FrequencyPenalty');
|
|
15731
|
+
}
|
|
15732
|
+
set FrequencyPenalty(value) {
|
|
15733
|
+
this.Set('FrequencyPenalty', value);
|
|
15734
|
+
}
|
|
15735
|
+
/**
|
|
15736
|
+
* * Field Name: PresencePenalty
|
|
15737
|
+
* * Display Name: Presence Penalty
|
|
15738
|
+
* * SQL Data Type: decimal(3, 2)
|
|
15739
|
+
* * Description: Default presence penalty for this prompt. Penalizes tokens that have appeared in the text. Positive values increase topic diversity. Can be overridden at runtime.
|
|
15740
|
+
*/
|
|
15741
|
+
get PresencePenalty() {
|
|
15742
|
+
return this.Get('PresencePenalty');
|
|
15743
|
+
}
|
|
15744
|
+
set PresencePenalty(value) {
|
|
15745
|
+
this.Set('PresencePenalty', value);
|
|
15746
|
+
}
|
|
15747
|
+
/**
|
|
15748
|
+
* * Field Name: Seed
|
|
15749
|
+
* * Display Name: Seed
|
|
15750
|
+
* * SQL Data Type: int
|
|
15751
|
+
* * Description: Default random seed for this prompt. Used for deterministic generation. Same seed produces same output. Can be overridden at runtime.
|
|
15752
|
+
*/
|
|
15753
|
+
get Seed() {
|
|
15754
|
+
return this.Get('Seed');
|
|
15755
|
+
}
|
|
15756
|
+
set Seed(value) {
|
|
15757
|
+
this.Set('Seed', value);
|
|
15758
|
+
}
|
|
15759
|
+
/**
|
|
15760
|
+
* * Field Name: StopSequences
|
|
15761
|
+
* * Display Name: Stop Sequences
|
|
15762
|
+
* * SQL Data Type: nvarchar(1000)
|
|
15763
|
+
* * Description: Default stop sequences for this prompt. Comma-delimited list of sequences that will stop generation when encountered. Can be overridden at runtime.
|
|
15764
|
+
*/
|
|
15765
|
+
get StopSequences() {
|
|
15766
|
+
return this.Get('StopSequences');
|
|
15767
|
+
}
|
|
15768
|
+
set StopSequences(value) {
|
|
15769
|
+
this.Set('StopSequences', value);
|
|
15770
|
+
}
|
|
15771
|
+
/**
|
|
15772
|
+
* * Field Name: IncludeLogProbs
|
|
15773
|
+
* * Display Name: Include Log Probs
|
|
15774
|
+
* * SQL Data Type: bit
|
|
15775
|
+
* * Default Value: 0
|
|
15776
|
+
* * Description: Default setting for including log probabilities in the response. Can be overridden at runtime.
|
|
15777
|
+
*/
|
|
15778
|
+
get IncludeLogProbs() {
|
|
15779
|
+
return this.Get('IncludeLogProbs');
|
|
15780
|
+
}
|
|
15781
|
+
set IncludeLogProbs(value) {
|
|
15782
|
+
this.Set('IncludeLogProbs', value);
|
|
15783
|
+
}
|
|
15784
|
+
/**
|
|
15785
|
+
* * Field Name: TopLogProbs
|
|
15786
|
+
* * Display Name: Top Log Probs
|
|
15787
|
+
* * SQL Data Type: int
|
|
15788
|
+
* * Description: Default number of top log probabilities to include when IncludeLogProbs is true. Can be overridden at runtime.
|
|
15789
|
+
*/
|
|
15790
|
+
get TopLogProbs() {
|
|
15791
|
+
return this.Get('TopLogProbs');
|
|
15792
|
+
}
|
|
15793
|
+
set TopLogProbs(value) {
|
|
15794
|
+
this.Set('TopLogProbs', value);
|
|
15795
|
+
}
|
|
15796
|
+
/**
|
|
15533
15797
|
* * Field Name: Template
|
|
15534
15798
|
* * Display Name: Template
|
|
15535
15799
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -31825,6 +32089,138 @@ let AIPromptRunEntity = class AIPromptRunEntity extends core_1.BaseEntity {
|
|
|
31825
32089
|
this.Set('TokensCompletionRollup', value);
|
|
31826
32090
|
}
|
|
31827
32091
|
/**
|
|
32092
|
+
* * Field Name: Temperature
|
|
32093
|
+
* * Display Name: Temperature
|
|
32094
|
+
* * SQL Data Type: decimal(3, 2)
|
|
32095
|
+
* * Description: The temperature parameter used for this prompt run, controlling randomness in the output (0.0 = deterministic, 2.0 = very random)
|
|
32096
|
+
*/
|
|
32097
|
+
get Temperature() {
|
|
32098
|
+
return this.Get('Temperature');
|
|
32099
|
+
}
|
|
32100
|
+
set Temperature(value) {
|
|
32101
|
+
this.Set('Temperature', value);
|
|
32102
|
+
}
|
|
32103
|
+
/**
|
|
32104
|
+
* * Field Name: TopP
|
|
32105
|
+
* * Display Name: Top P
|
|
32106
|
+
* * SQL Data Type: decimal(3, 2)
|
|
32107
|
+
* * Description: Top-p (nucleus) sampling parameter used for this run. Considers tokens with cumulative probability up to this value (0-1)
|
|
32108
|
+
*/
|
|
32109
|
+
get TopP() {
|
|
32110
|
+
return this.Get('TopP');
|
|
32111
|
+
}
|
|
32112
|
+
set TopP(value) {
|
|
32113
|
+
this.Set('TopP', value);
|
|
32114
|
+
}
|
|
32115
|
+
/**
|
|
32116
|
+
* * Field Name: TopK
|
|
32117
|
+
* * Display Name: Top K
|
|
32118
|
+
* * SQL Data Type: int
|
|
32119
|
+
* * Description: Top-k sampling parameter used for this run. Limits sampling to the top K most likely tokens
|
|
32120
|
+
*/
|
|
32121
|
+
get TopK() {
|
|
32122
|
+
return this.Get('TopK');
|
|
32123
|
+
}
|
|
32124
|
+
set TopK(value) {
|
|
32125
|
+
this.Set('TopK', value);
|
|
32126
|
+
}
|
|
32127
|
+
/**
|
|
32128
|
+
* * Field Name: MinP
|
|
32129
|
+
* * Display Name: Min P
|
|
32130
|
+
* * SQL Data Type: decimal(3, 2)
|
|
32131
|
+
* * Description: Minimum probability threshold used for token sampling (0-1). Tokens below this probability are filtered out
|
|
32132
|
+
*/
|
|
32133
|
+
get MinP() {
|
|
32134
|
+
return this.Get('MinP');
|
|
32135
|
+
}
|
|
32136
|
+
set MinP(value) {
|
|
32137
|
+
this.Set('MinP', value);
|
|
32138
|
+
}
|
|
32139
|
+
/**
|
|
32140
|
+
* * Field Name: FrequencyPenalty
|
|
32141
|
+
* * Display Name: Frequency Penalty
|
|
32142
|
+
* * SQL Data Type: decimal(3, 2)
|
|
32143
|
+
* * Description: Frequency penalty parameter used (-2.0 to 2.0). Positive values reduce repetition of tokens based on their frequency in the output
|
|
32144
|
+
*/
|
|
32145
|
+
get FrequencyPenalty() {
|
|
32146
|
+
return this.Get('FrequencyPenalty');
|
|
32147
|
+
}
|
|
32148
|
+
set FrequencyPenalty(value) {
|
|
32149
|
+
this.Set('FrequencyPenalty', value);
|
|
32150
|
+
}
|
|
32151
|
+
/**
|
|
32152
|
+
* * Field Name: PresencePenalty
|
|
32153
|
+
* * Display Name: Presence Penalty
|
|
32154
|
+
* * SQL Data Type: decimal(3, 2)
|
|
32155
|
+
* * Description: Presence penalty parameter used (-2.0 to 2.0). Positive values encourage the model to talk about new topics
|
|
32156
|
+
*/
|
|
32157
|
+
get PresencePenalty() {
|
|
32158
|
+
return this.Get('PresencePenalty');
|
|
32159
|
+
}
|
|
32160
|
+
set PresencePenalty(value) {
|
|
32161
|
+
this.Set('PresencePenalty', value);
|
|
32162
|
+
}
|
|
32163
|
+
/**
|
|
32164
|
+
* * Field Name: Seed
|
|
32165
|
+
* * Display Name: Seed
|
|
32166
|
+
* * SQL Data Type: int
|
|
32167
|
+
* * Description: Random seed used for reproducible outputs. When set, the same seed with identical inputs should produce the same output
|
|
32168
|
+
*/
|
|
32169
|
+
get Seed() {
|
|
32170
|
+
return this.Get('Seed');
|
|
32171
|
+
}
|
|
32172
|
+
set Seed(value) {
|
|
32173
|
+
this.Set('Seed', value);
|
|
32174
|
+
}
|
|
32175
|
+
/**
|
|
32176
|
+
* * Field Name: StopSequences
|
|
32177
|
+
* * Display Name: Stop Sequences
|
|
32178
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
32179
|
+
* * Description: JSON array of stop sequences used. The model stops generating when any of these sequences are encountered
|
|
32180
|
+
*/
|
|
32181
|
+
get StopSequences() {
|
|
32182
|
+
return this.Get('StopSequences');
|
|
32183
|
+
}
|
|
32184
|
+
set StopSequences(value) {
|
|
32185
|
+
this.Set('StopSequences', value);
|
|
32186
|
+
}
|
|
32187
|
+
/**
|
|
32188
|
+
* * Field Name: ResponseFormat
|
|
32189
|
+
* * Display Name: Response Format
|
|
32190
|
+
* * SQL Data Type: nvarchar(50)
|
|
32191
|
+
* * Description: The response format requested for this run (e.g., 'JSON', 'Text', 'Markdown')
|
|
32192
|
+
*/
|
|
32193
|
+
get ResponseFormat() {
|
|
32194
|
+
return this.Get('ResponseFormat');
|
|
32195
|
+
}
|
|
32196
|
+
set ResponseFormat(value) {
|
|
32197
|
+
this.Set('ResponseFormat', value);
|
|
32198
|
+
}
|
|
32199
|
+
/**
|
|
32200
|
+
* * Field Name: LogProbs
|
|
32201
|
+
* * Display Name: Log Probs
|
|
32202
|
+
* * SQL Data Type: bit
|
|
32203
|
+
* * Description: Whether log probabilities were requested for this run
|
|
32204
|
+
*/
|
|
32205
|
+
get LogProbs() {
|
|
32206
|
+
return this.Get('LogProbs');
|
|
32207
|
+
}
|
|
32208
|
+
set LogProbs(value) {
|
|
32209
|
+
this.Set('LogProbs', value);
|
|
32210
|
+
}
|
|
32211
|
+
/**
|
|
32212
|
+
* * Field Name: TopLogProbs
|
|
32213
|
+
* * Display Name: Top Log Probs
|
|
32214
|
+
* * SQL Data Type: int
|
|
32215
|
+
* * Description: Number of top log probabilities requested per token (if LogProbs is true)
|
|
32216
|
+
*/
|
|
32217
|
+
get TopLogProbs() {
|
|
32218
|
+
return this.Get('TopLogProbs');
|
|
32219
|
+
}
|
|
32220
|
+
set TopLogProbs(value) {
|
|
32221
|
+
this.Set('TopLogProbs', value);
|
|
32222
|
+
}
|
|
32223
|
+
/**
|
|
31828
32224
|
* * Field Name: Prompt
|
|
31829
32225
|
* * Display Name: Prompt
|
|
31830
32226
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -39037,6 +39433,19 @@ let TemplateParamEntity = class TemplateParamEntity extends core_1.BaseEntity {
|
|
|
39037
39433
|
this.Set('OrderBy', value);
|
|
39038
39434
|
}
|
|
39039
39435
|
/**
|
|
39436
|
+
* * Field Name: TemplateContentID
|
|
39437
|
+
* * Display Name: Template Content ID
|
|
39438
|
+
* * SQL Data Type: uniqueidentifier
|
|
39439
|
+
* * Related Entity/Foreign Key: Template Contents (vwTemplateContents.ID)
|
|
39440
|
+
* * Description: Optional reference to a specific template content. When NULL, this parameter applies to all content items within the template. When set, this parameter applies only to the specified template content.
|
|
39441
|
+
*/
|
|
39442
|
+
get TemplateContentID() {
|
|
39443
|
+
return this.Get('TemplateContentID');
|
|
39444
|
+
}
|
|
39445
|
+
set TemplateContentID(value) {
|
|
39446
|
+
this.Set('TemplateContentID', value);
|
|
39447
|
+
}
|
|
39448
|
+
/**
|
|
39040
39449
|
* * Field Name: Template
|
|
39041
39450
|
* * Display Name: Template
|
|
39042
39451
|
* * SQL Data Type: nvarchar(255)
|