B-2 visa approved for parents at Mumbai consulate, step by step process

My parents just had their B-2 tourist visa interview at the Mumbai consulate and both were approved. I wanted to share the step by step process because I know many people with parents in India are trying to figure this out.

Here is their profile:

  • Father - age 64, retired government employee with pension
  • Mother - age 60, homemaker
  • They have two children - me in the US on H-1B, and my brother in India
  • They own their home in India
  • Travel history: Thailand and Singapore

The interview was in Hindi which made my parents more comfortable. The officer asked them six questions:

  1. Why do you want to go to the US? To visit our son and his family.
  2. How many children do you have and where do they live? One son in the US, one son in India.
  3. How long will you be staying? 5 weeks.
  4. Who is paying for the trip? We have savings and our son will also help.
  5. Do you own property in India? Yes.
  6. Show me your property documents. They handed over the property registration papers. The officer looked at them for a few seconds and handed them back.

Then the officer said their visas were approved. The whole interview was about 5 minutes.

What we think helped:

  • Having property documents ready
  • Mentioning they have a son still in India (family ties)
  • Keeping the trip duration reasonable at 5 weeks
  • My dad answering clearly and confidently

The officer did not ask to see bank statements or my US documents. But we had them ready just in case.

If your parents have an interview coming up, I highly recommend they bring property documents if they own anything.

reddit.com
u/Terrible-Market1264 — 9 hours ago

F-1 visa approved at New Delhi in under 2 minutes, here is what they asked

I had my F-1 visa interview at the US Embassy in New Delhi yesterday and it was approved in under 2 minutes. I wanted to share exactly what happened because I know many students stress about this interview.

I am an undergraduate student planning to study Computer Science. My interview was scheduled for 10 AM. I arrived about 45 minutes early. There was a long queue already. I waited about an hour before my turn.

When I got to the counter, the officer asked me:

  1. Pass me your I-20 and SEVIS fee receipt.
  2. Tell me about your program.
  3. Why did you choose this university?
  4. Who is paying for your studies?

For the university question, I had prepared a specific answer. I mentioned a particular program and a professor whose research interests align with mine. The officer nodded and moved on. For the funding question, I said my parents are paying and I have scholarship covering part of the tuition. The officer typed for a few seconds and then said my visa was approved.

I think the key things that helped were:

  • Having my I-20 and SEVIS receipt ready immediately
  • Having a specific answer for why I chose the university
  • Keeping my answers short and clear
  • Being confident even though I was nervous

The officer did not ask to see my financial documents even though I brought them. But I was glad I had them ready just in case.

If you are preparing for an F-1 interview, practice answering why you chose your university. That seems to be the one they care about the most.

reddit.com
u/Terrible-Market1264 — 12 hours ago

Agent Gateway patterns, how are you handling multi-agent communication?

We're building a multi-agent system for a large enterprise client. We have specialized agents that handle different tasks, one for data retrieval, one for analysis, one for reporting. They need to communicate with each other and with LLMs.

The communication patterns are getting complex. Some agents call other agents directly. Some call it LLMs. Some call tools. We need to trace requests across all these interactions for debugging and compliance. We also need to enforce access control, which agents can talk to which other agents.
We've looked at A2A (Agent-to-Agent protocol) and MCP for tool calling. But we're not sure how to operationalize this at scale. Do we need an Agent Gateway that sits between all these interactions? What does that even look like?

Has anyone deployed an Agent Gateway in production? What worked and what broke? Are there open source options or is this still a bleeding edge?

reddit.com
u/Terrible-Market1264 — 1 day ago

MCP Gateway evaluation, who's actually running this in production?

Model Context Protocol is getting a lot of buzz, and we're starting to see internal teams build MCP servers for various tools and APIs. The promise is a standardized tool calling for agents, which sounds great.

The operational reality is hitting us though. We have multiple teams building MCP servers, each with their own auth, rate limits, and logging. There's no central visibility. When an agent calls an MCP server and fails, debugging is painful. When an MCP server goes down, agents fail silently.
We need a way to centrally manage MCP servers: register them, enforce rate limits, log calls, handle failover, and observe performance. Some people are using nginx with custom Lua scripts. Others are building their own proxy layer. Neither feels sustainable.

Is there anything purpose-built for MCP server governance? MintMCP looks interesting but very early. What are others doing in production? We're Kubernetes-native, so something that runs inside our cluster would be ideal.

