We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 226de08 commit 218725aCopy full SHA for 218725a
1 file changed
apps/webapp/app/components/runs/v3/ai/AIToolsInventory.tsx
@@ -1,15 +1,16 @@
1
import { useState } from "react";
2
import { CodeBlock } from "~/components/code/CodeBlock";
3
import type { AISpanData, ToolDefinition } from "./types";
4
+import { Paragraph } from "~/components/primitives/Paragraph";
5
6
export function AIToolsInventory({ aiData }: { aiData: AISpanData }) {
7
const defs = aiData.toolDefinitions ?? [];
8
const calledNames = getCalledToolNames(aiData);
9
10
if (defs.length === 0) {
11
return (
- <div className="px-3 py-6 text-center text-xs text-text-dimmed">
12
- No tool definitions available for this span.
+ <div className="px-3 py-6 text-center">
13
+ <Paragraph variant="small/dimmed">No tool definitions available for this span.</Paragraph>
14
</div>
15
);
16
}
0 commit comments