Add R personal shopper using OpenAI/Ollama + SerpAPI - #9
Open
charles-hebert wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
openaiorollamaLLM providers to generate search queries and to rank results so users can choose local or hosted models.Description
personal_shopper.R, a new script with a CLI entrypoint and core functions:read_interest_items,generate_queries,search_serpapi,rank_suggestions,shop_item, andrun_personal_shopper.openai_chat_jsonandollama_chat_jsonand a dispatcherllm_chat_jsonso the same workflow can use either OpenAI or Ollama models.search_serpapithat normalizestitle,price,store, andlink, deduplicates results, and extracts numeric prices withsafe_num.interests_sample.txtas an example input and a CSV output path withwrite_csvfor consolidated results; default search engines aregoogle_shopping,bing_shopping, andebay.Testing
Rscript -e "parse(file='personal_shopper.R'); cat('OK\n')", but it failed becauseRscriptis not available in the environment, so no runtime validation was completed.SERPAPI_KEY,OPENAI_API_KEYor reachableOLLAMA_HOST) were not present or the runtime was unavailable.Codex Task