from embedchain import Appapp = App()# add data sourceapp.add("https://www.forbes.com/profile/elon-musk")# run evaluationapp.evaluate("what is the net worth of Elon Musk?")# {'answer_relevancy': 0.958019958036268, 'context_relevancy': 0.12903225806451613}# or# app.evaluate(["what is the net worth of Elon Musk?", "which companies does Elon Musk own?"])