# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
This commit is contained in:
Eric Huang 2025-06-25 20:10:45 -07:00
parent 114946ae88
commit a4d84f7805
22 changed files with 821 additions and 38 deletions

View file

@ -5,7 +5,7 @@ import { useParams } from "next/navigation";
import type { ResponseObject } from "llama-stack-client/resources/responses/responses";
import { OpenAIResponse, InputItemListResponse } from "@/lib/types";
import { ResponseDetailView } from "@/components/responses/responses-detail";
import { client } from "@/lib/client";
import { getClient } from "@/lib/client";
export default function ResponseDetailPage() {
const params = useParams();
@ -59,6 +59,8 @@ export default function ResponseDetailPage() {
setResponseDetail(null);
setInputItems(null);
const client = getClient();
try {
const [responseResult, inputItemsResult] = await Promise.allSettled([
client.responses.retrieve(id),