Test against fastmcp (#6666)

This commit is contained in:
Jack Amadeo
2026-01-23 16:11:32 -05:00
committed by GitHub
parent bb82c062b1
commit 1bf952e813
15 changed files with 105 additions and 222 deletions
+1 -3
View File
@@ -73,9 +73,7 @@ const PairRouteWrapper = ({
sessionId: string;
initialMessage?: UserInput;
}>;
setActiveSessions: (
sessions: Array<{ sessionId: string; initialMessage?: UserInput }>
) => void;
setActiveSessions: (sessions: Array<{ sessionId: string; initialMessage?: UserInput }>) => void;
}) => {
const { extensionsList } = useConfig();
const location = useLocation();
+1 -3
View File
@@ -80,9 +80,7 @@ export default function ApiKeyTester({ onSuccess, onStartTesting }: ApiKeyTester
<h3 className="font-medium text-text-standard text-sm sm:text-base">
Quick Setup with API Key
</h3>
<span className="text-text-muted text-xs sm:text-sm">
Auto-detect your provider
</span>
<span className="text-text-muted text-xs sm:text-sm">Auto-detect your provider</span>
</div>
</div>
+3 -1
View File
@@ -437,7 +437,9 @@ export default function BaseChat({
<div className="block h-8" />
</>
) : !recipe && showPopularTopics ? (
<PopularChatTopics append={(text: string) => handleSubmit({ msg: text, images: [] })} />
<PopularChatTopics
append={(text: string) => handleSubmit({ msg: text, images: [] })}
/>
) : null}
</ScrollArea>
@@ -140,9 +140,7 @@ export default function ElicitationRequest({
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span>
Waiting for your response ({formatTime(timeRemaining)} remaining)
</span>
<span>Waiting for your response ({formatTime(timeRemaining)} remaining)</span>
</div>
</div>
</div>
+3 -1
View File
@@ -69,7 +69,9 @@ export type AnalyticsEvent =
| { name: 'onboarding_started'; properties: Record<string, never> }
| {
name: 'onboarding_provider_selected';
properties: { method: 'api_key' | 'openrouter' | 'tetrate' | 'chatgpt_codex' | 'ollama' | 'other' };
properties: {
method: 'api_key' | 'openrouter' | 'tetrate' | 'chatgpt_codex' | 'ollama' | 'other';
};
}
| {
name: 'onboarding_completed';