feat(suggestions-agent): fix type errors

This commit is contained in:
ItzCrazyKns
2025-12-13 22:19:52 +05:30
parent 56e47d6c39
commit 3949748bbd

View File

@@ -19,7 +19,7 @@ const generateSuggestions = async (
input: SuggestionGeneratorInput,
llm: BaseLLM<any>,
) => {
const res = await llm.generateObject<z.infer<typeof schema>>({
const res = await llm.generateObject<typeof schema>({
messages: [
{
role: 'system',