🎉 first commit
This commit is contained in:
50
app/lib/hooks/usePromptEnhancer.ts
Normal file
50
app/lib/hooks/usePromptEnhancer.ts
Normal file
@@ -0,0 +1,50 @@
|
||||
import { useChat } from '@ai-sdk/react';
|
||||
import { DefaultChatTransport, type UIMessage } from 'ai';
|
||||
import { useEffect, useState } from 'react';
|
||||
import { toast } from 'sonner';
|
||||
import { createScopedLogger } from '~/utils/logger';
|
||||
|
||||
const logger = createScopedLogger('usePromptEnhancement');
|
||||
|
||||
export function usePromptEnhancer() {
|
||||
const { messages, sendMessage } = useChat<UIMessage>({
|
||||
transport: new DefaultChatTransport({
|
||||
api: '/api/enhancer',
|
||||
}),
|
||||
onError: (error) => {
|
||||
logger.error('Error enhancing prompt:', error);
|
||||
toast.error('提示词优化失败');
|
||||
},
|
||||
onFinish: () => {
|
||||
setIsLoading(false);
|
||||
toast.success('提示词优化成功');
|
||||
},
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
if (messages.length > 0) {
|
||||
const lastMessage = messages[messages.length - 1];
|
||||
if (lastMessage.role === 'assistant') {
|
||||
const content = lastMessage.parts.find((part) => part.type === 'text')?.text;
|
||||
setEnhancedInput(content || '');
|
||||
}
|
||||
}
|
||||
}, [messages]);
|
||||
|
||||
const [isLoading, setIsLoading] = useState(false);
|
||||
const [enhancedInput, setEnhancedInput] = useState('');
|
||||
|
||||
const resetEnhancer = () => {
|
||||
setIsLoading(false);
|
||||
setEnhancedInput('');
|
||||
};
|
||||
|
||||
const enhancePrompt = async (originalInput: string) => {
|
||||
setIsLoading(true);
|
||||
sendMessage({
|
||||
text: originalInput,
|
||||
});
|
||||
};
|
||||
|
||||
return { enhancedInput, isLoading, enhancePrompt, resetEnhancer };
|
||||
}
|
||||
Reference in New Issue
Block a user