Skip to content

Commit

Permalink
refactor: remove debug logging from streamText function
Browse files Browse the repository at this point in the history
- Eliminated console log statements used for debugging in the streamText function.
- Streamlined code for better readability and performance.
  • Loading branch information
vurtnec2014 committed Dec 20, 2024
1 parent 4a6d8a3 commit fb57059
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/lib/.server/llm/stream-text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ export function streamText(messages: Messages, env: Env, options?: StreamingOpti
}

case 'custom': {
console.log('1111', messages);
console.log('222', process.env.MODEL);

return _streamText({
model: getCustomModel(env),
system: getSystemPrompt(),
Expand Down

0 comments on commit fb57059

Please sign in to comment.