Skip to content

Commit

Permalink
fix(followups): use same model for follow-ups
Browse files Browse the repository at this point in the history
  • Loading branch information
Fortyseven committed Oct 13, 2024
1 parent 5885bd4 commit 6bea41c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TabPages/Conversation/Chat/FollowUps.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Only respond with valid JSON in this format: ["suggestion", "suggestion2"]`
console.debug('🔁 Generating followups...');
let response = await ollama().generate({
model: 'llama3.2:latest',
model: $chatState.model_name,
prompt: lastResponse,
system: PROMPT_FOLLOWUP[$followUpType],
// format: 'json',
Expand Down

0 comments on commit 6bea41c

Please sign in to comment.