-
Notifications
You must be signed in to change notification settings - Fork 28
feat: multi-agent environment integration #79
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lkevinzc
reviewed
Sep 4, 2025
Contributor
|
Hi there, nice work! There are just two conceptual details that I think may improve the design of the API a bit and I hope you can consider them here. |
lkevinzc
approved these changes
Oct 13, 2025
Contributor
lkevinzc
left a comment
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.
LGTM, great work!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a comprehensive integration of the TAU-BENCH Retail benchmark into the GEM (Gym for LLM Agents) framework, providing a clean, GEM-native implementation for evaluating LLM agents on realistic retail customer service tasks. The changes include new documentation, data loaders, tool interfaces, and evaluation scripts, as well as the addition of mock data assets and rule definitions to support the benchmark.
Key additions and improvements:
Documentation and Usage:
README.mdin both the root andtau_bench_retaildirectories, describing the integration, architecture, usage instructions, model support, and research experiment setup for the TAU-BENCH Retail benchmark in GEM. [1] [2]Benchmark Assets and Data Handling:
assets/data/__init__.pymodule for loading mock user, order, and product data from JSON files, supporting the benchmark's environment and tools.readme.mdinassets/data/explaining the mock data generation process and schema design philosophy..gitignoreto exclude experiment results and Python cache files from version control.Tooling and Evaluation Environment:
Toolbase class inassets/base_tool.pyto standardize tool interfaces for the TAU-bench environment.assets/rules.pywith explicit agent behavior and evaluation rules for the retail environment, ensuring agent actions are consistent with benchmark requirements.These changes collectively enable robust, reproducible benchmarking of LLM agents in a realistic retail scenario, supporting multiple providers and facilitating research on user instruction clarity and tool-based reasoning.