Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
94273a5
feat: implement `AI Bridge` heading to `/deployment/observability`
jakehwll Nov 17, 2025
0e77551
chore: `lint`/`fmt` fix
jakehwll Nov 17, 2025
53ee00f
fix: dont show `AI Bridge` heading unless enabled
jakehwll Nov 17, 2025
51cb6b9
fix: prefer to use `entitlement` over `featureVisibility`
jakehwll Nov 17, 2025
961045a
chore: commit bump
jakehwll Nov 18, 2025
8f9179e
feat: add testcase for `AIBridge`
jakehwll Nov 19, 2025
48aa5b5
fix: rename `AIBridge` to `AI Bridge`
jakehwll Nov 27, 2025
c8d605d
Merge branch 'main' into jakehwll/ai-bridge-observability
jakehwll Nov 27, 2025
9cd6621
fix: hide `access key` and `openai` key
jakehwll Nov 27, 2025
eebd457
chore: lint debug `AIBridge`
jakehwll Nov 27, 2025
31ad801
fix: restore `hidden` values
jakehwll Nov 27, 2025
dd86468
fix: hide `secret`ly annotated keys from observability
jakehwll Nov 27, 2025
a289020
chore: `AIBridge` -> `AI Bridge`
jakehwll Nov 27, 2025
9fe4f11
chore: `AIBridge` -> `AI_Bridge`
jakehwll Nov 27, 2025
afc8296
fix: remove yaml keys for security
jakehwll Nov 28, 2025
412c4cd
fix: remove keys from golden tests
jakehwll Nov 28, 2025
3f10ab6
fix: nuke keys from `server.md` (gen)
jakehwll Nov 28, 2025
1569749
fix: ignore keys in `deployment_test.go`
jakehwll Nov 28, 2025
5d2cd7a
Merge branch 'main' into jakehwll/ai-bridge-observability
jakehwll Nov 28, 2025
6e551ab
Merge branch 'main' into jakehwll/ai-bridge-observability
jakehwll Nov 29, 2025
0af34ae
Merge branch 'main' into jakehwll/ai-bridge-observability
jakehwll Dec 1, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const ObservabilitySettingsPage: FC = () => {
<ObservabilitySettingsPageView
options={deploymentConfig.options}
featureAuditLogEnabled={entitlements.features.audit_log.enabled}
featureAIBridgeEnabled={entitlements.features.aibridge.enabled}
isPremium={hasPremiumLicense}
/>
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,18 @@ import OptionsTable from "../OptionsTable";
type ObservabilitySettingsPageViewProps = {
options: SerpentOption[];
featureAuditLogEnabled: boolean;
featureAIBridgeEnabled: boolean;
isPremium: boolean;
};

export const ObservabilitySettingsPageView: FC<
ObservabilitySettingsPageViewProps
> = ({ options, featureAuditLogEnabled, isPremium }) => {
> = ({
options,
featureAuditLogEnabled,
isPremium,
featureAIBridgeEnabled,
}) => {
return (
<Stack direction="column" spacing={6}>
<div>
Expand Down Expand Up @@ -97,6 +103,29 @@ export const ObservabilitySettingsPageView: FC<
)}
/>
</div>

{featureAIBridgeEnabled && (
<div>
<SettingsHeader
actions={
<SettingsHeaderDocsLink href={docs("/ai-coder/ai-bridge")} />
}
>
<SettingsHeaderTitle hierarchy="secondary" level="h2">
AI Bridge
</SettingsHeaderTitle>
<SettingsHeaderDescription>
Monitor and manage AI requests across your deployment.
</SettingsHeaderDescription>
</SettingsHeader>

<OptionsTable
options={options.filter((o) =>
deploymentGroupHasParent(o.group, "AIBridge"),
)}
/>
</div>
)}
</Stack>
);
};
Loading