F-1 applicant asked technical questions at Hyderabad, why would they ask those?

A recent F-1 visa discussion shared an unusual experience at the Hyderabad consulate. The applicant, who had completed their undergraduate studies, was asked technical questions about their field of study during the interview.

From what was described, the interview started with standard questions about the applicant's education and university choices. But then the officer unexpectedly asked technical questions like:

  • What is the difference between an Array and a Linked List?
  • What is Linear Regression?

The applicant answered the questions but was ultimately denied under 214(b).

A lot of reviews mention that officers typically focus on why you chose the university, your funding sources, and your plans after graduation. Technical questions are not common in F-1 interviews, though some applicants have reported similar experiences recently.
Some people have speculated that officers might be testing whether applicants actually understand their field of study and have genuine academic interest. Others think it could be related to the specific program or university chosen.

Has anyone else experienced something similar? What do you think was the reason for the technical questions?

reddit.com
u/Ok_Wrap2912 — 2 days ago

H-1B stamping at Delhi consulate, my experience with 221g administrative processing

I had my H-1B visa stamping interview at the Delhi consulate last month. I got a 221g and went through administrative processing. It was stressful but it worked out eventually. I wanted to share my experience for anyone else going through this.

Here is my background:

  • I work as a software engineer at a mid-size tech company
  • I have been with the same employer for 4 years
  • I have a master's degree in computer science from a US university
  • This was my second H-1B stamping

The interview itself was short. The officer asked me:

  • Who do you work for?
  • What do you do day to day?
  • What is your salary?
  • Where did you get your degree?

I answered everything. Then the officer handed me a 221g white slip and said they needed additional administrative processing. They kept my passport and told me to wait for an email update.

The waiting period:
The CEAC status showed Administrative Processing for about 5 weeks. I checked it almost every day. On week 5, the status changed to Approved. Two days later it changed to Issued. I got my passport back about 3 days after that. Total time from interview to passport in hand was about 6 weeks.

A few things I learned:

  • Do not panic if you get a 221g. It is not a denial.
  • The waiting is the hardest part. There is nothing you can do except wait.
  • Do not book non-refundable travel until you have your passport back.
  • If they keep your passport, that is usually a good sign.

My advice for anyone going through 221g:

  • Check your status once a day. Checking more often will just make you anxious.
  • Be patient. Most 221g cases get resolved eventually.
reddit.com
u/Ok_Wrap2912 — 4 days ago

B-1/B-2 visa approved at Hyderabad consulate, full breakdown of questions and process

I had my B-1/B-2 visa interview at the Hyderabad consulate last week and it was approved. I wanted to share my full experience because I know how nervous people get before these interviews.

Here is some practical information about the Hyderabad consulate that I wish I knew beforehand:
I arrived about 30 minutes before my appointment time. They don't let you join the queue earlier than that. The security check was thorough but efficient. You cannot bring any electronics inside. There is a locker facility near the consulate where you can store your phone and other belongings.
The biometrics appointment was on a different day. That process was very straightforward. They took my photo and fingerprints. The whole thing took about 20 minutes.

For the interview, the officer asked me four questions:

  1. What is the purpose of your visit to the US? I said I am planning a vacation to visit my sister who lives in the US and do some sightseeing.
  2. Do your parents have visas? I said yes.
  3. Where do you work and how long have you been there? I answered directly.
  4. What visa does your sister hold? I told them.

Then the officer said my visa was approved. The whole interview was about 4 minutes. The officer did not ask to see any of my supporting documents even though I brought everything - employment letter, bank statements, and my sister's documents.

A few things I think helped:

  • I kept my answers short and direct
  • I was honest and didn't add unnecessary details
  • I had all my documents organized even though they weren't asked for
  • I made eye contact and spoke clearly
reddit.com
u/Ok_Wrap2912 — 4 days ago

Best AI Gateway for a multi-team setup?

We're a mid-sized enterprise with multiple teams starting to use different LLMs for different use cases. Some teams are using OpenAI, others Anthropic, and a few are experimenting with open-source models on our own infrastructure. It's getting messy.

