This commit is contained in:
Simon Knott 2025-02-13 10:35:33 +01:00
parent 2d11c291d8
commit 8e562bbb29
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC

View file

@ -27,9 +27,8 @@ import { fixTestPrompt } from '@web/components/prompts';
import type { GitCommitInfo } from '@testIsomorphic/types';
import { AIConversation } from './aiConversation';
import { ToolbarButton } from '@web/components/toolbarButton';
import { useLLMChat, useLLMConversation } from './llm';
import { LLMMessage, useLLMChat, useLLMConversation } from './llm';
import { useAsyncMemo } from '@web/uiUtils';
import { LLMMessage } from '@isomorphic/llm';
const GitCommitInfoContext = React.createContext<GitCommitInfo | undefined>(undefined);