reddit.com
u/Terrible-Market1264 — 1 day ago

The operational gap between inference and agentic orchestration is killing our velocity

We've been running production ML inference for about four years now. Our stack is mature, well-understood, and our team can debug issues in their sleep. We've got solid canary deployments, A/B testing, and observability. Everything runs on Kubernetes, which gives us flexibility across clouds and on-prem.

Then agentic AI showed up. We started building agents that call our models as tools, plus call external LLMs, plus call internal APIs. Suddenly, our clean inference stack is tangled up with a bunch of new components. The agents have their own state, their own logging, their own failure modes. When something goes wrong, it's no longer obvious whether the issue is in the inference layer, the agent logic, or the LLM call.
We tried to keep things separate, thinking we'd just bolt on an agent framework and call it a day. But the seams are showing. We're losing velocity because every production issue turns into a cross-team debugging session. I'm starting to think we need a more integrated approach, but I'm not sure what that looks like.

Has anyone successfully integrated their inference stack with agentic orchestration? Are there platforms that handle both without forcing you to choose between them? Or is the industry still figuring this out?

reddit.com
u/Terrible-Market1264 — 2 days ago

The MLOps vs. Agentic AI infrastructure split is getting expensive

We're running two parallel infrastructure tracks right now. Track one is our mature MLOps stack, Seldon Core for inference, Prometheus for metrics, the usual. It's battle-tested, handles thousands of predictions per second, and our team knows it inside out. Track two is our new agentic AI stack, different team, different tooling, different observability.

The duplication is killing us. Two sets of dashboards. Two sets of alerting rules. Two sets of access controls. And when a production issue crosses both stacks, debugging is a nightmare because the traces don't connect.

I keep asking: why can't we have one platform that handles both traditional ML inference and agentic orchestration? They both run on Kubernetes. They both need observability, governance, and scaling. Why are we treating them as separate problems? I'm starting to think the industry is overcomplicating this. Is anyone running a unified stack? What's the catch?

reddit.com
u/Terrible-Market1264 — 5 days ago

Auditing agentic AI in a regulated environment, how are you handling compliance?

We're a healthcare company with strict HIPAA requirements. We've been running traditional ML models in production for years, deployed via Seldon Core on-prem. The audit trail is solid: we know who deployed what model, what data was used, and what predictions were made.

Now we're exploring agentic AI for clinical decision support. The problem is auditability. An agent doesn't just make a single prediction. It reasons, calls multiple tools, iterates, and produces a final output. Compliance wants to know every step: which agent made which decision, what tools were called, what LLM was used, and what data was accessed.

Most agentic platforms are SaaS-first and don't support on-prem deployment. Even the ones that do have weak auditing compared to what we're used to with Seldon. We need a solution that can run in our air-gapped environment, meets HIPAA requirements, and gives us a complete audit trail across the entire agentic workflow. Is anyone else navigating this? What's working?

reddit.com
u/Terrible-Market1264 — 6 days ago

How are you handling agentic AI governance alongside existing ML inference?

We've been using Seldon Core for years to serve scikit-learn and XGBoost models in production. It handles real-time inference, canary rollouts, and observability really well. Recently, we started building AI agents that call these models as tools, plus call LLMs and other APIs.

Now we're realizing our governance model doesn't cover this new world. For traditional ML, we have clear policies: who can deploy models, what's the approval process, how we monitor drift. For agents, it's the Wild West. Different teams use different frameworks. Some agents call internal models, some call external LLMs. There's no central visibility into what agents are doing, what they cost, or whether they're complying with our policies.

We need a single control plane that can govern both the inference layer and the agentic layer. But most solutions focus on one or the other. Has anyone found a platform that bridges this gap? Or are we looking at building a custom governance layer ourselves?

reddit.com
u/Terrible-Market1264 — 7 days ago

MCP adoption is accelerating, how are you hosting and governing internal MCP servers?

Model Context Protocol is finally getting real adoption. I'm seeing more internal tools expose MCP servers for database access, internal APIs, and third-party services. The promise is standardized tool calling for agents. But the operational reality is hitting us.

