How severe does this issue affect your experience of using Ray?
- High: It blocks me to complete my task.
Hi! I have an observation_space of variable length (ray.rllib.utils.spaces.repeated.Repeated) and I want to create an action_space with also a variable length that adopts in each step the length of the observation space. That is, in step 1, the action_space can generate [1,0,1] and in the next step, as the new observation_space has length 5, the action_space will generate [1,0,1,1,0]. Is this possible?