Skip to content

Commit 73de12c

Browse files
committed
temporarily disable pydantic-ai predictive state in the dojo
1 parent 148d663 commit 73de12c

File tree

4 files changed

+9
-32
lines changed

4 files changed

+9
-32
lines changed

typescript-sdk/apps/dojo/e2e/tests/pydanticAITests/predictiveStateUpdatePage.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
import { PredictiveStateUpdatesPage } from "../../pages/pydanticAIPages/PredictiveStateUpdatesPage";
77

88
test.describe("Predictive Status Updates Feature", () => {
9-
// Fails. Issue with integration or something.
9+
// Fails on a production build.
1010
test.fixme("[PydanticAI] should interact with agent and approve asked changes", async ({
1111
page,
1212
}) => {
@@ -44,7 +44,8 @@ test.describe("Predictive Status Updates Feature", () => {
4444
});
4545
});
4646

47-
test("[PydanticAI] should interact with agent and reject asked changes", async ({
47+
// SKipped while the above test is failing, the entire feature is temporarily disabled
48+
test.skip("[PydanticAI] should interact with agent and reject asked changes", async ({
4849
page,
4950
}) => {
5051
await retryOnAIFailure(async () => {

typescript-sdk/apps/dojo/src/agents.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ export const agentsIntegrations: AgentIntegrationConfig[] = [
3939
human_in_the_loop: new PydanticAIAgent({
4040
url: `${envVars.pydanticAIUrl}/human_in_the_loop/`,
4141
}),
42-
predictive_state_updates: new PydanticAIAgent({
43-
url: `${envVars.pydanticAIUrl}/predictive_state_updates/`,
44-
}),
42+
// Disabled until we can figure out why production builds break
43+
// predictive_state_updates: new PydanticAIAgent({
44+
// url: `${envVars.pydanticAIUrl}/predictive_state_updates/`,
45+
// }),
4546
shared_state: new PydanticAIAgent({
4647
url: `${envVars.pydanticAIUrl}/shared_state/`,
4748
}),

0 commit comments

Comments
 (0)