Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ Both support two resolution modes (at least one required):

- `path` — Output directory
- `write_report` — Generate `report.md` (default: `true`)
- `publish_foundry_evaluation` — Publish results to Foundry (default: `false`)
- `publish_foundry_evaluation` — Publish results to Foundry (default: `true`)
- `fail_on_foundry_publish_error` — Fail if Foundry publish fails (default: `false`)

#### Validation rules
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ Callable protocol: `fn(input_text: str, context: dict) -> dict` returning `{"res
`output` section:
- `path` — Output directory
- `write_report` — Generate `report.md` (default: `true`)
- `publish_foundry_evaluation` — Publish results to Foundry (default: `false`)
- `publish_foundry_evaluation` — Publish results to Foundry (default: `true`)
- `fail_on_foundry_publish_error` — Fail if Foundry publish fails (default: `false`)

Backend resolution:
Expand Down
2 changes: 1 addition & 1 deletion docs/how-it-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ Both support two resolution modes (at least one required):

- `path` — Output directory
- `write_report` — Generate `report.md` (default: `true`)
- `publish_foundry_evaluation` — Publish results to Foundry (default: `false`)
- `publish_foundry_evaluation` — Publish results to Foundry (default: `true`)
- `fail_on_foundry_publish_error` — Fail if Foundry publish fails (default: `false`)

#### Validation rules
Expand Down
2 changes: 1 addition & 1 deletion docs/run-yaml-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ References the evaluation dataset. At least one of `name` or `path` is required.
|---|---|---|---|---|
| `path` | path | No | — | Output directory override |
| `write_report` | bool | No | `true` | Generate `report.md` |
| `publish_foundry_evaluation` | bool | No | `false` | Publish results to Foundry |
| `publish_foundry_evaluation` | bool | No | `true` | Publish results to Foundry |
| `fail_on_foundry_publish_error` | bool | No | `false` | Fail if Foundry publish fails |

---
Expand Down
2 changes: 1 addition & 1 deletion src/agentops/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ class RunMetadata(BaseModel):
class OutputConfig(BaseModel):
path: Optional[Path] = None
write_report: bool = True
publish_foundry_evaluation: bool = False
publish_foundry_evaluation: bool = True
fail_on_foundry_publish_error: bool = False


Expand Down