Q&A highlight
Posted4 months agoActive4 months ago
Ask HN: What's solution to periodic Deep Research using LLM?
LLMDeep ResearchAutomation
Ask HN: What's solution to periodic Deep Research using LLM?
No synthesized answer yet. Check the discussion below.
Discussion (1 comments)
Showing 1 comments
4 months ago
If you need regular Deep Research without relying on a UI the simplest option is to run a model locally or via an API such as HuggingFace or OpenAI Chat API with a Python script that runs on a schedule using schedule or cron. Locally you can use models like Falcon LLaMA or GPT4All wrap them in a function that takes a prompt and returns the result and run it automatically on a server or PC. For a long term solution store the results in a file or database. This gives full control and independence from external interfaces.