Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
get_data_sources()
from embedchain import App app = App() app.add("https://www.forbes.com/profile/elon-musk") app.add("https://en.wikipedia.org/wiki/Elon_Musk") data_sources = app.get_data_sources() # [ # { # 'data_type': 'web_page', # 'data_value': 'https://en.wikipedia.org/wiki/Elon_Musk', # 'metadata': 'null' # }, # { # 'data_type': 'web_page', # 'data_value': 'https://www.forbes.com/profile/elon-musk', # 'metadata': 'null' # } # ]
Was this page helpful?