-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new Apify-Haystack RAG Web Browser example notebook and update README and index.toml #159
base: main
Are you sure you want to change the base?
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
@@ -0,0 +1,479 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you give more info around the how this actor works? something like "First, we need to understand how RAG Web Browser Actor works and its output format. It accepts a search phrase or URL, performs a Google Search, crawls web pages from the top search results, cleans the HTML, and converts the content into text or Markdown"
Reply via ReviewNB
@@ -0,0 +1,479 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line #3. generator = OpenAIGenerator(model="gpt-3.5-turbo")
This model is deprecated. You should use gpt-4o-mini
or gpt-4o
instead
Reply via ReviewNB
@@ -0,0 +1,479 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the cookbook @ohlava! I left some comments, they're all minor changes :)
[[cookbook]] | ||
title = "RAG: Web Search and Analysis with Apify and Haystack" | ||
notebook = "apify_haystack_rag_web_browser.ipynb" | ||
topics = ["Web Search", "Analysis", "RAG"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
topics = ["Web Search", "Analysis", "RAG"] | |
topics = ["Web-QA", "Data Scraping", "RAG"] |
@bilgeyucel thank you, all valid points. We'll fix it. |
Add Cookbook: RAG Web Search and Analysis with Apify and Haystack
This PR introduces a new cookbook example. This example demonstrates how to integrate Apify’s RAG Web Browser Actor with Haystack to enable LLM applications to search the web, extract content, and analyze the results using a language model.