This workflow is designed to recommend research papers tailored to individual user personas by leveraging various search and integration tools.
- Integration with Brave Search for topic-based news retrieval
- Integration with Arxiv for research paper search
- Llama Parse for scraping and parsing document contents
- User and document management systems
-
Input Schema:
topics
: An array of topics to search foruser_id
: The user's unique identifier
-
Tools:
brave_search
: Searches for the latest news snippets based on topicsarxiv_search
: Searches for research papers based on extracted keywordsllama_parse_scrape
: Parses and scrapes document contents from URLsget_user_from_id
: Retrieves user information using IDget_user_docs
: Fetches user documents and personacreate_user_doc
: Creates a new document for the user
-
Main Steps:
- Topic Search:
- Use Brave Search to find the latest news snippets for each topic.
- Keyword Extraction:
- Extract keywords from news snippets to identify relevant research areas.
- Research Paper Search:
- Use Arxiv Search to find papers based on the top keywords.
- User Persona Retrieval:
- Retrieve user information and persona using PPID.
- Paper Selection:
- Select the top 5 research papers that align with the user's persona.
- Content Scraping:
- Use Llama Parse to scrape and parse the contents of selected papers.
- Document Creation:
- Create a new document for the user with the scraped paper contents.
- Topic Search:
This workflow is ideal for systems that require personalized research paper recommendations based on user interests and professional needs. It ensures that the recommendations are relevant and beneficial for the user's ongoing research and professional development.