Agent4Rec
RepositoryFreeRecommender system simulator with 1,000 agents
Capabilities9 decomposed
llm-powered generative agent simulation with persona-driven behavior
Medium confidenceCreates 1,000 autonomous agents initialized from MovieLens-1M user data, each embodying distinct social traits (conformity, activity, diversity preferences) and personalized movie preferences. Agents use LLM-based decision-making to generate realistic reactions to recommendations, retrieving contextual memories of past interactions and synthesizing responses that reflect individual behavioral patterns rather than deterministic algorithms.
Uses LLM-based generative agents initialized with real user personas from MovieLens-1M rather than rule-based or probabilistic user models, enabling agents to exhibit emergent, contextually-aware behavior that adapts to recommendation history and social traits. The Avatar system integrates memory retrieval, preference modeling, and LLM decision-making in a unified pipeline, allowing agents to reason about recommendations in natural language before deciding actions.
More realistic than synthetic user models (e.g., random or Markov-based) because agents reason about recommendations using LLMs, but slower and more expensive than deterministic simulators due to per-decision LLM calls.
memory-augmented agent decision-making with contextual retrieval
Medium confidenceEach agent maintains a persistent memory system that stores past interactions (watched movies, ratings, evaluations, exits) and retrieves relevant memories when deciding how to respond to new recommendations. The memory system uses semantic or temporal retrieval to surface contextually relevant past experiences, which the LLM then incorporates into its reasoning to generate consistent, history-aware decisions rather than stateless responses.
Implements a memory system specifically designed for recommendation simulation where agents retrieve past interactions (watches, ratings, exits) to inform current decisions, integrating memory retrieval directly into the LLM prompt pipeline. Unlike generic RAG systems, the memory is structured around recommendation-specific actions (watch, rate, evaluate, exit) and is retrieved based on both temporal proximity and semantic relevance to the current recommendation context.
More sophisticated than stateless user simulators because agents maintain and reference interaction history, but requires careful memory management to avoid context window overflow and retrieval latency compared to simpler Markov-based user models.
multi-model recommender system integration and orchestration
Medium confidenceProvides a pluggable architecture for integrating multiple recommendation algorithms (Matrix Factorization, MultVAE, LightGCN, baseline models) into a unified simulation framework. The Arena component orchestrates the flow of user-item interactions through selected recommender models, collecting predictions and passing them to agents for evaluation. Models are loaded from configuration, trained or pre-trained, and called in a standardized way regardless of underlying implementation.
Implements a modular recommender model registry that abstracts away implementation details of different algorithms (collaborative filtering, neural networks, graph-based) behind a common interface, allowing the Arena to treat all models uniformly. The architecture supports both traditional ML models (Matrix Factorization) and modern neural approaches (MultVAE, LightGCN) without code changes, using a configuration-driven model loading system.
More flexible than single-algorithm simulators because it supports multiple recommendation approaches, but adds orchestration overhead compared to evaluating a single model in isolation.
page-by-page recommendation interaction simulation with multi-action responses
Medium confidenceSimulates realistic user-recommendation interactions by presenting items in pages (multiple recommendations per round) and allowing agents to take diverse actions: watch, rate, evaluate, exit, or respond to interviews. Each action is generated by the LLM based on the agent's persona, memory, and the presented recommendations, creating a multi-step interaction loop that mirrors how users browse and interact with recommendation interfaces.
Models recommendation interactions as multi-action sequences where agents see paginated results and decide which items to engage with and how (watch, rate, evaluate, exit), rather than single-item binary responses. The LLM generates actions conditioned on the agent's persona, memory, and the full page context, enabling realistic browsing behavior where users selectively engage with recommendations.
More realistic than single-action simulators (e.g., click/no-click) because it captures diverse user behaviors, but more computationally expensive due to multiple LLM calls per page and higher decision complexity.
persona-based agent initialization from real user data
Medium confidenceInitializes 1,000 agents by extracting user personas from MovieLens-1M dataset, deriving each agent's movie preferences, social traits (conformity, activity level, diversity preferences), and demographic characteristics from real user rating patterns. The initialization process maps historical user behavior to agent attributes, enabling agents to exhibit preferences grounded in actual user data rather than synthetic or random distributions.
Extracts agent personas directly from MovieLens-1M user behavior rather than generating synthetic personas, mapping real user rating patterns to agent attributes (preferences, social traits). This grounds agent behavior in empirical user data, enabling simulations that reflect actual user distributions and preference correlations observed in the dataset.
More realistic than synthetic persona generation because agents inherit preferences from real users, but limited to the domain and user population represented in MovieLens-1M, unlike generative approaches that could create arbitrary personas.
evaluation metrics computation and causal analysis for recommendation performance
Medium confidenceComputes standard recommendation evaluation metrics (click-through rate, conversion, diversity, fairness) from agent interaction logs and performs causal analysis to understand how recommendation algorithm choices affect user behavior. The evaluation framework aggregates agent actions across the simulation, calculates metrics per model, and enables comparative analysis of how different recommenders influence agent engagement and satisfaction.
Integrates evaluation metrics computation with causal analysis, enabling not just performance measurement but also investigation of how recommendation algorithm choices causally influence agent behavior. The framework aggregates agent-level actions into system-level metrics and supports comparative analysis across multiple recommenders, grounding evaluation in simulated but realistic user interactions.
More comprehensive than offline metrics (e.g., NDCG) because it evaluates algorithms against realistic user behavior, but less reliable than online A/B testing because metrics are computed from simulated rather than real users.
configuration-driven simulation orchestration and experiment management
Medium confidenceProvides a configuration-based system for defining and running recommendation simulation experiments, specifying which recommender models to evaluate, agent parameters, interaction settings, and evaluation metrics. The Arena component reads configuration files, initializes the simulation environment, orchestrates the interaction loop across all agents and models, and collects results in a structured format for analysis.
Implements a configuration-driven simulation framework where experiments are defined declaratively (model selection, agent parameters, interaction settings) rather than programmatically, enabling non-developers to run simulations and researchers to manage multiple experiments systematically. The Arena reads configuration, initializes all components, and orchestrates the full simulation lifecycle.
More accessible than code-based simulation because configurations can be modified without programming, but less flexible than programmatic APIs for complex customization.
advertisement integration and sponsored recommendation evaluation
Medium confidenceIntegrates advertisement or sponsored items into the recommendation simulation, allowing evaluation of how agents respond to ads mixed with organic recommendations. The system can inject sponsored items into recommendation pages and measure agent engagement (clicks, watches, ratings) with ads versus organic items, enabling analysis of ad effectiveness and potential bias in recommendation algorithms.
Extends the recommendation simulation to include sponsored/ad items, enabling evaluation of how recommendation algorithms and agents interact with ads. The system can inject ads into recommendation pages and measure agent engagement, supporting analysis of ad effectiveness and potential conflicts between user satisfaction and ad revenue.
Unique to Agent4Rec among recommendation simulators because it explicitly models ad integration, but ad engagement modeling is simplistic compared to real user behavior toward ads.
distributed agent simulation with parallel interaction processing
Medium confidenceSupports parallel execution of agent interactions across multiple processes or machines, enabling simulation of 1,000+ agents at scale. The Arena component can distribute agent-model interactions across available compute resources, collecting results from parallel workers and aggregating them into final metrics. This architecture allows simulations to complete in reasonable time despite the computational cost of LLM-based decision-making per agent.
Implements parallel agent simulation where interactions are distributed across multiple processes/machines, enabling 1,000+ agents to be simulated efficiently despite the computational cost of LLM-based decision-making. The architecture abstracts parallelization details from the simulation logic, allowing the Arena to scale transparently.
Faster than sequential simulation for large agent populations, but adds complexity and requires careful management of shared state and API rate limits compared to single-process execution.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with Agent4Rec, ranked by overlap. Discovered automatically through the match graph.
@sean_pixel
Inspired by paper ["Generative Agents: Interactive Simulacra of Human Behavior"](https://arxiv.org/abs/2304.03442)
Underlying paper - Generative Agents
A paper simulating interactions between tens of agents
AgentForge
LLM-agnostic platform for agent building & testing
AI Legion
Multi-agent TS platform, similar to AutoGPT
NVIDIA: Nemotron 3 Super (free)
NVIDIA Nemotron 3 Super is a 120B-parameter open hybrid MoE model, activating just 12B parameters for maximum compute efficiency and accuracy in complex multi-agent applications. Built on a hybrid Mamba-Transformer...
Sao10K: Llama 3 8B Lunaris
Lunaris 8B is a versatile generalist and roleplaying model based on Llama 3. It's a strategic merge of multiple models, designed to balance creativity with improved logic and general knowledge....
Best For
- ✓Recommender system researchers evaluating algorithm performance at scale
- ✓Teams building recommendation engines who need synthetic user interaction data
- ✓Researchers studying social dynamics and conformity effects in recommendation systems
- ✓Researchers studying long-horizon user behavior and preference evolution
- ✓Teams evaluating recommendation algorithms' ability to adapt to user feedback
- ✓Simulation scenarios requiring multi-session user interactions
- ✓Recommender system researchers comparing algorithm performance
- ✓Teams evaluating multiple recommendation approaches before production deployment
Known Limitations
- ⚠LLM-based decision-making introduces non-deterministic behavior; results may vary across runs unless seeds are fixed
- ⚠Simulation speed limited by LLM API latency; 1,000 agents with page-by-page interactions can require hours to complete
- ⚠Agent personas derived from MovieLens-1M only; domain-specific to movies and may not generalize to other recommendation domains
- ⚠Memory system stores full interaction history per agent; scales linearly with simulation length, requiring significant storage for long-running simulations
- ⚠Memory retrieval adds latency (~50-200ms per decision) depending on memory size and retrieval method
- ⚠No built-in memory compression; full interaction history stored per agent, leading to O(n) memory growth with simulation length
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
Recommender system simulator with 1,000 agents
Categories
Alternatives to Agent4Rec
Are you the builder of Agent4Rec?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →