You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -331,7 +321,7 @@ There are 3 possible ways to configure rules following this order of priority:
331
321
332
322
Just add toyour config the `:rules` pointing to `.md` files that will be searched from the workspace root if not an absolute path:
333
323
334
-
```javascript
324
+
```javascript title="~/.config/eca/config.json"
335
325
{
336
326
"rules": [{"path": "my-rule.md"}]
337
327
}
@@ -343,7 +333,7 @@ ECA allows to totally customize the prompt sent to LLM via the `behavior` config
343
333
344
334
=== "Example: my-behavior"
345
335
346
-
```javascript
336
+
```javascript title="~/.config/eca/config.json"
347
337
{
348
338
"behavior": {
349
339
"my-behavior": {
@@ -376,7 +366,7 @@ Examples:
376
366
377
367
=== "Notify after prompt finish"
378
368
379
-
```javascript
369
+
```javascript title="~/.config/eca/config.json"
380
370
{
381
371
"hooks": {
382
372
"notify-me": {
@@ -394,7 +384,7 @@ Examples:
394
384
395
385
=== "Block specific tool call checking hook arg"
396
386
397
-
```javascript
387
+
```javascript title="~/.config/eca/config.json"
398
388
{
399
389
"hooks": {
400
390
"check-my-tool": {
@@ -416,7 +406,7 @@ Examples:
416
406
417
407
To configure, add your OTLP collector config via `:otlp` map following [otlp auto-configure settings](https://opentelemetry.io/docs/languages/java/configuration/#properties-general). Example:
0 commit comments