search.mdx 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. title: '🔍 search'
  3. ---
  4. `.search()` enables you to uncover the most pertinent context by performing a semantic search across your data sources based on a given query. Refer to the function signature below:
  5. ### Parameters
  6. <ParamField path="query" type="str">
  7. Question
  8. </ParamField>
  9. <ParamField path="num_documents" type="int" optional>
  10. Number of relevant documents to fetch. Defaults to `3`
  11. </ParamField>
  12. ### Returns
  13. <ResponseField name="answer" type="dict">
  14. Return list of dictionaries that contain the relevant chunk and their source information.
  15. </ResponseField>
  16. ## Usage
  17. Refer to the following example on how to use the search api:
  18. ```python Code example
  19. from embedchain import Pipeline as App
  20. # Initialize app
  21. app = App()
  22. # Add data source
  23. app.add("https://www.forbes.com/profile/elon-musk")
  24. # Get relevant context using semantic search
  25. context = app.search("What is the net worth of Elon?", num_documents=2)
  26. print(context)
  27. # Context:
  28. # [
  29. # {
  30. # 'context': 'Elon Musk PROFILEElon MuskCEO, Tesla$221.9BReal Time Net Worthas of 10/29/23Reflects change since 5 pm ET of prior trading day. 1 in the world todayPhoto by Martin Schoeller for ForbesAbout Elon MuskElon Musk cofounded six companies, including electric car maker Tesla, rocket producer SpaceX and tunneling startup Boring Company.He owns about 21% of Tesla between stock and options, but has pledged more than half his shares as collateral for personal loans of up to $3.5 billion.SpaceX, founded in',
  31. # 'source': 'https://www.forbes.com/profile/elon-musk',
  32. # 'document_id': 'some_document_id'
  33. # },
  34. # {
  35. # 'context': 'company, which is now called X.Wealth HistoryHOVER TO REVEAL NET WORTH BY YEARForbes Lists 1Forbes 400 (2023)The Richest Person In Every State (2023) 2Billionaires (2023) 1Innovative Leaders (2019) 25Powerful People (2018) 12Richest In Tech (2017)Global Game Changers (2016)More ListsPersonal StatsAge52Source of WealthTesla, SpaceX, Self MadeSelf-Made Score8Philanthropy Score1ResidenceAustin, TexasCitizenshipUnited StatesMarital StatusSingleChildren11EducationBachelor of Arts/Science, University',
  36. # 'source': 'https://www.forbes.com/profile/elon-musk',
  37. # 'document_id': 'some_document_id'
  38. # }
  39. # ]
  40. ```