fix: Comment out setTemperature calls for deterministic output in agents and utils

This commit is contained in:
Willie Zutz 2025-06-23 09:06:09 -06:00
parent b97383bf0f
commit feec1cd608
5 changed files with 14 additions and 9 deletions

View file

@ -39,7 +39,7 @@ export class TaskManagerAgent {
*/
async execute(state: typeof AgentState.State): Promise<Command> {
try {
setTemperature(this.llm, 0); // Set temperature to 0 for deterministic output
//setTemperature(this.llm, 0); // Set temperature to 0 for deterministic output
// Check if we're in task progression mode (tasks already exist and we're processing them)
if (state.tasks && state.tasks.length > 0) {