Backporting types from v3 to support updating pro submodule.
This commit is contained in:
parent
6bd44d753f
commit
b94498e583
|
@ -17,7 +17,7 @@ import SchemaBuilder = Knex.SchemaBuilder
|
|||
import CreateTableBuilder = Knex.CreateTableBuilder
|
||||
|
||||
function isIgnoredType(type: FieldType) {
|
||||
const ignored = [FieldType.LINK, FieldType.FORMULA]
|
||||
const ignored = [FieldType.LINK, FieldType.FORMULA, FieldType.AI]
|
||||
return ignored.indexOf(type) !== -1
|
||||
}
|
||||
|
||||
|
@ -144,6 +144,9 @@ function generateSchema(
|
|||
case FieldType.FORMULA:
|
||||
// This is allowed, but nothing to do on the external datasource
|
||||
break
|
||||
case FieldType.AI:
|
||||
// This is allowed, but nothing to do on the external datasource
|
||||
break
|
||||
case FieldType.ATTACHMENTS:
|
||||
case FieldType.ATTACHMENT_SINGLE:
|
||||
case FieldType.SIGNATURE_SINGLE:
|
||||
|
|
|
@ -8,6 +8,7 @@ const allowDisplayColumnByType: Record<FieldType, boolean> = {
|
|||
[FieldType.NUMBER]: true,
|
||||
[FieldType.DATETIME]: true,
|
||||
[FieldType.FORMULA]: true,
|
||||
[FieldType.AI]: true,
|
||||
[FieldType.AUTO]: true,
|
||||
[FieldType.INTERNAL]: true,
|
||||
[FieldType.BARCODEQR]: true,
|
||||
|
@ -38,6 +39,7 @@ const allowSortColumnByType: Record<FieldType, boolean> = {
|
|||
[FieldType.JSON]: true,
|
||||
|
||||
[FieldType.FORMULA]: false,
|
||||
[FieldType.AI]: false,
|
||||
[FieldType.ATTACHMENTS]: false,
|
||||
[FieldType.ATTACHMENT_SINGLE]: false,
|
||||
[FieldType.SIGNATURE_SINGLE]: false,
|
||||
|
@ -62,6 +64,7 @@ const allowDefaultColumnByType: Record<FieldType, boolean> = {
|
|||
[FieldType.BIGINT]: false,
|
||||
[FieldType.BOOLEAN]: false,
|
||||
[FieldType.FORMULA]: false,
|
||||
[FieldType.AI]: false,
|
||||
[FieldType.ATTACHMENTS]: false,
|
||||
[FieldType.ATTACHMENT_SINGLE]: false,
|
||||
[FieldType.SIGNATURE_SINGLE]: false,
|
||||
|
|
|
@ -76,6 +76,13 @@ export enum FieldType {
|
|||
* that is part of the initial formula definition, the formula will be live evaluated in the browser.
|
||||
*/
|
||||
AUTO = "auto",
|
||||
/**
|
||||
* A complex type, called an AI column within Budibase. This type is only supported against internal tables
|
||||
* and calculates the output based on a chosen operation (summarise text, translation etc) which passes to
|
||||
* the configured Budibase Large Language Model to retrieve the output and write it back into the row.
|
||||
* AI fields function in a similar fashion to static formulas, and possess many of the same characteristics.
|
||||
*/
|
||||
AI = "ai",
|
||||
/**
|
||||
* a JSON type, called JSON within Budibase. This type allows any arbitrary JSON to be input to this column
|
||||
* type, which will be represented as a JSON object in the row. This type depends on a schema being
|
||||
|
|
|
@ -30,6 +30,7 @@ export enum JsonFieldSubType {
|
|||
export enum FormulaType {
|
||||
STATIC = "static",
|
||||
DYNAMIC = "dynamic",
|
||||
AI = "ai",
|
||||
}
|
||||
|
||||
export enum BBReferenceFieldSubType {
|
||||
|
|
|
@ -9,6 +9,7 @@ import {
|
|||
JsonFieldSubType,
|
||||
RelationshipType,
|
||||
} from "./constants"
|
||||
import { AIOperationEnum } from "../../../sdk/ai"
|
||||
|
||||
export interface UIFieldMetadata {
|
||||
order?: number
|
||||
|
@ -116,6 +117,16 @@ export interface FormulaFieldMetadata extends BaseFieldSchema {
|
|||
formulaType?: FormulaType
|
||||
}
|
||||
|
||||
export interface AIFieldMetadata extends BaseFieldSchema {
|
||||
type: FieldType.AI
|
||||
operation: AIOperationEnum
|
||||
columns?: string[]
|
||||
column?: string
|
||||
categories?: string[]
|
||||
prompt?: string
|
||||
language?: string
|
||||
}
|
||||
|
||||
export interface BBReferenceFieldMetadata
|
||||
extends Omit<BaseFieldSchema, "subtype"> {
|
||||
type: FieldType.BB_REFERENCE
|
||||
|
@ -194,6 +205,7 @@ interface OtherFieldMetadata extends BaseFieldSchema {
|
|||
| FieldType.LINK
|
||||
| FieldType.AUTO
|
||||
| FieldType.FORMULA
|
||||
| FieldType.AI
|
||||
| FieldType.NUMBER
|
||||
| FieldType.LONGFORM
|
||||
| FieldType.BB_REFERENCE
|
||||
|
@ -211,6 +223,7 @@ export type FieldSchema =
|
|||
| RelationshipFieldMetadata
|
||||
| AutoColumnFieldMetadata
|
||||
| FormulaFieldMetadata
|
||||
| AIFieldMetadata
|
||||
| NumberFieldMetadata
|
||||
| LongFormFieldMetadata
|
||||
| StringFieldMetadata
|
||||
|
|
|
@ -0,0 +1,91 @@
|
|||
export enum AIOperationEnum {
|
||||
SUMMARISE_TEXT = "SUMMARISE_TEXT",
|
||||
CLEAN_DATA = "CLEAN_DATA",
|
||||
TRANSLATE = "TRANSLATE",
|
||||
CATEGORISE_TEXT = "CATEGORISE_TEXT",
|
||||
SENTIMENT_ANALYSIS = "SENTIMENT_ANALYSIS",
|
||||
PROMPT = "PROMPT",
|
||||
SEARCH_WEB = "SEARCH_WEB",
|
||||
}
|
||||
|
||||
export enum OperationFieldTypeEnum {
|
||||
MULTI_COLUMN = "columns",
|
||||
COLUMN = "column",
|
||||
BINDABLE_TEXT = "prompt",
|
||||
}
|
||||
|
||||
export type OperationFieldsType = {
|
||||
[AIOperationEnum.SUMMARISE_TEXT]: {
|
||||
columns: OperationFieldTypeEnum.MULTI_COLUMN
|
||||
}
|
||||
[AIOperationEnum.CLEAN_DATA]: {
|
||||
column: OperationFieldTypeEnum.COLUMN
|
||||
}
|
||||
[AIOperationEnum.TRANSLATE]: {
|
||||
column: OperationFieldTypeEnum.COLUMN
|
||||
language: OperationFieldTypeEnum.BINDABLE_TEXT
|
||||
}
|
||||
[AIOperationEnum.CATEGORISE_TEXT]: {
|
||||
columns: OperationFieldTypeEnum.MULTI_COLUMN
|
||||
categories: OperationFieldTypeEnum.BINDABLE_TEXT
|
||||
}
|
||||
[AIOperationEnum.SENTIMENT_ANALYSIS]: {
|
||||
column: OperationFieldTypeEnum.COLUMN
|
||||
}
|
||||
[AIOperationEnum.PROMPT]: {
|
||||
prompt: OperationFieldTypeEnum.BINDABLE_TEXT
|
||||
}
|
||||
[AIOperationEnum.SEARCH_WEB]: {
|
||||
columns: OperationFieldTypeEnum.MULTI_COLUMN
|
||||
}
|
||||
}
|
||||
|
||||
type BaseSchema = {
|
||||
operation: AIOperationEnum
|
||||
}
|
||||
|
||||
type SummariseTextSchema = BaseSchema & {
|
||||
operation: AIOperationEnum.SUMMARISE_TEXT
|
||||
columns: string[]
|
||||
}
|
||||
|
||||
type CleanDataSchema = BaseSchema & {
|
||||
operation: AIOperationEnum.CLEAN_DATA
|
||||
column: string
|
||||
}
|
||||
|
||||
type TranslateSchema = BaseSchema & {
|
||||
operation: AIOperationEnum.TRANSLATE
|
||||
column: string
|
||||
language: string
|
||||
}
|
||||
|
||||
type CategoriseTextSchema = BaseSchema & {
|
||||
operation: AIOperationEnum.CATEGORISE_TEXT
|
||||
columns: string[]
|
||||
categories: string[]
|
||||
}
|
||||
|
||||
type SentimentAnalysisSchema = BaseSchema & {
|
||||
operation: AIOperationEnum.SENTIMENT_ANALYSIS
|
||||
column: string
|
||||
}
|
||||
|
||||
type PromptSchema = BaseSchema & {
|
||||
operation: AIOperationEnum.PROMPT
|
||||
prompt: string
|
||||
}
|
||||
|
||||
type SearchWebSchema = BaseSchema & {
|
||||
operation: AIOperationEnum.SEARCH_WEB
|
||||
columns: string[]
|
||||
}
|
||||
|
||||
export type AIColumnSchema =
|
||||
| SummariseTextSchema
|
||||
| CleanDataSchema
|
||||
| TranslateSchema
|
||||
| CategoriseTextSchema
|
||||
| SentimentAnalysisSchema
|
||||
| PromptSchema
|
||||
| SearchWebSchema
|
|
@ -1,3 +1,4 @@
|
|||
export * from "./ai"
|
||||
export * from "./automations"
|
||||
export * from "./hosting"
|
||||
export * from "./context"
|
||||
|
|
Loading…
Reference in New Issue