LangChain - Production Deployment
Given this LangServe class:
class EchoAPI:
def __call__(self, input):
return f"Echo: {input}"
What will be the output when calling EchoAPI()('hello')?