-
Notifications
You must be signed in to change notification settings - Fork 57
feat: Pro: Add agentwatch replay command to rewind and resume failed agent sessions
#430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
618ac4b
8594d7f
a2f12c8
12615b4
6944688
e4d3a61
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| from agentwatch.orchestration.bft_consensus import * | ||
| from agentwatch.orchestration.engine import * | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ | |
| import pytest | ||
|
|
||
| from agentwatch.core.event_bus import EventBus | ||
| from agentwatch.orchestration.bft_consensus import BFTConsensusEngine | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Import will fail—module does not exist. This import of This is blocked until the 🤖 Prompt for AI AgentsSource: Pipeline failures |
||
| from agentwatch.orchestration.consensus import AgentVote, detect_consensus | ||
| from agentwatch.orchestration.crew_context import CrewContext | ||
| from agentwatch.orchestration.dag import InterAgentDAG | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Import fails—module does not exist.
The pipeline failures confirm that
agentwatch.orchestration.bft_consensusraisesModuleNotFoundError. This breaks the entire package initializer, causing all imports fromagentwatch.orchestrationto fail.Either add the missing
bft_consensus.pymodule or remove this import until the module is implemented.🧰 Tools
🪛 GitHub Actions: PR Tests / 0_Test & lint.txt
[error] 1-1: Import error in package initialization: from 'agentwatch.orchestration.bft_consensus' import * failed with ModuleNotFoundError.
🪛 GitHub Actions: PR Tests / Test & lint
[error] 1-1: Import failure in package initializer: 'from agentwatch.orchestration.bft_consensus import *' raises ModuleNotFoundError for 'agentwatch.orchestration.bft_consensus'.
🤖 Prompt for AI Agents
Source: Pipeline failures