This commit is contained in:
Gaetan Hurel 2025-06-30 17:13:52 +02:00
parent 788c2f012c
commit 98aa3301d1
No known key found for this signature in database
5 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@ def create_logs_analyzer_worker():
tools = [configured_remote_server, print_poem]
return create_react_agent(
model=ChatOpenAI(model="gpt-4o-mini", temperature=0),
model=ChatOpenAI(model="gpt-4.1", temperature=0),
tools=tools,
prompt="""You are an expert Logs Analysis Agent specialized in investigating and diagnosing issues through log files across different operating systems.

View File

@ -12,7 +12,7 @@ def create_os_detector_worker():
tools = [configured_remote_server, print_poem]
return create_react_agent(
model=ChatOpenAI(model="gpt-4o-mini", temperature=0),
model=ChatOpenAI(model="gpt-4.1", temperature=0),
tools=tools,
prompt="""You are an expert OS Detection Agent specialized in identifying and analyzing operating systems across different platforms.

View File

@ -12,7 +12,7 @@ def create_performance_analyzer_worker():
tools = [configured_remote_server, print_poem]
return create_react_agent(
model=ChatOpenAI(model="gpt-4o-mini", temperature=0),
model=ChatOpenAI(model="gpt-4.1", temperature=0),
tools=tools,
prompt="""You are an expert Performance Analysis Agent specialized in monitoring and optimizing system performance across different operating systems.

View File

@ -13,7 +13,7 @@ def create_service_discovery_worker():
tools = [configured_remote_server]
return create_react_agent(
model=ChatOpenAI(model="gpt-4o-mini", temperature=0),
model=ChatOpenAI(model="gpt-4.1", temperature=0),
tools=tools,
prompt="""You are an expert Service Discovery Agent specialized in finding ALL services running on a system, regardless of their deployment method.

View File

@ -58,7 +58,7 @@ def create_sysadmin_supervisor():
"""Create the main supervisor that coordinates between specialized agents."""
# Get the base model
model = ChatOpenAI(model="gpt-4o-mini", temperature=0)
model = ChatOpenAI(model="gpt-4.1", temperature=0)
# Create specialized workers
os_detector = create_os_detector_worker()