REVIEW 5 major objections 6 minor 40 references
AgentDropoutV2 claims that multi-agent reasoning failures can be halted at test time by intercepting each agent's output, checking it against distilled failure patterns, and regenerating with targeted feedback before pruning hopeless output
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-02 20:23 UTC pith:DTDF27KN
load-bearing objection A genuinely new test-time rectify-or-reject wrapper with a useful indicator pool, but the headline gains rest on shaky statistical footing and the missing AgentDropout V1 baseline weakens the incremental claim. the 5 major comments →
AgentDropoutV2: Optimizing Information Flow in Multi-Agent Systems via Test-Time Rectify-or-Reject Pruning
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
On its own terms, the central discovery is that a test-time rectify-or-reject loop, guided by a pool of distilled failure indicators, can clean the information flow in a multi-agent system without touching the agents' weights. Offline, a teacher with access to ground-truth answers mines failed execution trajectories into indicators of the form name, error definition, and trigger condition. At inference, a rectifier retrieves the most relevant indicators, flags violations, generates concrete feedback, and lets the producing agent regenerate; if the output still fails after the maximum number of rounds, it is discarded, and if too many outputs are discarded the whole system restarts. The repor
What carries the argument
The load-bearing mechanism is the failure-driven indicator pool combined with a tri-state rectify-or-reject gate. Each indicator stores a name, a definition of the error, and a trigger condition; at test time an embedding model converts the current task scenario and action type into a query, and the top-K most similar indicators are retrieved. A rectifier evaluates the agent output against each indicator, aggregates any flagged violations into feedback, and routes the output to pass, retry, or reject. A fallback resets the system if pruning leaves too few valid messages, preventing structural collapse.
Load-bearing premise
The offline indicator pool is built by a teacher that sees ground-truth solutions, and the method assumes those distilled failure patterns generalize to unseen problems, other domains, and other model sizes; the code experiments use only a generic indicator, so cross-domain transfer of the mined pool is not directly demonstrated.
What would settle it
Run the full method on a held-out set under two controlled conditions: retrieved indicators versus randomly permuted indicators, and retrieved-indicator rectification versus an unguided self-correction loop matched for the same number of regeneration calls or tokens. If accuracy does not fall materially when relevance is removed, or does not exceed the unguided loop with matched compute budget, the claim that retrieval-guided rectification is the active ingredient collapses.
If this is right
- The same interception layer can be added to an existing multi-agent system without fine-tuning its models, so accuracy gains come at the cost of rectifier calls rather than retraining.
- An indicator pool built once from failures on source tasks continues to help when the backbone is swapped for a smaller model, supporting a build-once-deploy-anywhere pattern.
- Increasing the rectification budget from zero to three rounds recovers most of the gain, while a fourth round adds no further benefit, suggesting a practical stopping point for correction.
- Replacing retrieved indicators with randomly selected ones drops accuracy below the no-rectification setting, showing that the gain depends on semantic relevance, not merely on additional verification passes.
- Rectification depth and rejection rate track task difficulty closely enough that the framework's own statistics could serve as a proxy difficulty estimator.
Where Pith is reading between the lines
- If failure patterns are as scale-invariant as the transfer results suggest, a strong model could build a pool once and reuse it across many cheaper models, spreading the supervision cost across deployments—an implication the paper gestures at but does not formalize.
- The code-domain experiments use only a generic indicator, so a code-specific failure pool would likely produce larger code gains; this is a natural next experiment that the paper leaves open.
- Because the offline teacher requires ground-truth answers, the method depends on labeled data; one could extend it by mining failure indicators from internal inconsistency across agents rather than divergence from a gold answer, which would work in label-scarce domains.
- The observed correlation between rejection rate and difficulty suggests a testable extension: use rectification depth to route hard problems to stronger models only when needed.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes AgentDropoutV2 (ADv2), a test-time rectify-or-reject pruning layer for multi-agent systems. During MAS execution, each agent output is intercepted, checked against a set of retrieved 'adversarial indicators' mined offline from historical failure trajectories, and either accepted, regenerated with targeted feedback, or pruned. A global fallback resets the system if too few valid outputs remain. The approach is evaluated on nine math benchmarks and four code benchmarks using AutoGen/SelectorGroupChat with Qwen3-8B/4B backbones, reporting average accuracy gains of 6.30 percentage points over AutoGen on math and 2.21 percentage points on code, with further ablations on Tmax, Kact, retrieval quality, and deduplication. The authors claim that the resulting framework is model-agnostic, retraining-free, adaptable to task difficulty, and transferable across models and domains.
Significance. If the empirical claims are reliable, ADv2 is a genuinely useful contribution: it is a simple, plug-and-play, retraining-free intervention that improves MAS accuracy by catching and correcting errors before propagation. The failure-driven indicator pool with semantic retrieval is a sensible way to ground the rectifier, and the paper ships a reproducible codebase, detailed prompts, and a worked case study. The main contribution is the test-time rectify-or-reject loop rather than a new learning algorithm, and the architecture appears compatible with arbitrary MAS frameworks. However, the current evidence is not strong enough to support the headline 'significant enhancement' claim, because the evaluation lacks statistical controls, several test sets are very small, hyperparameters are selected on the same test tables, and a comparison against the earlier AgentDropout baseline is missing.
major comments (5)
- [§4.2, Table 1; §5.1, Table 4] The central claim of 'significantly enhances' rests on averages reported without confidence intervals, error bars, or repeated-seed variation. Several benchmarks have very small test sets (AMC23 n=40, OlymMATH E/H n=100, AIME24/25 n=30; Table 5). For example, the 16.67 pp gain on AIME25 corresponds to 5 correct answers out of 30, which is within binomial sampling noise. Please report per-seed means, standard deviations, and/or binomial confidence intervals, or at least a repeated-seed analysis, for all benchmarks.
- [§4.1, §5.1, Table 4] Hyperparameters Tmax=3, Kact=5, and gamma=1 were selected using ablations (Table 4) performed on the same test benchmarks reported in Tables 1–3. No separate validation set is used. This selection-on-test-set makes the reported numbers optimistic and inflates the apparent gain. A proper validation/test split or nested evaluation should be used to support the headline results.
- [§1, §4.2, Table 1; §4.3] The paper is positioned as AgentDropoutV2, and the abstract claims that ADv2 improves performance on 'both fixed and dynamic MAS frameworks,' but no comparison against AgentDropout (Wang et al., 2025b) or any fixed-topology MAS framework is reported. All experiments use AutoGen's SelectorGroupChat with automatic routing. To support the V2 naming and the fixed/dynamic claim, the authors should add experiments with AgentDropout as a baseline and at least one fixed-topology MAS (e.g., a sequential or DAG-based workflow).
- [§4.3, Table 3] The cross-domain generalization to code is conducted only with the generic indicator; no failure-driven indicator pool is built for the code domain, and no retrieved-indicator condition is reported for code. The code results therefore validate only the generic rectify-or-reject loop, not the retrieval-augmented indicator mechanism that is the paper's main contribution. The abstract and §1 present the +2.28 pp (or +2.21 pp) code gain as evidence for the full ADv2 framework; please clearly separate the two settings and, if possible, add a code-domain indicator pool.
- [Abstract; §4.2, §4.3; Table 5] The abstract reports average gains of 6.39 pp (math) and 2.28 pp (code), but Tables 1 and 3 show 6.30 pp (55.25 − 48.95) and 2.21 pp (48.65 − 46.44). Additionally, Table 5 lists 'AIME24' twice and omits AIME25, and the dataset size column for the indicator pool is ambiguous ('MathI2,000'). These inconsistencies must be corrected before publication.
minor comments (6)
- [§1, URL] The abstract's GitHub URL is broken in the extracted text: 'https://github.com/TonySY2/AgentDropoutV2' is split across a line break as 'Age ntDropoutV2'. Please ensure the URL renders correctly.
- [§3.1, Eq. (10)] The notation o_i = o_i^(t) is reused for the final transmitted message and the agent's output; this is slightly confusing. Consider using a separate symbol, e.g., o_i^*.
- [§3.2, Eq. (11)] The indicator pool size is not explicitly reported in the main text (only an unclear table entry in Table 5). Please state the number of indicators after deduplication, and how many were mined per source dataset.
- [§5.1, Table 4] The '0 Iterations' ablation still applies rejection pruning without rectification; the description says 'no rectification' but the system still prunes. Clarify whether the rectifier is invoked at all in this setting.
- [§4.1] Temperature settings: 'the temperature of the rectifier is set to 0, and the others remain 0.7.' For stochastic evaluation, this is fine, but repeated-seed results are still needed for the agent and selector since their temperature is 0.7.
- [Appendix A.3, Table 5] The spelling 'ACM23' should be 'AMC23'; also 'OlymMATH Easy' and 'OlymMATH Hard' are listed with 100 examples each, which is small enough to warrant explicit error bars.
Circularity Check
No derivation-level circularity; the paper's empirical test-time intervention is evaluated on held-out benchmarks and does not reduce to its own inputs.
full rationale
The claimed contribution is an empirical test-time intervention, not a derived prediction. The offline indicator pool is constructed from MATH/AQuA training splits via a teacher model with access to ground truth (Eq. 11), and test-time retrieval and rectification (Eqs. 5-10) use only the pool, the rectifier, and the agent's own outputs. Reported gains are measured on held-out test sets, with no test-set labels entering the pool or the rectification equations. The code-domain gains are explicitly attributed to the generic indicator rather than the math-derived pool, so no hidden leakage from the training distribution is relabeled as prediction. There is no equation in which the target quantity is defined in terms of the method's own outputs, and no fitted parameter is renamed as a prediction. The only self-citation (AgentDropout, Wang et al. 2025b) appears as contextual framing and baseline lineage; it is not load-bearing for the reported gains, no uniqueness theorem or ansatz is imported from it, and no known result is merely renamed. The abstract/table numeric discrepancy (6.39/2.28 vs 6.30/2.21), small test-set sizes, missing error bars, and test-set-based hyperparameter selection are statistical robustness concerns, not circularity under the stated rules. Score 1 reflects only the minor presence of a non-load-bearing self-citation in an otherwise self-contained empirical evaluation.
Axiom & Free-Parameter Ledger
free parameters (5)
- Tmax (max rectification iterations) =
3
- Kact (number of retrieved indicators) =
5
- Kdedup (deduplication retrieval count) =
20
- gamma (safety threshold) =
1
- temperature settings =
0 for rectifier, 0.7 others
axioms (4)
- domain assumption Pretrained LLM backbones (Qwen3-8B/4B, GPT-4o) respond reliably to the provided prompts.
- domain assumption Cosine similarity in embedding space retrieves indicators that are semantically relevant to the current reasoning step.
- ad hoc to paper Indicators mined from MATH/AQuA training failures transfer to other math benchmarks and to Qwen3-4B.
- domain assumption Benchmark test sets are not contaminated by the training data used for pool construction.
Cite this review
Pith. "Pith review of AgentDropoutV2: Optimizing Information Flow in Multi-Agent Systems via Test-Time Rectify-or-Reject Pruning." pith.science (2026). https://pith.science/paper/DTDF27KN
@misc{pith2026260223258,
author = {Pith},
title = {Pith review of: AgentDropoutV2: Optimizing Information Flow in Multi-Agent Systems via Test-Time Rectify-or-Reject Pruning},
year = {2026},
howpublished = {\url{https://pith.science/paper/DTDF27KN}},
note = {Machine review of arXiv:2602.23258}
}
read the original abstract
While Multi-Agent Systems (MAS) excel in complex reasoning, they suffer from the cascading impact of erroneous information from individual agents. Current solutions often resort to rigid structural engineering or expensive fine-tuning, limiting their adaptability. We propose AgentDropoutV2 (ADv2), a test-time rectify-or-reject pruning framework that dynamically optimizes MAS information flow. Acting as an active firewall, ADv2 intercepts agent outputs and employs a retrieval-augmented rectifier to iteratively correct errors. This rectification is guided by an indicator pool, which is constructed offline by distilling error patterns from historical MAS failure trajectories. Irreparable outputs are subsequently pruned to prevent error propagation. Empirical results demonstrate that ADv2 significantly boosts performance on both fixed and dynamic MAS frameworks, achieving average accuracy gains of 6.39 and 2.28 percentage points on extensive math and code benchmarks, respectively. Furthermore, ADv2 exhibits remarkable adaptivity, dynamically modulating rectification efforts based on task difficulty to resolve a wide spectrum of error patterns. Our code is released at https://github.com/TonySY2/AgentDropoutV2.
Figures
Reference graph
Works this paper leans on
-
[1]
**Presumption of Validity**: You must assume the Agent’s reasoning is correct unless you find irrefutable evidence of a fatal flaw
-
[2]
**The ”Actionability” Test**: If you cannot provide a specific, mathematical correction (a formula, a step, or a value), **IT IS NOT A FLAW**
-
[3]
doi: 10.18653/v1/2024.acl- long.211
Association for Computational Linguistics. doi: 10.18653/v1/2024.acl- long.211. URL https: //aclanthology.org/2024.acl-long.211/. Hong, S., Zhuge, M., Chen, J., Zheng, X., Cheng, Y ., Wang, J., Zhang, C., Wang, Z., Yau, S. K. S., Lin, Z., et al. 9 AgentDropoutV2: Optimizing Information Flow in Multi-Agent Systems via Test-Time Rectify-or-Reject Pruning Me...
-
[4]
**‘output‘**: (Agent’s Attempt) {output} ### Phase 1: Diagnosis Please execute the following logical judgment:
-
[5]
URL https://aclanthology.org/2025.findin gs-acl.601/
doi: 10.18653/v1/2025.findings-acl.601. URL https://aclanthology.org/2025.findin gs-acl.601/. Chen, Z., Kang, M., and Li, B. Shieldagent: Shielding agents via verifiable safety policy reasoning. InForty- second International Conference on Machine Learning, 2025b. URL https://openreview.net/forum ?id=DkRYImuQA9. Cobbe, K., Kosaraju, V ., Bavarian, M., Chen...
Pith/arXiv arXiv 2025
-
[6]
Luo, W., Dai, S., Liu, X., Banerjee, S., Sun, H., Chen, M., and Xiao, C
URL https://openreview.net/forum ?id=v8L0pN6EOi. Luo, W., Dai, S., Liu, X., Banerjee, S., Sun, H., Chen, M., and Xiao, C. AGrail: A lifelong agent guardrail with effective and adaptive safety detection. In Che, W., Nabende, J., Shutova, E., and Pilehvar, M. T. (eds.),Pro- ceedings of the 63rd Annual Meeting of the Association for Computational Linguistics...
arXiv 2025
-
[7]
doi: 10.18653/v1/2024.acl-long.409
Association for Computational Linguistics. doi: 10.18653/v1/2024.acl-long.409. URL https://acla nthology.org/2024.acl-long.409/. Sun, H., Min, Y ., Chen, Z., Zhao, W. X., Liu, Z., Wang, Z., Fang, L., and Wen, J.-R. Challenging the boundaries of reasoning: An olympiad-level math benchmark for large language models.arXiv preprint arXiv:2503.21380, 2025. URL...
Pith/arXiv arXiv 2024
-
[9]
URL https://arxiv.org/abs/2406.0 9187. 11 AgentDropoutV2: Optimizing Information Flow in Multi-Agent Systems via Test-Time Rectify-or-Reject Pruning Yao, S., Zhao, J., Yu, D., Du, N., Shafran, I., Narasimhan, K. R., and Cao, Y . React: Synergizing reasoning and acting in language models. InThe Eleventh International Conference on Learning Representations,...
Pith/arXiv arXiv 2023
-
[10]
integers include negatives
Additionally, Figure 10 depicts the prompt template for the teacher model, which is responsible for generating new indicators based on failed MAS execution trajectories. A.3. Dataset Statistics Table 5 lists the detailed statistics of the size of the datasets and the constructed indicator pool. The indicator pool for the math domain is constructed on the ...
-
[13]
**The ”Impact” Test**: If the Agent’s phrasing is imperfect but the **FINAL ANSWER** remains mathematically correct, **IT IS NOT A FLAW**. ### Judgment Criteria **[Area of Concern]**:{trigger condition} — ### CONTEXT - **Task**:{task} - **Agent Role**:{role} - **Agent Output**:{agent output} — ### OUTPUT FORMAT (JSON ONLY) You must generate the fields in ...
-
[14]
**The ”Actionability” Test**: If you cannot provide a specific code correction (a line change, a logic fix, or a parameter adjustment), **IT IS NOT A FLAW**
-
[15]
**The ”Impact” Test**: If the code is inefficient, verbose, or stylistically non-standard but **EXECUTES CORRECTLY** and returns the right result, **IT IS NOT A FLAW**. ### Judgment Criteria **[Area of Concern]**:{trigger condition} — ### CONTEXT - **Task**:{task} - **Agent Role**:{role} - **Agent Output**:{agent output} — ### OUTPUT FORMAT (JSON ONLY) Yo...
-
[16]
**‘problem‘**: {problem}
-
[17]
**‘solution‘**: (Ground Truth) {solution}
-
[18]
**‘agent role‘**: {agent role}
-
[20]
Assess whether the Agent’s output is logically and mathematically correct **within the scope of its role**
-
[21]
- Independent errors often exist (e.g., a logical fallacy in Step 1 AND a formatting error in the Final Answer)
**AUDIT STRATEGY (CRITICAL)**: - **DO NOT STOP at the first error.** You must scan the ENTIRE output line by line. - Independent errors often exist (e.g., a logical fallacy in Step 1 AND a formatting error in the Final Answer). - You are expected to find **MULTIPLE distinct errors** (less than 5) if they exist
-
[22]
- If the output contains **errors**: Identify **ALL** of them and proceed to Phase 2
**Decision**: - If the output contains **NO errors**: Output ‘NO ERROR‘. - If the output contains **errors**: Identify **ALL** of them and proceed to Phase 2. ### Phase 2: Metric Extraction Transform **EACH identified error** separately into a **generalized** JSON metric object. **CRITICAL**: The ‘name‘, ‘detailed definition‘, ‘trigger condition‘, and ‘ex...
-
[23]
It can be **appropriately longer** to avoid ID collisions
**‘name‘**: * **Requirement**: Summarize the error pattern. It can be **appropriately longer** to avoid ID collisions. * **Format**: ‘UPPER CASE WITH UNDERSCORES‘
-
[24]
* **Examples**: ”Geometry”, ”Probability”, ”Algebra”, ”Number Theory”, ”Python Implementation”, ”Logical Reasoning”
**‘domain tag‘**: * **Requirement**: Classify this error into a specific mathematical or operational domain. * **Examples**: ”Geometry”, ”Probability”, ”Algebra”, ”Number Theory”, ”Python Implementation”, ”Logical Reasoning”
-
[25]
Do not just say ”used wrong formula”; explain ”confused concept A with concept B”
**‘detailed definition‘**: * **Requirement**: Define the **ROOT CAUSE** or **Mental Misconception** behind the error. Do not just say ”used wrong formula”; explain ”confused concept A with concept B”. * **Format**: ”This error occurs when the agent [misconception], leading to [consequence].”
-
[26]
**DO NOT** assume the error has already occurred (Decriminalized)
**‘evaluator prompt‘**: Contains the trigger condition for retrieving this metric: * **‘trigger condition‘**: * **Requirement**: Describe the **Context** or **Action** where this error is likely to happen. **DO NOT** assume the error has already occurred (Decriminalized). * **Format**: ”When the problem involves [context]...” OR ”When the agent attempts t...
-
[27]
**‘example error‘**: * **Requirement**: Provide a concrete example of the error AND the logic for why it is wrong/how to fix it. * **Format**: ”Error Snippet: [Quote agent’s wrong step] — Correction Logic: [Explain why it is wrong and what the correct approach/formula should be].” ### Output Format - If no error: Output ‘NO ERROR‘ only. - If errors exist:...
-
[28]
Matched Indicators: - MODULAR ARITHMETIC CONTEXT CHECK - MISSING CHECK FOR INTEGER SOLUTIONS - LACK OF COMPREHENSIVE OPTION ELIMINATION - INCORRECT EXPRESSION FOR DISTANCE - INTEGER CONDITION MISMANAGEMENT
-
[29]
The expression p 120− √x being an integer does not require n to be strictly positive; it could also be zero
Evaluations: - MODULAR ARITHMETIC CONTEXT CHECK: Flawed - The Agent assumes that n must be a positive integer, but the problem asks for real values of x. The expression p 120− √x being an integer does not require n to be strictly positive; it could also be zero. This oversight restricts the possible values of n and may lead to an incomplete solution. - MI...
-
[30]
Please review the following suggestions critically: - [MODULAR ARITHMETIC CONTEXT CHECK]: Allow n to be zero as well, since p 120− √x can be zero and still be an integer
Feedback: An external auditor has reviewed your previous output (Attempt 1) and flagged some potential issues. Please review the following suggestions critically: - [MODULAR ARITHMETIC CONTEXT CHECK]: Allow n to be zero as well, since p 120− √x can be zero and still be an integer. This would expand the range of n to include 0. (Auditor’s Note: The Agent a...
-
[33]
Figure 13.The rectifier’s judgments and feedback to the initial output
Please output the corrected solution. Figure 13.The rectifier’s judgments and feedback to the initial output. 23 AgentDropoutV2: Optimizing Information Flow in Multi-Agent Systems via Test-Time Rectify-or-Reject Pruning Math Solver: Rectification Round 1/2 Outputo (1) You are absolutely correct to be critical of the original solution. The key point is tha...
-
[34]
Matched Indicators: - INV ALIDSOLUTION DISMISSAL BASED ON SIGN - INCORRECT FORM REPRESENTATION - INCORRECT LOGIC FOR NON-PRIME IDENTIFICATION - SQUARE ROOT MANIPULATION CHECK - USE OF CAUCHY SCHW ARZINEQUALITY
-
[35]
Therefore, the expression can only equal non-negative integers, not negative integers
Evaluations: - INV ALIDSOLUTION DISMISSAL BASED ON SIGN: Flawed - The Agent’s reasoning is flawed because the square root function p 120− √x is defined to be non-negative. Therefore, the expression can only equal non-negative integers, not negative integers. Allowingn∈Z introduces invalid negative values that do not satisfy the original equation. - INCORR...
-
[36]
Please review the following suggestions critically: - [MODULAR ARITHMETIC CONTEXT CHECK]: Allow n to be zero as well, since p 120− √x can be zero and still be an integer
Feedback: An external auditor has reviewed your previous output (Attempt 2) and flagged some potential issues. Please review the following suggestions critically: - [MODULAR ARITHMETIC CONTEXT CHECK]: Allow n to be zero as well, since p 120− √x can be zero and still be an integer. This would expand the range of n to include 0. (Auditor’s Note: The Agent a...
-
[37]
If you agree with the advice, please refine your solution
-
[38]
**If you are confident your original logic is correct, you may ignore this advice.**
-
[39]
Figure 15.The rectifier’s judgments and feedback to the Round 1 output
Please output the corrected solution. Figure 15.The rectifier’s judgments and feedback to the Round 1 output. 25 AgentDropoutV2: Optimizing Information Flow in Multi-Agent Systems via Test-Time Rectify-or-Reject Pruning Math Solver: Rectification Round 2/2 Outputo (2) After carefully reviewing the auditor’s feedback, I agree with the advice. The square ro...
-
[40]
Matched Indicators: - ROOT FORM ASSUMPTION - INCORRECT EXPRESSION FOR DISTANCE - ARITHMETIC ERROR IN QUADRATIC SOLUTIONS - INCORRECT IDENTIFICATION OF NEXT SMALLEST SOLUTION - FINAL SOLUTION SELECTION CHECK
-
[41]
Evaluations: - ROOT FORM ASSUMPTION: Correct - INCORRECT EXPRESSION FOR DISTANCE: Correct - ARITHMETIC ERROR IN QUADRATIC SOLUTIONS: Correct - INCORRECT IDENTIFICATION OF NEXT SMALLEST SOLUTION: Correct - FINAL SOLUTION SELECTION CHECK: Correct
-
[42]
Feedback: [EMPTY] Figure 17.The rectifier’s judgments and feedback to the Round 2 output. 27
-
[2021]
doi: 10.18653/v1/2021.naacl-main.168
Association for Computational Linguistics. doi: 10.18653/v1/2021.naacl-main.168. URL https://ac lanthology.org/2021.naacl-main.168/. Prasad, A., Koller, A., Hartmann, M., Clark, P., Sab- harwal, A., Bansal, M., and Khot, T. ADaPT: As- needed decomposition and planning with language mod- els. In Duh, K., Gomez, H., and Bethard, S. (eds.), Findings of the A...
-
[2024]
He, C., Luo, R., Bai, Y ., Hu, S., Thai, Z., Shen, J., Hu, J., Han, X., Huang, Y ., Zhang, Y ., et al
URL https://www.ijcai.org/procee dings/2024/890. He, C., Luo, R., Bai, Y ., Hu, S., Thai, Z., Shen, J., Hu, J., Han, X., Huang, Y ., Zhang, Y ., et al. Olympiad- Bench: A challenging benchmark for promoting AGI with olympiad-level bilingual multimodal scientific prob- lems. In Ku, L.-W., Martins, A., and Srikumar, V . (eds.),Proceedings of the 62nd Annual...
2024
-
[2025]
Li, G., Hammoud, H., Itani, H., Khizbullin, D., and Ghanem, B
URL https://openreview.net/forum ?id=chfJJYC3iL. Li, G., Hammoud, H., Itani, H., Khizbullin, D., and Ghanem, B. CAMEL: communicative agents for ”mind” explo- ration of large language model society. In Oh, A., Nau- mann, T., Globerson, A., Saenko, K., Hardt, M., and Levine, S. (eds.),Advances in Neural Information Pro- cessing Systems 36: Annual Conference...
2023
-
[2026]
Wang, S., Zhang, G., Yu, M., Wan, G., Meng, F., Guo, C., Wang, K., and Wang, Y
URL https://arxiv.org/abs/2601.0 4861. Wang, S., Zhang, G., Yu, M., Wan, G., Meng, F., Guo, C., Wang, K., and Wang, Y . G-safeguard: A topology-guided security lens and treatment on LLM-based multi-agent systems. In Che, W., Nabende, J., Shutova, E., and Pile- hvar, M. T. (eds.),Proceedings of the 63rd Annual Meet- ing of the Association for Computational...
Pith/arXiv arXiv 2025
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.