Table of Contents

Projects.AI.Models Entity

Namespace: Projects.AI

Language models, which will be enriched with domain specific knowledge. Entity: Llm_Models (Introduced in version 24.1.1.92)

Default Visualization

Default Display Text Format:
{Name:T}
Default Search Members:
Name
Name Data Member:
Name
Category: Definitions
Show in UI: ShownByDefault

Aggregate

An aggregate is a cluster of domain objects that can be treated as a single unit.

Aggregate Tree

Attributes

Name Type Description
AutoUpdateToLatestBuild boolean Indicates whether to automatically update Conversation Build to the latest successful build. Required Default(true)
BuildAssistant boolean Specifies whether the model should produce an AI assistant. Required Default(true) Introduced in version 24.1.5.31
DisplayText string Uses the repository DisplayTextFormat to build the display text from the attributes and references of current object.
Id guid
IsDefault boolean Specifies whether this is the default model which will handle AI prompts. Required Default(false) Filter(eq) Introduced in version 24.1.3.23
Name MultilanguageString (256) Multi-language name of the model. Required Filter(like)
Notes string (max) nullable Notes for this Model.
ObjectVersion int32 The latest version of the extensible data object for the aggregate root for the time the object is loaded from the database. Can be used for optimistic locking.
SystemMessage string (max) nullable Provides system message to the chat bot. The system message sets the mood and is the primary instruction for the bot. Introduced in version 24.1.3.7

References

Name Type Description
ConversationalCompilation Compilations (nullable) The compilation which should be used when conversing with the model. Usually, updated to the latest successful compilation. null means the model cannot be used for conversations. Filter(multi eq) Introduced in version 24.1.2.11
Parent Models (nullable) A model, which contains the current model. When building a parent model, it will consume all QAs from all child models. Filter(multi eq)
Provider Providers (nullable) The provider and base model, which should be fine-tuned with the domain specific knowledge. null means that this model cannot by compiled and can only be used as a child for another model. Filter(multi eq) Introduced in version 24.1.3.3
VirtualUser Users (nullable) The virtual user, which will answer in chats on behalf of the model. null means the model cannot be used in chat. Each model should have different virtual user. Filter(multi eq)

Child Collections

Name Type Description
QAs ModelQAs List of ModelQA(Projects.AI.ModelQAs.md) child objects, based on the Projects.AI.ModelQA.Model(Projects.AI.ModelQAs.md#model) back reference

Attribute Details

AutoUpdateToLatestBuild

Indicates whether to automatically update Conversation Build to the latest successful build. Required Default(true)

Type: boolean
Category: System
Supported Filters: NotFilterable
Supports Order By: False
Default Value: True
Show in UI: ShownByDefault

BuildAssistant

Specifies whether the model should produce an AI assistant. Required Default(true) Introduced in version 24.1.5.31

Type: boolean
Category: System
Supported Filters: NotFilterable
Supports Order By: False
Default Value: True
Show in UI: ShownByDefault

DisplayText

Uses the repository DisplayTextFormat to build the display text from the attributes and references of current object.

Type: string
Category: Calculated Attributes
Supported Filters: NotFilterable
Supports Order By: ****
Show in UI: HiddenByDefault

Id

Type: guid
Indexed: True
Category: System
Supported Filters: Equals, EqualsIn
Default Value: NewGuid
Show in UI: CannotBeShown

IsDefault

Specifies whether this is the default model which will handle AI prompts. Required Default(false) Filter(eq) Introduced in version 24.1.3.23

Type: boolean
Indexed: True
Category: System
Supported Filters: Equals
Supports Order By: False
Default Value: False
Show in UI: ShownByDefault

Name

Multi-language name of the model. Required Filter(like)

Type: MultilanguageString (256)
Category: System
Supported Filters: Like
Supports Order By: False
Show in UI: ShownByDefault

Notes

Notes for this Model.

Type: string (max) nullable
Category: System
Supported Filters: NotFilterable
Supports Order By: False
Maximum Length: 2147483647
Show in UI: ShownByDefault

ObjectVersion

The latest version of the extensible data object for the aggregate root for the time the object is loaded from the database. Can be used for optimistic locking.

Type: int32
Category: Extensible Data Object
Supported Filters: NotFilterable
Supports Order By: ****
Show in UI: HiddenByDefault

SystemMessage

Provides system message to the chat bot. The system message sets the mood and is the primary instruction for the bot. Introduced in version 24.1.3.7

Type: string (max) nullable
Category: System
Supported Filters: NotFilterable
Supports Order By: False
Maximum Length: 2147483647
Show in UI: ShownByDefault

Reference Details

ConversationalCompilation

The compilation which should be used when conversing with the model. Usually, updated to the latest successful compilation. null means the model cannot be used for conversations. Filter(multi eq) Introduced in version 24.1.2.11

Type: Compilations (nullable)
Indexed: True
Category: System
Supported Filters: Equals, EqualsIn
Show in UI: ShownByDefault

Parent

A model, which contains the current model. When building a parent model, it will consume all QAs from all child models. Filter(multi eq)

Type: Models (nullable)
Indexed: True
Category: System
Supported Filters: Equals, EqualsIn
Show in UI: ShownByDefault

Provider

The provider and base model, which should be fine-tuned with the domain specific knowledge. null means that this model cannot by compiled and can only be used as a child for another model. Filter(multi eq) Introduced in version 24.1.3.3

Type: Providers (nullable)
Indexed: True
Category: System
Supported Filters: Equals, EqualsIn
Show in UI: ShownByDefault

VirtualUser

The virtual user, which will answer in chats on behalf of the model. null means the model cannot be used in chat. Each model should have different virtual user. Filter(multi eq)

Type: Users (nullable)
Indexed: True
Category: System
Supported Filters: Equals, EqualsIn
Show in UI: ShownByDefault

API Methods

Methods that can be invoked in public APIs.

GetAllowedCustomPropertyValues

Gets the allowed values for the specified custom property for this entity object. If supported the result is ordered by property value. Some property value sources do not support ordering - in that case the result is not ordered.
Return Type: Collection Of CustomPropertyValue
Declaring Type: EntityObject
Domain API Request: GET

Parameters

  • customPropertyCode
    The code of the custom property
    Type: string

  • search
    The search text - searches by value or description. Can contain wildcard character %.
    Type: string
    Optional: True
    Default Value: null

  • exactMatch
    If true the search text should be equal to the property value
    Type: boolean
    Optional: True
    Default Value: False

  • orderByDescription
    If true the result is ordered by Description instead of Value. Note that ordering is not always possible.
    Type: boolean
    Optional: True
    Default Value: False

  • top
    The top clause - default is 10
    Type: int32
    Optional: True
    Default Value: 10

  • skip
    The skip clause - default is 0
    Type: int32
    Optional: True
    Default Value: 0

CreateNotification

Creates a notification and sends a real time event to the user.
Return Type: void
Declaring Type: EntityObject
Domain API Request: POST

Parameters

  • user
    The user.
    Type: Users

  • notificationClass
    The notification class.
    Type: string

  • subject
    The subject.
    Type: string

CreateCopy

Duplicates the object and its child objects belonging to the same aggregate. The duplicated objects are not saved to the data source but remain in the same transaction as the original object.
Return Type: EntityObject
Declaring Type: EntityObject
Domain API Request: POST

Business Rules

None

Front-End Business Rules

None

API

Domain API Query: https://demodb.my.erp.net/api/domain/odata/Projects_AI_Models?$top=10

Domain API Query Builder: https://demodb.my.erp.net/api/domain/querybuilder#Projects_AI_Models?$top=10