Deploying to CrewAI Enterprise
Hello everyone, I have created a Flow where I am providing a dictionary of inputs to the Flow in my kickoff function of my main.py file. The snippet is show below: def kickoff(): inputs={"input_feature_1":"input_value_1", "input_feature_2":"input_value_2"} MyFlow().kickoff(inputs=inputs) This Flow is working perfectly in my machine. I deployed the Flow into CrewAI Enterprise from by GitHub. The deployment was successful. But when I send requests to retrieve the inputs for the Flow, I am getting an empty array [] When I try kicking it off, I get HTTP 500 Internal Server Error. Please help me out!