We have multiple teams building MCP servers. Each server has its own auth, rate limits, and logging. There's no central visibility. When an agent calls an MCP server and fails, debugging is painful. When an MCP server goes down, agents fail silently.
We need a way to centrally manage MCP servers: register them, enforce rate limits, log calls, handle failover, and observe performance. Some people are using nginx with custom Lua scripts. Others are building their own proxy layer. Neither feels sustainable.

Is there anything purpose-built for MCP server governance? MintMCP looks interesting but very early. What are others doing in production? We're Kubernetes-native, so something that runs inside our cluster would be ideal.

reddit.com
u/Terrible-Market1264 — 7 days ago

Will large LLMs become accessible on-prem? The cost/benefit math isn't adding up.

I'm at a hardware SME where we write system software. Management is wary of public cloud tools leaking source code, so on-prem is the only option. A few of us run local models. I have an RTX 4070 mobile with 8GB VRAM running starcoder2:7b under ollama. It's useful but nowhere near as good as Copilot.

I'm thinking about persuading management to invest in on-prem hardware. Options range from roughly 4k for a dual RTX 3090 setup, which barely runs 70b models, to enterprise-grade systems that cost six figures. The math is brutal when you factor in power, cooling, and maintenance.
But there's also the software layer. Even if we buy hardware, we still need a way to route requests across models, cache responses, and observe performance. Most of the tooling assumes you're calling cloud APIs. Self-hosting means building that infrastructure yourself or finding something that works in air-gapped environments.

Has anyone successfully deployed on-prem LLM infrastructure at a mid-sized company? What was the actual cost and what broke? Did you find any tooling that made self-hosting manageable?

reddit.com
u/Terrible-Market1264 — 8 days ago

Organic is getting expensive, is it time to double down on PPC?

I run a small services business, and the cost of organic SEO is starting to weigh on me. It feels like you need to invest so much time and money into content and backlinks now just to keep your head above water, and it takes months to see any real return.

I'm starting to think I should just shift more of my budget to PPC to get immediate leads. But I'm also worried about burning through the budget if I don't know exactly what I'm doing. I don't have a massive team, so I need a solution that's managed and effective. Is it better to find a specialist agency for this or try to learn it myself? Looking for recommendations from other business owners who've made the switch.

reddit.com
u/Terrible-Market1264 — 9 days ago

How do you prove your content is driving SEO results?

I'm a freelance content writer and I'm finding that more and more clients want proof that my blog posts are actually helping their SEO. I provide the content, but I feel like I'm at the mercy of their web developers and SEO managers to actually get it optimized correctly and promoted. I can write a great copy, but if the site has technical issues or no backlink strategy, the post isn't going to rank.

I'm trying to expand my services to offer a bit of content strategy or SEO consultation to prove my value. I want to be able to show clients that my content isn't just words on a page, but it's driving traffic. Does anyone have a process for this? Do you get access to their analytics, or do you just have to hope they come back for more work?

reddit.com
u/Terrible-Market1264 — 9 days ago

How are you guys handling the post-holiday traffic slump?

We had a great Q4, but now that we're into the new year, I'm seeing a pretty significant drop in organic traffic to our e-commerce site. It's not unexpected, but I'm trying to get ahead of it rather than just hoping things pick up again.

We're in a fairly competitive niche, and I know our main competitors are constantly pumping out content and building backlinks. I'm trying to balance improving our site content with a bit of technical SEO to improve Core Web Vitals, as I know that's a big ranking factor. It feels like we're fighting for every single visitor. Has anyone seen success with a particular agency or strategy that focuses on getting that edge back post-holiday? Looking for something that's not just generic advice.

reddit.com
u/Terrible-Market1264 — 9 days ago

Agent gateway patterns, how do you govern multi-agent pipelines?

We're moving from single LLM calls to multi-agent systems where agents call other agents, tools, and LLMs. The governance is getting hard to manage. We need rate limiting per agent, an audit trail of which agent called which tool, cost attribution per agent, and failover if an agent's LLM provider degrades.

The problem is most LLM gateways assume one client calling one model. They don't really understand agent identity, so they can't enforce policy or attribute cost at the agent level. Kong has some agent support but it feels tacked on.

So the real question is about the gateway layer. Do you route all agent traffic through a central gateway that knows which agent is calling, and apply policy and tracing there? Or do you push policies into each agent? We'd self-host it (we're on Kubernetes), and bonus if the same gateway can host MCP servers too.

reddit.com
u/Terrible-Market1264 — 13 days ago