HACKER Q&A
📣 j1000

What's solution to periodic Deep Research using LLM?


Hi, what's current solution for Deep Research that will run in defined interval. I wanted to use OpenAI Deep Research model but API is extremely confusing. So maybe there is something else more generic and lean? Like I don't want to be vendor dependant (so any config on 3rd party ui is out of the scope). I'm also happy to code long standing solution but I need place where to start. Cheers


  👤 denis_dolya Accepted Answer ✓
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.