Tv show that end on a high note

Recently I started watching tv shows instead of reading books during my travel and been hooked but, I have been disappointed with various shows with extremely bad endings (like Stranger things, Game of Thrones, The boys).

I'm looking for shows that stay consistently great and end on a genuinely satisfying note as i so done w this in general in life,

Doesn't necessarily have to be a happy ending, just one that feels earned and doesn't ruin everything that came before it

reddit.com
u/Bright_Peace_5959 — 20 hours ago

Legal asked one question about our AI stack and I couldn't answer it

Had a slightly embarrassing meeting recently.

We're EU-based, fintech-adjacent, and legal was doing a routine review before an audit. Someone asked a pretty simple question.

""Where does customer data actually go when someone uses your AI features?""

i built most of that system.

Couldnt answer it cleanly.

i knew which models we called. Didnt really know where each provider was actually processing requests, what they retained, or for how long. Then we looked at our own logging and realized we'd been storing basically every prompt for debugging. Never really thought about it as a GDPR question. To us they were just logs.

Got messier because we route across multiple providers.

So ""where does this customer's data go?"" didnt even have one answer. Depended which provider handled that request. Information was spread across provider dashboards, our logs, and a bunch of config files.

Spent the next couple weeks untangling all of it.

Moved the routing behind one layer so we can actually see which provider handled each request, cleaned up retention on our own traces instead of keeping everything forever, and checked which providers actually support EU processing. We ended up moving the routing onto OrqAI partly because having one place that records which provider served each request made that whole conversation way easier.

One thing i had wrong going in though.

Routing through an EU-based platform doesnt suddenly mean inference stays in the EU. That's still whatever the underlying provider does. Sounds obvious now but i definitely mixed those together at first.

Honestly i dont even think ""everything stays in region"" is what most teams can achieve today.

Being able to answer where data goes, who processes it, what gets retained, and why... that felt like the more realistic bar.

Curious if anyone here has actually been through an EU audit on this.

What did they actually care about?

Was it full residency, or just having the documentation and controls in place? Feels like theres a lot of guessing online about where that line actually is.

reddit.com
u/Bright_Peace_5959 — 6 days ago

Is anyone actually routing LLM traffic through an EU-based gateway for residency reasons, or is everyone just hoping their DPA covers it

i keep seeing "EU data residency" mentioned as a feature on a bunch of these AI gateway/router products and i cant tell if its actually load bearing for most teams or just a checkbox nobody's tested under real scrutiny yet.

Our situation: client is in fintech, EU based, and legal flagged that our current setup (calling OpenAI + Anthropic directly, both us-based processing afaik unless you're on their enterprise EU tiers) might not hold up once their internal audit cycle comes around. Honestly not 100% sure what the actual risk threshold is, this isnt my area and the lawyer on our side gave a fairly hedge-y answer when i asked directly, something like "depends how the regulator interprets sub-processor chains."

What ive found looking into actual mechanisms: a few of the providers do offer EU region processing if you're on specific enterprise tiers (anthropic and openai both have something here i think but the docs werent super clear on what exactly stays in region vs what doesnt, like is it just inference or does logging/caching also stay in region).

Looked at routing through a gateway instead, the idea being the gateway itself processes/logs in-region even if the underlying model call still technically leaves the EU for inference. OrqAI markets this pretty directly (they're EU based as a company too, which i guess matters for some procurement checklists even if it doesnt solve the underlying inference location question). Hadnt fully tested whether this actually satisfies what our legal team needs or just shifts where the asterisk is.

this is the part i actually want input on: does routing through an eu-based gateway meaningfully change your compliance posture, or does the inference still happening on us infrastructure (assuming it does) mean you havent actually solved anything, just added a layer that feels compliant without being compliant. genuinely not sure and would rather ask people who've actually gone through an audit on this than guess

reddit.com
u/Bright_Peace_5959 — 11 days ago