Here is an example when I were to define one more request initiate_call() ..it should combine all the oututs of the following calls and comebine returns from each and output one final ret. what is the best way to structure this.
def makeA():
return {"name": "steve"}
def makeB():
return {"street": "new York"}
def makeC():
return {"city": "NY"}
final ret to be like {"name": "steve", "street": "new york", "city": "NY"}