File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
6
6
properties (Constant )
7
7
% CATALOG dictionary mapping error ids to error msgs
8
- Catalog = buildErrorMessageCatalog;
8
+ Catalog = buildErrorMessageCatalog() ;
9
9
end
10
10
11
11
methods (Static )
31
31
end
32
32
end
33
33
34
- function catalog = buildErrorMessageCatalog
34
+ function catalog = buildErrorMessageCatalog()
35
35
catalog = dictionary(" string" , " string" );
36
36
catalog(" llms:mustBeUnique" ) = " Values must be unique." ;
37
37
catalog(" llms:mustBeVarName" ) = " Parameter name must begin with a letter and contain not more than 'namelengthmax' characters." ;
56
56
catalog(" llms:warningJsonInstruction" ) = " When using JSON mode, you must also prompt the model to produce JSON yourself via a system or user message." ;
57
57
catalog(" llms:apiReturnedError" ) = " OpenAI API Error: {1}" ;
58
58
catalog(" llms:dimensionsMustBeSmallerThan" ) = " Dimensions must be less than or equal to {1}." ;
59
- end
59
+ end
You can’t perform that action at this time.
0 commit comments