2025-04-08 16:57:55 +02:00
|
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
|
|
|
|
|
|
|
|
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
|
|
|
|
|
|
<class name="BeWo.Data.Entities.AiConfig,BeWo.Data" table="AiConfig">
|
|
|
|
|
|
<id name="Oid" column ="Oid" unsaved-value="null">
|
|
|
|
|
|
<generator class="identity" />
|
|
|
|
|
|
</id>
|
|
|
|
|
|
<version type="Int64" column="Version" name="Version" />
|
|
|
|
|
|
<property name="InsTs"/>
|
|
|
|
|
|
<property name="InsUser"/>
|
|
|
|
|
|
<property column="Tid" type="BS.Shared.TableID, BS.Shared" name="_Tid" access="field" />
|
|
|
|
|
|
<property name="UdpUser"/>
|
|
|
|
|
|
<property name="IsActive" type="BS.Shared.ActivationTypeId, BS.Shared" />
|
|
|
|
|
|
<property name="SystemEntryID" type="BS.Shared.SystemEntryID, BS.Shared" />
|
|
|
|
|
|
<property name="Notice"/>
|
|
|
|
|
|
<property name="Temperature"/>
|
|
|
|
|
|
<property name="Top_P"/>
|
|
|
|
|
|
<property name="Max_Gen_Len"/>
|
2025-07-16 13:36:59 +02:00
|
|
|
|
<property name="Context_Type" type="BS.Shared.AiDataContextType, BS.Shared"/>
|
2025-04-08 16:57:55 +02:00
|
|
|
|
<many-to-one name="SelectedModel"
|
|
|
|
|
|
column="SelectedModelOid"
|
|
|
|
|
|
class="BeWo.Data.Entities.AiModel,BeWo.Data"/>
|
|
|
|
|
|
</class>
|
|
|
|
|
|
</hibernate-mapping>
|