@cellaware/utils 9.0.7 → 9.0.9
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/chatwms/bi-studio.d.ts +3 -1
- package/dist/llm/cost.js +2 -2
- package/dist/llm/model.d.ts +1 -1
- package/package.json +1 -1
|
@@ -82,7 +82,9 @@ export interface BIDataSourceView {
|
|
|
82
82
|
export interface BIDataSourceColumnRelationship {
|
|
83
83
|
tableName: string;
|
|
84
84
|
columnName: string;
|
|
85
|
-
type: 'many-to-one' | 'one-to-one' | 'many-to-many';
|
|
85
|
+
type: 'many-to-one' | 'one-to-one' | 'many-to-many' | 'one-to-many';
|
|
86
|
+
/** Default is `inner`. */
|
|
87
|
+
join?: 'inner' | 'left' | 'right' | 'full';
|
|
86
88
|
}
|
|
87
89
|
export interface BIDataSourceColumnCalendar {
|
|
88
90
|
/** https://www.ag-grid.com/studio/angular/calendars/#fragment-reference */
|
package/dist/llm/cost.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
// Important: prices increase with *long context* (>272K tokens).
|
|
3
3
|
const MODEL_COSTS = {
|
|
4
4
|
'gpt-5.6-sol': { inputCost: 5.00, outputCost: 30.00 },
|
|
5
|
-
'gpt-5.6-terra': { inputCost: 2.
|
|
6
|
-
'gpt-5.6-luna': { inputCost:
|
|
5
|
+
'gpt-5.6-terra': { inputCost: 2.00, outputCost: 12.00 },
|
|
6
|
+
'gpt-5.6-luna': { inputCost: 0.20, outputCost: 1.20 },
|
|
7
7
|
'gpt-5.5': { inputCost: 5.00, outputCost: 30.00 },
|
|
8
8
|
'gpt-5.5-pro': { inputCost: 30.00, outputCost: 180.00 },
|
|
9
9
|
'gpt-5.4': { inputCost: 2.50, outputCost: 15.00 },
|
package/dist/llm/model.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type ModelName = 'gpt-5.6-sol' | 'gpt-5.6-terra' | 'gpt-5.6-luna' | 'gpt-5.5' | 'gpt-5.5-pro' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'gpt-5.4-pro' | 'gpt-5.3-chat-latest' | 'gpt-5.3-codex' | 'gpt-5.2-pro' | 'gpt-5.2-codex' | 'gpt-5.2-chat-latest' | 'gpt-5.2' | 'gpt-5.1' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-4o' | 'gpt-4o-mini' | 'o1' | 'o1-mini' | 'o3' | 'o3-mini' | 'o4-mini';
|
|
2
|
-
export type ReasoningEffort = '
|
|
2
|
+
export type ReasoningEffort = 'none' | 'low' | 'medium' | 'high' | 'xhigh' | 'max';
|
|
3
3
|
export type Verbosity = 'low' | 'medium' | 'high';
|
|
4
4
|
export interface OpenAIModelOptions {
|
|
5
5
|
reasoning_effort?: ReasoningEffort;
|