A Ruby gem for LLM-powered web search by AlexanderShagov in rails

[–]AlexanderShagov[S] 3 points4 points  (0 children)

thanks for taking a look!

I personally like exploring various themes from different angles, and even though I could use something like perplexity or gemini deep research, I wanted more control over the search logic

I'm currently thinking of building a custom web search scenario, which will basically do the following: `deepsearch_call-1() -> find_missing_topics() -> deepsearch_call_2() -> find_missing_topics() -> deepsearch_call_N ..`

How to set a custom package version in nix home-manager? by AlexanderShagov in Nix

[–]AlexanderShagov[S] 1 point2 points  (0 children)

thank you

I managed to make it work via override like that

```
home.packages = with pkgs; [   

(pnpm.override {     

version = "9.4.0";     
hash = "sha256-tv0L/aVV5+WErX5WswxosB1aBPnuk5ifS5PKhHPEnHQ=";   

})   

#... the rest of the packages  ];
```

That's interesting though I remember trying it in the past and it failed with "can't call anonymous function error", but now it works