Skip to content

Commit 75ec2c7

Browse files
committed
refactor: Clean up whitespace in agent configuration files
Signed-off-by: Eden Reich <eden.reich@gmail.com>
1 parent 9159d86 commit 75ec2c7

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

examples/enterprise-agent.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ metadata:
44
name: enterprise-agent
55
description: "Production-ready enterprise agent with full monitoring and auth"
66
version: "2.1.0"
7-
87
spec:
98
capabilities:
109
streaming: true
1110
pushNotifications: true
1211
stateTransitionHistory: true
13-
1412
agent:
1513
provider: openai
1614
model: gpt-4o
@@ -20,7 +18,6 @@ spec:
2018
Log all interactions for audit purposes.
2119
maxTokens: 8192
2220
temperature: 0.3
23-
2421
tools:
2522
- name: query_database
2623
description: "Query the company database with proper authentication"
@@ -38,7 +35,6 @@ spec:
3835
description: "Maximum number of results"
3936
maximum: 1000
4037
required: [query, table]
41-
4238
- name: send_notification
4339
description: "Send notifications to users or teams"
4440
schema:
@@ -59,7 +55,6 @@ spec:
5955
description: "Notification channel"
6056
enum: ["email", "slack", "teams", "webhook"]
6157
required: [recipient, message, priority, channel]
62-
6358
- name: generate_report
6459
description: "Generate business reports based on data analysis"
6560
schema:
@@ -83,13 +78,11 @@ spec:
8378
description: "Output format"
8479
enum: ["pdf", "excel", "json", "html"]
8580
required: [report_type, date_range, format]
86-
8781
server:
8882
port: 8443
8983
debug: false
9084
auth:
9185
enabled: true
92-
9386
language:
9487
go:
9588
module: "github.com/company/enterprise-agent"

examples/weather-agent.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ metadata:
44
name: weather-agent
55
description: "Provides weather information for cities worldwide"
66
version: "1.0.0"
7-
87
spec:
98
capabilities:
109
streaming: true
1110
pushNotifications: false
1211
stateTransitionHistory: false
13-
1412
agent:
1513
provider: openai
1614
model: gpt-4o-mini
@@ -19,7 +17,6 @@ spec:
1917
Always be concise and helpful in your responses.
2018
maxTokens: 4096
2119
temperature: 0.7
22-
2320
tools:
2421
- name: get_weather
2522
description: "Get current weather for a city"
@@ -37,7 +34,6 @@ spec:
3734
description: "Temperature units (celsius/fahrenheit)"
3835
enum: ["celsius", "fahrenheit"]
3936
required: [city]
40-
4137
- name: get_forecast
4238
description: "Get weather forecast for a city"
4339
schema:
@@ -52,11 +48,9 @@ spec:
5248
minimum: 1
5349
maximum: 5
5450
required: [city, days]
55-
5651
server:
5752
port: 8080
5853
debug: false
59-
6054
language:
6155
go:
6256
module: "github.com/example/weather-agent"

0 commit comments

Comments
 (0)