Skip to content
Merged
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
Binary file added public/images/authors/jetchiang.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/authors/jetchiang.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/blog/authors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const authors: Author[] = [
id: "jetchiang",
name: "Jet Chiang",
title: "Linux Foundation Mentee",
photo: "/images/authors/jetchiang.png",
photo: "/images/authors/jetchiang.jpg",
bio: "Jet is an aspiring machine learning engineer + researcher studying at the University of Toronto. He is the Linux Foundation Mentee at Kagent for 2025.",
},
];
Expand Down
2 changes: 1 addition & 1 deletion src/app/docs/kagent/resources/helm/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ A Helm chart for kagent, built with Google ADK
| file://../agents/promql | promql-agent | |
| file://../tools/grafana-mcp | grafana-mcp | |
| file://../tools/querydoc | querydoc | |
| oci://ghcr.io/kagent-dev/kmcp/helm | kmcp | ${KMCP_VERSION} |
| oci://ghcr.io/kagent-dev/kmcp/helm | kmcp | $KMCP_VERSION |
| oci://ghcr.io/kagent-dev/tools/helm | kagent-tools | 0.0.12 |

## Values
Expand Down
2 changes: 1 addition & 1 deletion src/components/icons/kagent-logo-text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { useTheme } from "next-themes";
import { useState, useEffect } from "react";

export default function kagentLogoWithText({ className } : { className?: string }) {
export default function KagentLogoWithText({ className } : { className?: string }) {
const { resolvedTheme } = useTheme();
const [mounted, setMounted] = useState(false);

Expand Down