OptimeeringBigya
OptimeeringBigya
From what I know cache keys are not bound to flows or deployments. Additionally, there is not API to check if cache key is still valid (i.e. not expired).
Python script is failing with the following exception: ``` pydantic_core._pydantic_core.ValidationError: 1 validation error for post_post 1 Input should be a valid dictionary or instance of Data [type=model_type, input_value=[Data(anyof_schema_1_vali...irectionalPrediction'})], input_type=list] For...
Did some digging myself. Seems like the kwargs need to be passed into the init as `actual_instance` https://github.com/OpenAPITools/openapi-generator/blob/0f294a51297d788630c96a146a9a48d1dae3e3e5/modules/openapi-generator/src/main/resources/python/model_anyof.mustache#L54 like how it is done in https://github.com/OpenAPITools/openapi-generator/blob/0f294a51297d788630c96a146a9a48d1dae3e3e5/modules/openapi-generator/src/main/resources/python/model_anyof.mustache#L52
Also tried changing `df` in `write_to_online_store` to `inputs` ; fails with same error. It is unclear what the difference between the two are.
This also stops `feast ui` from working.