-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
355 lines (331 loc) · 12.4 KB
/
Copy pathindex.html
File metadata and controls
355 lines (331 loc) · 12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
---
layout: page
title: Venkata Rami Reddy Kallu
permalink: /
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Venkata Rami Reddy Kallu</title>
<meta name="description" content="Senior AI Engineer | LLM Inference, Serving Systems, Safety & Privacy" />
<style>
:root{
--bg:#0b1220;
--card:#101b33;
--text:#e9eefc;
--muted:#b7c3e8;
--soft:#93a6db;
--line:rgba(255,255,255,.10);
--accent:#7aa2ff;
--accent2:#9bffd8;
--shadow: 0 12px 30px rgba(0,0,0,.35);
--radius:16px;
--max: 980px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
background:
radial-gradient(1200px 700px at 10% 10%, rgba(122,162,255,.18), transparent 60%),
radial-gradient(900px 600px at 90% 25%, rgba(155,255,216,.12), transparent 55%),
linear-gradient(180deg, #070c16 0%, var(--bg) 40%, #070c16 100%);
color:var(--text);
line-height:1.6;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max);margin:0 auto;padding:48px 20px 72px}
.topbar{
display:flex;align-items:center;justify-content:space-between;
gap:12px;margin-bottom:18px;
color:var(--muted);
font-size:14px;
flex-wrap:wrap;
}
.pill{
display:inline-flex;align-items:center;gap:8px;
padding:8px 12px;border:1px solid var(--line);
border-radius:999px;background:rgba(255,255,255,.04);
color:var(--muted);
white-space:nowrap;
}
nav a{
margin-left:10px;
padding:8px 10px;
border-radius:10px;
border:1px solid transparent;
}
nav a:hover{border-color:var(--line);text-decoration:none}
.hero{
border:1px solid var(--line);
background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
border-radius:var(--radius);
padding:28px;
box-shadow:var(--shadow);
}
h1{
font-size:40px;line-height:1.1;margin:0 0 10px;
letter-spacing:-0.02em;
}
.subtitle{
margin:0 0 18px;
color:var(--muted);
font-weight:700;
}
.lede{margin:0;color:var(--text);font-size:16.5px}
.cta{
display:flex;flex-wrap:wrap;gap:10px;margin-top:18px
}
.btn{
display:inline-flex;align-items:center;gap:10px;
padding:10px 14px;border-radius:12px;
border:1px solid var(--line);
background:rgba(255,255,255,.04);
color:var(--text);
font-weight:700;
transition:transform .08s ease, background .15s ease;
}
.btn:hover{background:rgba(255,255,255,.08);text-decoration:none}
.btn:active{transform:translateY(1px)}
.btn.primary{
border-color:rgba(122,162,255,.35);
background:linear-gradient(180deg, rgba(122,162,255,.25), rgba(122,162,255,.12));
}
.grid{
display:grid;
grid-template-columns: 1.1fr .9fr;
gap:16px;
margin-top:18px;
}
.triple{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap:16px;
margin-top:14px;
}
@media (max-width: 860px){
.grid,.triple{grid-template-columns:1fr}
h1{font-size:34px}
nav{width:100%}
nav a{margin-left:0;margin-right:10px}
}
.card{
border:1px solid var(--line);
background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
border-radius:var(--radius);
padding:20px;
box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.card h2{margin:0 0 10px;font-size:20px}
.card h3{margin:0 0 8px;font-size:18px}
.muted{color:var(--muted)}
.small{font-size:14px;color:var(--muted)}
ul{margin:10px 0 0 18px;padding:0}
li{margin:6px 0}
.kicker{
display:flex;align-items:center;justify-content:space-between;gap:10px;
margin-top:26px;margin-bottom:10px;
flex-wrap:wrap;
}
.kicker h2{margin:0;font-size:22px}
.divider{height:1px;background:var(--line);margin:22px 0}
.tagrow{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.tag{
padding:6px 10px;border-radius:999px;
border:1px solid var(--line);
background:rgba(255,255,255,.03);
color:var(--soft);
font-size:13px;
white-space:nowrap;
}
footer{
margin-top:30px;color:var(--muted);font-size:13px;
display:flex;flex-wrap:wrap;gap:10px;justify-content:space-between;align-items:center;
}
.dot{opacity:.55}
</style>
</head>
<body>
<div class="wrap">
<div class="topbar">
<div class="pill">LLM Inference • Serving Systems • Safety • Privacy</div>
<div class="pill">Apex, North Carolina</div>
<nav class="pill" aria-label="Site">
<a href="/">Home</a>
<a href="/about/">About</a>
<a href="/blog/">Blog</a>
</nav>
</div>
<section class="hero">
<h1>Venkata Rami Reddy Kallu</h1>
<p class="subtitle">Senior AI Engineer | LLM Inference, Serving Systems, Safety & Privacy</p>
<p class="lede">
I design and build <strong>production-grade AI systems</strong> across
<strong>LLM inference, serving infrastructure, and safe tool execution</strong>.
My work spans <strong>runtime optimization</strong>, <strong>auditable AI workflows</strong>,
and <strong>privacy-preserving ML</strong> for text and audio applications.
</p>
<div class="cta">
<a class="btn primary" href="https://github.com/ramsred/policygraph-mcp" target="_blank" rel="noreferrer">
PolicyGraph (GitHub)
</a>
<a class="btn" href="mailto:venkataramireddy534@gmail.com">Email</a>
<a class="btn" href="https://github.com/ramsred" target="_blank" rel="noreferrer">GitHub</a>
<!-- Add LinkedIn / Resume when ready -->
<!-- <a class="btn" href="YOUR_LINKEDIN_URL" target="_blank" rel="noreferrer">LinkedIn</a> -->
<!-- <a class="btn" href="/assets/resume.pdf" target="_blank" rel="noreferrer">Resume</a> -->
</div>
<div class="grid">
<div class="card">
<h2>What I build</h2>
<p class="muted" style="margin-top:0">
My work sits at the boundary between <strong>engineering and applied research</strong>,
with a focus on systems that are <strong>measurable</strong>, <strong>reliable</strong>,
<strong>auditable</strong>, and <strong>safe by design</strong>.
</p>
<ul>
<li>LLM inference and serving systems</li>
<li>Safe and governed tool-using AI runtimes</li>
<li>Benchmarking, runtime validation, and deployment workflows</li>
<li>Privacy-preserving synthetic voice detection</li>
</ul>
<p class="muted" style="margin-top:12px;margin-bottom:0">
I’m especially interested in <strong>AI inference</strong>, <strong>serving platforms</strong>,
<strong>runtime enforcement</strong>, and <strong>privacy-conscious production AI systems</strong>.
</p>
</div>
<div class="card">
<h2>Now</h2>
<p class="muted" style="margin-top:0">
What I’m actively building and exploring:
</p>
<ul>
<li>PolicyGraph: a reproducible safety runtime for MCP tool execution</li>
<li>Inference systems work around vLLM, TensorRT-LLM, Triton, and Kubernetes</li>
<li>OWASP-aligned evaluation and contract tests for agent safety</li>
<li>Follow-up research on runtime enforcement patterns and privacy-preserving AI</li>
</ul>
<div class="divider"></div>
<h2 style="margin-top:0">Focus</h2>
<div class="tagrow">
<span class="tag">LLM Inference</span>
<span class="tag">Serving Systems</span>
<span class="tag">Kubernetes</span>
<span class="tag">AI Safety</span>
<span class="tag">AI Governance</span>
<span class="tag">Tool-Using Agents</span>
<span class="tag">Privacy-Preserving ML</span>
<span class="tag">Synthetic Voice Detection</span>
</div>
</div>
</div>
</section>
<div class="kicker">
<h2>Featured work</h2>
<span class="small">Selected highlights across inference, safety, and privacy</span>
</div>
<section class="triple">
<div class="card">
<h3>LLM Inference Systems Lab</h3>
<p class="muted" style="margin-top:0">
Hands-on work across modern LLM serving stacks and deployment workflows.
</p>
<ul>
<li>vLLM, TensorRT-LLM, and Triton-based serving experiments</li>
<li>Quantization, KV-cache behavior, and long-context memory tradeoffs</li>
<li>Kubernetes-based deployment and benchmarking workflows</li>
</ul>
</div>
<div class="card">
<h3>PolicyGraph</h3>
<p class="muted" style="margin-top:0">
A policy-gated runtime for <strong>safe and auditable</strong> MCP tool execution.
</p>
<ul>
<li>Default-deny tool authorization</li>
<li>Schema-constrained planning</li>
<li>Typed output validation</li>
<li>Evidence-locked summaries</li>
</ul>
<div class="cta" style="margin-top:14px">
<a class="btn primary" href="https://github.com/ramsred/policygraph-mcp" target="_blank" rel="noreferrer">
View repository
</a>
</div>
</div>
<div class="card">
<h3>Privacy-Preserving Synthetic Voice Detection</h3>
<p class="muted" style="margin-top:0">
Filed systems patent work focused on detecting spoofed speech while minimizing
speaker identity leakage.
</p>
<ul>
<li>Detect AI-generated or spoofed speech reliably</li>
<li>Reduce sensitive identity leakage</li>
<li>Support privacy-sensitive deployment environments</li>
</ul>
</div>
</section>
<div class="kicker">
<h2>Selected capabilities</h2>
<span class="small">A concise view of the areas I work across</span>
</div>
<section class="grid">
<div class="card">
<h2>Inference & Serving</h2>
<div class="tagrow">
<span class="tag">vLLM</span>
<span class="tag">TensorRT-LLM</span>
<span class="tag">Triton</span>
<span class="tag">Quantization</span>
<span class="tag">KV Cache</span>
<span class="tag">Benchmarking</span>
<span class="tag">Long Context</span>
</div>
</div>
<div class="card">
<h2>Safety, Governance & Privacy</h2>
<div class="tagrow">
<span class="tag">Runtime Validation</span>
<span class="tag">Tool Governance</span>
<span class="tag">Auditable AI</span>
<span class="tag">Evidence-Backed Summaries</span>
<span class="tag">Privacy-Preserving ML</span>
<span class="tag">Synthetic Voice Detection</span>
</div>
</div>
</section>
<div class="kicker">
<h2>Research & IP</h2>
<span class="small">Production systems with research depth</span>
</div>
<section class="card">
<h3>PolicyGraph Paper + Patent Direction</h3>
<p class="muted" style="margin-top:0">
My broader work explores how to make AI systems safer and more enforceable in practice —
through <strong>policy-gated execution</strong>, <strong>runtime validation</strong>,
and <strong>privacy-preserving system design</strong>.
</p>
<ul>
<li>PolicyGraph submitted to TechRxiv</li>
<li>Filed systems patent on privacy-preserving synthetic voice detection</li>
<li>Ongoing follow-up work on runtime enforcement patterns for safe AI systems</li>
</ul>
</section>
<footer>
<div>
<a href="mailto:venkataramireddy534@gmail.com">venkataramireddy534@gmail.com</a>
<span class="dot">•</span>
<a href="https://github.com/ramsred" target="_blank" rel="noreferrer">github.com/ramsred</a>
</div>
<div class="small">© <span id="y"></span> Venkata Rami Reddy Kallu</div>
</footer>
</div>
<script>
document.getElementById("y").textContent = new Date().getFullYear();
</script>
</body>
</html>