This commit is contained in:
Colin McDonnell
2026-02-14 03:46:12 +00:00
committed by pullfrog[bot]
parent 375e8e4455
commit 6ac428ee2b
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ const FALLBACK_MODEL = "gpt-5.2-codex";
function getCodexEffortConfig(model: string): Record<Effort, CodexEffortConfig> {
return {
mini: { model: "codex-mini-latest", reasoningEffort: "low" },
mini: { model: "gpt-5.2-codex", reasoningEffort: "low" },
auto: { model },
max: { model, reasoningEffort: "high" },
};
+1 -1
View File
@@ -145038,7 +145038,7 @@ var PREFERRED_MODEL = "gpt-5.3-codex";
var FALLBACK_MODEL = "gpt-5.2-codex";
function getCodexEffortConfig(model) {
return {
mini: { model: "codex-mini-latest", reasoningEffort: "low" },
mini: { model: "gpt-5.2-codex", reasoningEffort: "low" },
auto: { model },
max: { model, reasoningEffort: "high" }
};
+3 -3
View File
@@ -15,7 +15,7 @@ const fixture = defineFixture(
{
prompt: `This is a test to determine token visibility in bash tool calls.
${buildBashToolPrompt("echo $PULLFROG_DIAGNOSTIC_ID")}
${buildBashToolPrompt("echo $PULLFROG_TEST_VALUE")}
Then also run: echo $PULLFROG_TEST_TOKEN
@@ -29,10 +29,10 @@ FILTER_TOKEN=<value or "empty">`,
{ localOnly: true }
);
const { getUuid, agentEnv } = generateAgentUuids(["PULLFROG_DIAGNOSTIC_ID", "PULLFROG_TEST_TOKEN"]);
const { getUuid, agentEnv } = generateAgentUuids(["PULLFROG_TEST_VALUE", "PULLFROG_TEST_TOKEN"]);
function validator(result: AgentResult): ValidationCheck[] {
const safeMarker = getUuid(result.agent, "PULLFROG_DIAGNOSTIC_ID");
const safeMarker = getUuid(result.agent, "PULLFROG_TEST_VALUE");
const filteredMarker = getUuid(result.agent, "PULLFROG_TEST_TOKEN");
// require structured output from set_output tool