|
| 1 | +# SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved. |
| 2 | +# SPDX-License-Identifier: Apache-2.0 |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | + |
| 16 | +general: |
| 17 | + use_uvloop: true |
| 18 | + |
| 19 | +functions: |
| 20 | + hardware_check: |
| 21 | + _type: hardware_check |
| 22 | + llm_name: tool_reasoning_llm |
| 23 | + test_mode: false |
| 24 | + host_performance_check: |
| 25 | + _type: host_performance_check |
| 26 | + llm_name: tool_reasoning_llm |
| 27 | + test_mode: false |
| 28 | + monitoring_process_check: |
| 29 | + _type: monitoring_process_check |
| 30 | + llm_name: tool_reasoning_llm |
| 31 | + test_mode: false |
| 32 | + network_connectivity_check: |
| 33 | + _type: network_connectivity_check |
| 34 | + llm_name: tool_reasoning_llm |
| 35 | + test_mode: false |
| 36 | + telemetry_metrics_host_heartbeat_check: |
| 37 | + _type: telemetry_metrics_host_heartbeat_check |
| 38 | + llm_name: tool_reasoning_llm |
| 39 | + test_mode: false |
| 40 | + telemetry_metrics_host_performance_check: |
| 41 | + _type: telemetry_metrics_host_performance_check |
| 42 | + llm_name: tool_reasoning_llm |
| 43 | + test_mode: false |
| 44 | + telemetry_metrics_analysis_agent: |
| 45 | + _type: telemetry_metrics_analysis_agent |
| 46 | + tool_names: |
| 47 | + - telemetry_metrics_host_heartbeat_check |
| 48 | + - telemetry_metrics_host_performance_check |
| 49 | + llm_name: telemetry_metrics_analysis_agent_llm |
| 50 | + maintenance_check: |
| 51 | + _type: maintenance_check |
| 52 | + llm_name: maintenance_check_llm |
| 53 | + static_data_path: examples/alert_triage_agent/data/maintenance_static_dataset.csv |
| 54 | + categorizer: |
| 55 | + _type: categorizer |
| 56 | + llm_name: categorizer_llm |
| 57 | + |
| 58 | +workflow: |
| 59 | + _type: alert_triage_agent |
| 60 | + tool_names: |
| 61 | + - hardware_check |
| 62 | + - host_performance_check |
| 63 | + - monitoring_process_check |
| 64 | + - network_connectivity_check |
| 65 | + - telemetry_metrics_analysis_agent |
| 66 | + llm_name: ata_agent_llm |
| 67 | + test_mode: false |
| 68 | + # The below paths are only used if test_mode is true |
| 69 | + test_data_path: null |
| 70 | + benign_fallback_data_path: null |
| 71 | + test_output_path: null |
| 72 | + |
| 73 | +llms: |
| 74 | + ata_agent_llm: |
| 75 | + _type: nim |
| 76 | + model_name: meta/llama-3.3-70b-instruct |
| 77 | + temperature: 0.2 |
| 78 | + max_tokens: 2048 |
| 79 | + |
| 80 | + tool_reasoning_llm: |
| 81 | + _type: nim |
| 82 | + model_name: meta/llama-3.3-70b-instruct |
| 83 | + temperature: 0.2 |
| 84 | + top_p: 0.7 |
| 85 | + max_tokens: 2048 |
| 86 | + |
| 87 | + telemetry_metrics_analysis_agent_llm: |
| 88 | + _type: nim |
| 89 | + model_name: meta/llama-3.3-70b-instruct |
| 90 | + temperature: 0 |
| 91 | + max_tokens: 2048 |
| 92 | + |
| 93 | + maintenance_check_llm: |
| 94 | + _type: nim |
| 95 | + model_name: meta/llama-3.3-70b-instruct |
| 96 | + temperature: 0 |
| 97 | + max_tokens: 2048 |
| 98 | + |
| 99 | + categorizer_llm: |
| 100 | + _type: nim |
| 101 | + model_name: meta/llama-3.3-70b-instruct |
| 102 | + temperature: 0 |
| 103 | + max_tokens: 2048 |
0 commit comments