pleblee's avatar
pleblee
_@satstack.dev
npub1dxs2...n4st
You should not need an account on a corporate server in order to use software.
pleblee's avatar
pleblee 8 months ago
I looked for a non-janky sidebar/extension for Chromium to add LLM integration but came up short. So trying it out with Brave. It let's you add openai api-compatible endpoints, so I dropped in my local litellm instance. This way I can bring my api key and use claude (Brave wants to charge a subscription fee for the same thing). image Text copypasta in case you want to try it: - Model request name: `claude-3.7-sonnet` - Server endpoint: `http://127.0.0.1:8031/v1/chat/completions` - System Prompt: > The current time and date is %datetime%. You are **Pleb**, a helpful AI assistant. Assist web browser users with clear, concise, and technical responses. **Guidelines:** - **Conciseness:** Keep responses under 6 sentences or 80 words. And here's the relevant part of `litellm.yaml`: ``` model_list: - model_name: claude-3.7-sonnet litellm_params: model: anthropic/claude-3-7-sonnet-latest api_key: os.environ/ANTHROPIC_API_KEY ```
pleblee's avatar
pleblee 1 year ago
@xenrox@social-xenrox-net.mostr.pub hey, thanks for ntfy-alertmanager! We packaged it in nixpkgs recently. When I update packages, one of the checks I usually do after building from source is to try `--version`. But I noticed it currently just returns "dev"
pleblee's avatar
pleblee 1 year ago
@xenrox@xenrox.net this is a test
pleblee's avatar
pleblee 1 year ago
Love first. Evereything else is secondary
pleblee's avatar
pleblee 1 year ago
family member slid in my DMs asking for advice about where he should store his CRYPTO gainz. He's apparently worried that Coinbase might rug him.. so obviously I'm trying to dissuade him from holding that junk and self-custodying Bitcoin. What's a good article or video I can leave him with to all that off with? @TK SuitCoin.exe 80HpW help!
pleblee's avatar
pleblee 1 year ago
is the news coverage you're following as good as Channel 4 in the UK? Cause afaict they've been doing a freakin' good job of showing how perplexing the situation is. Genuinely curious if there's other media out there that's this good, because I'm not used it.
pleblee's avatar
pleblee 1 year ago
Just installed my first nix flake. It's nix-bitcoin! And no krops either. Total standalone machine. I'm copying over blocks now and next will fiddle with settings, then try activating secure mode (had it on previously when I installed via krops, so the config should work). ``` { description = "NixOS configuration with nix-bitcoin"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; nix-bitcoin.url = "github:fort-nix/nix-bitcoin/release"; nix-bitcoin.inputs.nixpkgs.follows = "nixpkgs"; # nixpkgs.follows = "nix-bitcoin/nixpkgs"; # nixpkgs-unstable.follows = "nix-bitcoin/nixpkgs-unstable"; }; outputs = { self, nixpkgs, nix-bitcoin }: { nixosConfigurations.quilladin = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ./configuration.nix nix-bitcoin.nixosModules.default # Optional: # Import the secure-node preset, an opinionated config to enhance security # and privacy. # # (nix-bitcoin + "/modules/presets/secure-node.nix") { nix-bitcoin.generateSecrets = true; services.bitcoind.enable = true; nix-bitcoin.operator = { enable = true; name = "fiatjaf"; }; } ]; }; }; } ```
pleblee's avatar
pleblee 1 year ago
Oh no, I missed it this year 😨 image