We're looking for an AI Gateway to centralize access, but the options are overwhelming. LiteLLM seems popular and simple. Portkey has more enterprise features. Cloudflare's offering is interesting if you're already in their ecosystem. There's also Kong if you already run their API gateway.

Our main requirements:

  • Unified API across providers so teams don't have to rewrite code
  • Per-team rate limiting and cost tracking
  • Support for on-prem deployment (some of our workloads can't go to the cloud)
  • Basic observability and logging

We're Kubernetes-native, so something that runs in our cluster would be ideal. What are others using in production? Any red flags or things you wish you'd known before choosing?

reddit.com
u/Ok_Wrap2912 — 6 days ago

How are you handling cost attribution for multi-agent workflows?

We're building a multi-agent system for a large enterprise client. It's a pretty standard setup: a router agent that dispatches to specialized agents, each of which calls different LLMs and tools depending on the task. Some agents call OpenAI, some call Anthropic, some call our internal models, and some call external APIs.

The client wants cost attribution per business unit. They want to know: how much did this department spend on LLM calls this month? Which agents are driving the most cost? Which LLM providers are we spending the most on?
The problem is that cost attribution gets complicated when you have agents calling agents, each making multiple LLM calls. A single user query might result in twenty LLM calls across three different providers. We need to attribute those costs back to the original user or business unit, but the traces get lost in the chain.
We've looked at some LLM observability tools, but they're mostly focused on single LLM calls. They don't understand agent identity or the full workflow. I'm worried we're going to end up building a custom cost attribution layer.

Is anyone else dealing with this? How are you tracking cost attribution across complex agentic workflows?

reddit.com
u/Ok_Wrap2912 — 6 days ago

Seldon users, what's your plan for adding agentic capabilities?

We've been a Seldon shop for years. It's been the backbone of our ML inference, handling real-time predictions, canary deployments, and complex inference graphs. Our infrastructure team loves how it runs on Kubernetes and integrates with our existing observability stack.

Now our product teams are asking for agentic AI. They want to build agents that can reason, call tools, and make decisions. Some of these agents need to call our existing Seldon-deployed models. Others need to call LLMs or external APIs.

The question is: do we keep Seldon for inference and bolt on a separate agent framework, or do we look for a platform that combines both? I'm worried about operational complexity if we add another system. But I'm also worried about locking ourselves into something that doesn't support our existing Seldon investment. What are other Seldon users doing? Anyone found a path that preserves their inference stack while adding agentic capabilities?

reddit.com
u/Ok_Wrap2912 — 10 days ago

The inference vs. gateway split is becoming a real operational headache for us

We're a financial services firm running both traditional ML models in production and experimenting with agentic workflows. The traditional models are deployed on Seldon Core, it's been rock solid for real-time inference, canary rollouts, and A/B testing for years. The agentic side is newer; we're using a separate gateway layer for LLM routing, prompt management, and tool calling.

The problem is these are treated as two completely separate infrastructure stacks. Different teams, different dashboards, different governance policies. When an agent calls a traditional model via a tool, tracing that request end-to-end is a nightmare. Compliance wants a single audit trail from user query through agent reasoning to model inference output. Right now, that means stitching together logs from two systems.

We're considering merging these stacks, but that feels like a massive engineering project. Has anyone successfully unified their inference layer and gateway layer? What did it take? Are there platforms that handle both natively, or are we stuck building our own integration?

reddit.com
u/Ok_Wrap2912 — 11 days ago

Anyone containerizing LLM workloads in a hybrid cloud setup? Curious how you're handling security.

We're running containerized AI workloads, mostly LLM inference, across a hybrid cloud setup (on-prem + AWS). Great for flexibility, but it's surfaced some tough security and observability challenges.

Here's what we're wrestling with:

  • Prompt injection filtering, especially via public API input
  • Output sanitization before returning to users
  • Auth and session control across on-prem and cloud zones
  • Logging AI responses in a way that respects data sensitivity

We've started experimenting with a reverse proxy plus gateway approach to inspect, modify, and validate prompt and response traffic at the edge. Kubernetes network policies help enforce segmentation and control traffic flow between workloads.

For scanning model outputs, we're looking at tools like Presidio for PII detection and OpenAI's Moderation API for content filtering. But stitching all this together across hybrid environments is messy. The gateway layer seems like the right place to centralize this, but most open source proxies don't have built-in security policies beyond basic rate limiting.

Anyone else working on this? Curious how other teams are thinking about security at scale for containerized LLMs. Federated learning and secure enclaves like AWS Nitro are on our radar but feel complex to implement with containerized inference pipelines.

reddit.com
u/Ok_Wrap2912 — 11 days ago

How are you handling audit trails for agentic AI workflows?

We're building multi-agent systems for a financial services client. The compliance team is breathing down our necks about auditability. They want to know: which agent made which decision, what data was used, what model was called, and what the final output was. Every step needs to be logged and retrievable.

Traditional logging isn't enough because agents call agents, which call tools, which call LLMs. The trace gets fragmented. We need to reconstruct the entire chain of custody for any given user interaction. This is different from just logging an API call to OpenAI.
We've looked at some LLM observability tools. They're great for tracing a single LLM call but don't understand agent identity or tool invocation. We're considering building a custom tracing layer with OpenTelemetry, but that feels like reinventing the wheel.

What are other teams doing for audit trails in agentic systems? Is there anything that handles the full chain from user query through multiple agents and tools to final response?

reddit.com
u/Ok_Wrap2912 — 12 days ago

Is hiring an SEO agency worth it for a small business?

I've got a small, local business and I'm trying to decide if I should invest in an SEO agency. I've tried some basic stuff myself (optimizing my Google My Business page, adding some keywords to the site), but I'm not ranking anywhere near the top for my local keywords.

Every agency I talk to promises the world, but the quotes I'm getting are huge. It's a big commitment for a small business like mine. I'm worried about paying a ton of money and getting no results. How do I find an agency that actually delivers for a reasonable budget? Any tips on what to look for or avoid would be massively appreciated.

reddit.com
u/Ok_Wrap2912 — 13 days ago

Cloudflare AI Gateway vs dedicated LLM gateways, when to use which

I'm a solo dev building a side project that uses multiple LLMs. Cloudflare AI Gateway is tempting because it's cheap, runs at the edge, and plugs straight into Workers. But I'm thinking long-term. If this grows, I might need real governance, on-prem hosting for enterprise customers, or support for MCP servers.

Cloudflare is clearly built for low latency and caching at the edge, which is great for a public chat app. Where it looks thin is the enterprise side. No RBAC or audit logs for compliance, no on-prem option since it only runs on their infrastructure, and the gateway itself doesn't handle MCP. The routing policies feel basic too.

Dedicated gateways like Portkey or LiteLLM have more, but you either self-host them or pay for their cloud. So for a solo dev who wants something cheap and managed now but might outgrow it into governance and on-prem later, is Cloudflare a trap? Has anyone migrated off Cloudflare AI Gateway after hitting these limits, and what was the breaking point?

reddit.com
u/Ok_Wrap2912 — 16 days ago
▲ 3 r/mlops

LLM observability vs governance, they're not the same thing

I see a lot of people use observability and governance interchangeably for LLM gateways, and I think that's a mistake. Observability is about debugging: latency, token usage, error rates, tracing individual requests. Governance is about control: who can call which model, rate limits per team, PII filtering, audit logs for compliance, cost allocation.

Most gateways are strong on observability. Helicone is basically an observability layer. Portkey does both reasonably well. LiteLLM gives you logging and basic key and budget controls, but policy enforcement is limited. Here's where I'm stuck: we need both, plus the ability to enforce governance across not just LLM calls but tool calls from agents.

For example, an agent calls an LLM, then hits an internal API over MCP, then calls another LLM. How do you govern and observe that whole chain? Single-layer gateways don't seem to handle it. Has anyone found something that treats observability and governance as separate but integrated concerns?

reddit.com
u/Ok_Wrap2912 — 17 days ago