update imports

This commit is contained in:
Nate Kelley 2025-08-08 20:39:15 -06:00
parent 79472ea766
commit 95d081766e
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 1 additions and 4 deletions

View File

@ -44,9 +44,6 @@ export async function generateMetadata({
title: response.title || 'New Chat'
};
} catch (error) {
console.log('-----rest-----', rest);
console.log('----params------', params);
console.log('-----chatId-----', chatId);
console.error('Failed to fetch chat title:', chatId, error);
return {
title: 'New Chat'

View File

@ -6,10 +6,10 @@ import type { CoreMessage } from 'ai';
import { wrapTraced } from 'braintrust';
import { z } from 'zod';
import { thinkAndPrepWorkflowInputSchema } from '../schemas/workflow-schemas';
import { GPT5Mini } from '../utils/models/gpt-5-mini';
import { Haiku35 } from '../utils/models/haiku-3-5';
import { appendToConversation, standardizeMessages } from '../utils/standardizeMessages';
import type { AnalystRuntimeContext } from '../workflows/analyst-workflow';
import { GPT5Mini } from '../utils/models/gpt-5-mini';
const inputSchema = thinkAndPrepWorkflowInputSchema;