use 4.1
This commit is contained in:
parent
788c2f012c
commit
98aa3301d1
@ -12,7 +12,7 @@ def create_logs_analyzer_worker():
|
|||||||
tools = [configured_remote_server, print_poem]
|
tools = [configured_remote_server, print_poem]
|
||||||
|
|
||||||
return create_react_agent(
|
return create_react_agent(
|
||||||
model=ChatOpenAI(model="gpt-4o-mini", temperature=0),
|
model=ChatOpenAI(model="gpt-4.1", temperature=0),
|
||||||
tools=tools,
|
tools=tools,
|
||||||
prompt="""You are an expert Logs Analysis Agent specialized in investigating and diagnosing issues through log files across different operating systems.
|
prompt="""You are an expert Logs Analysis Agent specialized in investigating and diagnosing issues through log files across different operating systems.
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ def create_os_detector_worker():
|
|||||||
tools = [configured_remote_server, print_poem]
|
tools = [configured_remote_server, print_poem]
|
||||||
|
|
||||||
return create_react_agent(
|
return create_react_agent(
|
||||||
model=ChatOpenAI(model="gpt-4o-mini", temperature=0),
|
model=ChatOpenAI(model="gpt-4.1", temperature=0),
|
||||||
tools=tools,
|
tools=tools,
|
||||||
prompt="""You are an expert OS Detection Agent specialized in identifying and analyzing operating systems across different platforms.
|
prompt="""You are an expert OS Detection Agent specialized in identifying and analyzing operating systems across different platforms.
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ def create_performance_analyzer_worker():
|
|||||||
tools = [configured_remote_server, print_poem]
|
tools = [configured_remote_server, print_poem]
|
||||||
|
|
||||||
return create_react_agent(
|
return create_react_agent(
|
||||||
model=ChatOpenAI(model="gpt-4o-mini", temperature=0),
|
model=ChatOpenAI(model="gpt-4.1", temperature=0),
|
||||||
tools=tools,
|
tools=tools,
|
||||||
prompt="""You are an expert Performance Analysis Agent specialized in monitoring and optimizing system performance across different operating systems.
|
prompt="""You are an expert Performance Analysis Agent specialized in monitoring and optimizing system performance across different operating systems.
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ def create_service_discovery_worker():
|
|||||||
tools = [configured_remote_server]
|
tools = [configured_remote_server]
|
||||||
|
|
||||||
return create_react_agent(
|
return create_react_agent(
|
||||||
model=ChatOpenAI(model="gpt-4o-mini", temperature=0),
|
model=ChatOpenAI(model="gpt-4.1", temperature=0),
|
||||||
tools=tools,
|
tools=tools,
|
||||||
prompt="""You are an expert Service Discovery Agent specialized in finding ALL services running on a system, regardless of their deployment method.
|
prompt="""You are an expert Service Discovery Agent specialized in finding ALL services running on a system, regardless of their deployment method.
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ def create_sysadmin_supervisor():
|
|||||||
"""Create the main supervisor that coordinates between specialized agents."""
|
"""Create the main supervisor that coordinates between specialized agents."""
|
||||||
|
|
||||||
# Get the base model
|
# Get the base model
|
||||||
model = ChatOpenAI(model="gpt-4o-mini", temperature=0)
|
model = ChatOpenAI(model="gpt-4.1", temperature=0)
|
||||||
|
|
||||||
# Create specialized workers
|
# Create specialized workers
|
||||||
os_detector = create_os_detector_worker()
|
os_detector = create_os_detector_worker()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user