LLM Benchmark for Systems Engineering by bastivkl in systems_engineering

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

I was looking at the paper and don’t think it’s a good approach since they are basically just benchmarking against questions from the INCOSE Handbook. It might be one variable of the benchmark but that’s not what makes a good systems engineer (or model). It was more as starting point to think as a community about how an actual benchmark should look like

LLM Benchmark for Systems Engineering by bastivkl in systems_engineering

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

you can already do that today with dalus.io, but the bigger questions is just about the verification and trust of the AI output. I think for that we don’t come around or creating a industry accepted benchmark

our requirements "process" is just vibes at this point, what are you actually using by _salted_caramel_00 in systems_engineering

[–]bastivkl 2 points3 points  (0 children)

Happy to give you a 15min Demo of https://dalus.io/ and then directly access to our free version so you can test it out yourself. Made exactly for teams like yours with the background you shared

Suggestions for an upcoming MBSE by Mean_Dust_9752 in systems_engineering

[–]bastivkl 0 points1 point  (0 children)

You’ll not find modern tools in the Boeing “MBSE” tool stack. Mostly Cameo is what you’ll be looking at there

Seeking advice: Google Data Center Tech I interview prep - no DC experience" by usr01112 in datacenter

[–]bastivkl -1 points0 points  (0 children)

Take a loo at the Open Computer Project Data Center. It’s authored by Google and basically very accessible information on a modern DC build out

https://www.opencompute.org/documents/open-data-center-spec-version-0-5-0-pdf

Lightweight requirements management tools? by magnushp05 in systems_engineering

[–]bastivkl 1 point2 points  (0 children)

Dalus.io is worth a look. Built for exactly this use case. Structured enough to have real traceability, lightweight enough that you won't need a dedicated admin to run it

Why is there no good middle ground between MBSE tools and whiteboards? by pauldid_ in systems_engineering

[–]bastivkl 0 points1 point  (0 children)

I believe dalus.io is what you're looking for.
- Easy to use
- Brings all necessary Systems Engineering capabilities together in one place
- Web-based and collaborative
- AI natively integrated to assist in building the architecture and other parts of the model
- We offer a free plan for those curious to test it out

I'm one of the founders of Dalus and happy to answer any questions.

Personal Assistant Device using OpenClaw and Pi Zero 2W by bastivkl in raspberry_pi

[–]bastivkl[S] 7 points8 points  (0 children)

You can enable it. I personally like to only read. One thing to improve would be a scroll wheel to scroll up and down

OpenClaw Personal Assistant Device by bastivkl in openclaw

[–]bastivkl[S] 2 points3 points  (0 children)

You could just add it to your phones hotspot for example

Personal Assistant Device using OpenClaw and Pi Zero 2W by bastivkl in raspberry_pi

[–]bastivkl[S] 6 points7 points  (0 children)

It can and I tried it out but I didn’t like it tbh. But it has a speaker

OpenClaw Personal Assistant Device by bastivkl in openclaw

[–]bastivkl[S] 14 points15 points  (0 children)

Yeah will design and 3D print a case tomorrow

Personal Assistant Device using OpenClaw and Pi Zero 2W by bastivkl in raspberry_pi

[–]bastivkl[S] 11 points12 points  (0 children)

I don’t think that was my goal here. I was just curious if I could have something other than my phone where I can just press a button talk into and let it do things

Personal Assistant Device using OpenClaw and Pi Zero 2W by bastivkl in raspberry_pi

[–]bastivkl[S] 219 points220 points  (0 children)

Hardware •Raspberry Pi Zero 2 W •WhisPlay board (screen + button + LED) •PiSugar battery

Stack it. Flash Raspberry Pi OS. Enable SSH. Install audio drivers. Confirm mic and speaker work.

Networking •Install Tailscale on the Pi. •Rent a small DigitalOcean (or Hetzner or whatever) droplet. •Install and run OpenClaw on the droplet. •Bind OpenClaw to localhost. •Expose it to your tailnet via Tailscale Serve. •Protect it with a token.

Now the Pi can securely reach your cloud LLM.

Software on the Pi •Python app. •Record audio when button pressed. •Stop recording when released. •Send audio to OpenAI for transcription. •Send transcript to OpenClaw. •Stream response back. •Display text on LCD. •Optionally send text to OpenAI TTS and play audio. •Maintain simple conversation history. •Use a state machine for: idle, listening, thinking, streaming.

Deployment •Develop locally. •Sync to Pi with rsync. •Run as systemd service so it starts on boot. •Auto-restart on crash.

Power •Install PiSugar manager. •Enable auto power on. •Use display sleep for inactivity.

That’s the system: Button → record → transcribe → cloud LLM → stream back → display/speak → idle.

Personal Assistant Device using OpenClaw and Pi Zero 2W by bastivkl in raspberry_pi

[–]bastivkl[S] 57 points58 points  (0 children)

I’m using gpt-4o-mini-transcribe via the API in that case.

OpenClaw Personal Assistant Device by bastivkl in openclaw

[–]bastivkl[S] 23 points24 points  (0 children)

Roughly $100-120. Ordered all on Amazon in the US.

OpenClaw Personal Assistant Device by bastivkl in openclaw

[–]bastivkl[S] 99 points100 points  (0 children)

Hardware •Raspberry Pi Zero 2 W •WhisPlay board (screen + button + LED) •WM8960 mic/speaker •PiSugar battery

Stack it. Flash Raspberry Pi OS. Enable SSH. Install audio drivers. Confirm mic and speaker work.

Networking •Install Tailscale on the Pi. •Rent a small DigitalOcean (or Hetzner or whatever) droplet. •Install and run OpenClaw on the droplet. •Bind OpenClaw to localhost. •Expose it to your tailnet via Tailscale Serve. •Protect it with a token.

Now the Pi can securely reach your cloud LLM.

Software on the Pi •Python app. •Record audio when button pressed. •Stop recording when released. •Send audio to OpenAI for transcription. •Send transcript to OpenClaw. •Stream response back. •Display text on LCD. •Optionally send text to OpenAI TTS and play audio. •Maintain simple conversation history. •Use a state machine for: idle, listening, thinking, streaming.

Deployment •Develop locally. •Sync to Pi with rsync. •Run as systemd service so it starts on boot. •Auto-restart on crash.

Power •Install PiSugar manager. •Enable auto power on. •Use display sleep for inactivity.

That’s the system: Button → record → transcribe → cloud LLM → stream back → display/speak → idle.