File tree Expand file tree Collapse file tree 3 files changed +6
-10
lines changed
Packages/ai.fxn.fxn3d/Runtime Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 11## 0.0.35
2- * INCOMPLETE*
2+ + Refactored ` PredictorStatus.Provisioning ` enumeration member to ` Compiling ` .
3+ + Removed ` Parameter.defaultValue ` field.
34
45## 0.0.34
56+ Added ` fxn.Beta.Predictions.Remote.Create ` method for creating predictions that run on remote servers.
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public string logs {
5050 get {
5151 prediction . GetPredictionLogLength ( out var length ) . Throw ( ) ;
5252 var logs = new StringBuilder ( length + 1 ) ;
53- prediction . GetPredictionLogs ( logs , logs . Capacity ) . Throw ( ) ;
53+ prediction . GetPredictionLogs ( logs , logs . Capacity ) ;
5454 return logs . ToString ( ) ;
5555 }
5656 }
Original file line number Diff line number Diff line change @@ -130,11 +130,6 @@ public class Parameter {
130130 /// Parameter value choices for enumeration parameters.
131131 /// </summary>
132132 public EnumerationMember [ ] ? enumeration ;
133-
134- /// <summary>
135- /// Parameter default value.
136- /// </summary>
137- public object ? defaultValue ;
138133 }
139134
140135 /// <summary>
@@ -176,10 +171,10 @@ public enum AccessMode : int {
176171 [ JsonConverter ( typeof ( StringEnumConverter ) ) ]
177172 public enum PredictorStatus : int {
178173 /// <summary>
179- /// Predictor is being provisioned .
174+ /// Predictor is being compiled .
180175 /// </summary>
181- [ EnumMember ( Value = @"PROVISIONING " ) ]
182- Provisioning = 0 ,
176+ [ EnumMember ( Value = @"COMPILING " ) ]
177+ Compiling = 0 ,
183178 /// <summary>
184179 /// Predictor is active.
185180 /// </summary>
You can’t perform that action at this time.
0 commit comments