ultravioletrs / cocos

Cocos AI - Confidential Computing System for AI
https://ultraviolet.rs/cocos.html
Apache License 2.0
25 stars 9 forks source link

Feature: Allow state-machine transition from algo-received state to running state incase of no dataset provided #168

Closed SammyOina closed 4 months ago

SammyOina commented 4 months ago

Is your feature request related to a problem? Please describe.

Agent will be stuck on receiving dataset even when no dataset is provided in manifest

Describe the feature you are requesting, as well as the possible use case(s) for it.

Agent should be able to transition to running state in case of no algo is provided. Here are some samples to start on

sm.Transitions[receivingAlgorithm][dataReceived] = running
if dataFileExists {
    sm.SendEvent(algorithmReceived)
} else {
    sm.SendEvent(dataReceived)
}

Indicate the importance of this feature to you.

Must-have

Anything else?

No response