Test against fastmcp (#6666)
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user