Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,12 @@ def team_brash():
@app.route("/team41")
def team_41():
return render_template('teams/team41.html')

@app.route("/team_jose_caden_wanni")
def team_jose_caden_wanni():
return render_template('teams/team_jose_caden_wanni.html')

@app.route("/jackie_chelsea")
def team_jackie_chelsea():
return render_template('teams/jackie_chelsea.html')

Binary file added static/img/Jackie_Luc.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 24 additions & 8 deletions templates/students_2025.html
Original file line number Diff line number Diff line change
Expand Up @@ -865,12 +865,28 @@ <h1> Summer 2025 Cohort </h1>
<p> What I am looking for is to get real experinece in Summer open source project </p>
<a href="microinternship-c1"></a>
</div>
<div class="student-container">
<div>
<img src="/static/img/Joon_Kwon.jpg">
</div>
</div>

<div class="student-container">
<div>
<img src="static/img/Jackie_Luc.JPG">
</div>
<div class="student-name"> Jackie Luc </div>
<div> School: CSU Monterey Bay </div>
<p>What I most look forward to about this internship is making a contribution to an open source project, to gain some experience, and to learn new things!</p>
<a href="/jackie_chelsea">Team page</a>
</div>

<div class="student-container">
<div>
<img src="static/img/XuanHienPham.jpg">
</div>
<div class="student-name"> Xuan Hien Pham </div>
<div> School: John Jay College of Criminal Justice </div>
<p> What I am most looking forward to collab with other students to increase my technical and communication skills </p>
<a href="/jackie_chelsea">Team: Jackie Luc & Xuan Hien Pham</a>
</div>

<div class="student-container">
<div>
<img src="static/img/katya.jpg">
</div>
Expand All @@ -891,14 +907,15 @@ <h1> Summer 2025 Cohort </h1>
</div>

<div class="student-container">

<div>
<img src="/static/img/Joon_Kwon.jpg">
</div>
<div class="student-name"> Kujoon Kwon </div>
<div> School: Orange Coast College </div>
<p> What I look forward is to have experience in 2025 summmer open source project </p>
<a href="Team page">Team page</a>
</div>


<div class="student-container">
<div>
<img src="/static/img/robert petersen 2025.jpg">
Expand All @@ -910,6 +927,5 @@ <h1> Summer 2025 Cohort </h1>
Integrate Nvidia NIM microservices into TensorZero #767</a>
</div>


</body>
</html>
16 changes: 16 additions & 0 deletions templates/teams/jackie_chelsea.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<html>
<head>
<title>TensorZero</title>
<h1>TensorZero is an open-source Rust gateway for industrial-grade LLM applications, offering high-performance inference, observability, optimization,
and evaluation.</h1>
</head>
<body>
<h3>
<a href="https://github.com/tensorzero/tensorzero/issues/1839">Our Github Issue</a>
</h3>
<p>The task we've been assigned is asking me to make the AI responses show text appearing word by word, like ChatGPT.
This is called “streaming”. It means that instead of waiting for the full response, the answer should come back piece
by piece as they're generated in real time. The problem is that this format is in JSON, and Rust can't parse incomplete
JSON chunks.</p>
</body>
</html>