mirror of https://github.com/buster-so/buster.git
update imports
This commit is contained in:
parent
79472ea766
commit
95d081766e
|
@ -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'
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue