LLMs That Simulate Organizational Decision-Making
1. Core Capabilities of LLMs for Decision Simulation
Core Capabilities of LLMs for Decision Simulation
Contextual Understanding and Multi-Agent Reasoning
Large Language Models (LLMs) excel at parsing and synthesizing complex contextual information, a critical requirement for simulating organizational decision-making. Their ability to process unstructured text—such as meeting transcripts, policy documents, or stakeholder communications—enables them to model nuanced interactions. For instance, an LLM can simulate a boardroom debate by assigning distinct personas to different agents, each with predefined objectives, constraints, and communication styles. The model's transformer architecture, particularly its self-attention mechanism, allows it to track dependencies across long sequences of interactions, mirroring real-world deliberation dynamics.
Probabilistic Decision Pathways
LLMs generate probabilistic outputs, making them inherently suited for modeling uncertain decision environments. Given a prompt like "Simulate a product launch decision under budget constraints," the model samples from a distribution of possible actions, weighted by learned priors from training data. This can be formalized as:
where ai represents a decision alternative, C the context (e.g., budget, market data), and f the LLM's logit function. The temperature parameter τ controls exploration versus exploitation in the output space, analogous to risk tolerance in organizational settings.
Dynamic Role-Playing and Belief Propagation
Advanced fine-tuning techniques enable LLMs to simulate role-specific behaviors. For example, a CFO agent might prioritize cost-benefit analyses, while a CTO agent emphasizes technical feasibility. This is achieved through:
- Conditional prompting: Prefixing inputs with role descriptors (e.g., "As the CFO, I recommend...")
- LoRA adapters: Lightweight model extensions that specialize subsets of weights for specific roles
- Chain-of-thought (CoT) prompting: Forcing the model to explicitly articulate reasoning steps before committing to decisions
Temporal Reasoning and Scenario Planning
Organizational decisions often involve forecasting multi-step consequences. LLMs can simulate temporal sequences through:
where St is the state at time t, At the action taken, and ⊕ denotes context concatenation. This allows for branching scenario trees where early decisions constrain later options—critical for simulating strategic planning horizons.
Conflict Resolution and Negotiation Dynamics
When simulating inter-departmental conflicts, LLMs leverage their pretraining on dialogue datasets to model concession patterns, persuasive arguments, and compromise formation. The models can quantify tension levels using:
where v are embedding vectors of exchanged proposals, enabling the simulation to detect when parties are converging toward agreement.

1.2 Key Challenges in Modeling Organizational Behavior
Nonlinear Dynamics of Decision-Making
Organizational decision-making exhibits nonlinear dynamics due to feedback loops, hierarchical dependencies, and emergent behaviors. The relationship between input stimuli (e.g., market signals) and output decisions rarely follows linear causality. This can be formalized as a dynamical system:
where xi represents decision variables, fi captures deterministic interactions, and gijξj(t) models stochastic perturbations from external factors. The phase space of such systems often contains:
- Multiple attractor basins corresponding to stable decision patterns
- Critical transitions at bifurcation points (e.g., sudden policy shifts)
- Hysteresis effects where history dependence matters
Multi-Agent Coordination Complexity
When modeling organizations as multi-agent systems, the action space grows combinatorially with:
where N is the number of agents (employees/departments), |Ai| are individual action spaces, and the exponent accounts for pairwise communication channels. This leads to:
- Exponential explosion of possible interaction states
- Non-Markovian dynamics due to long-term dependencies
- Emergent coordination costs that scale superlinearly with organization size
Institutional Memory and Path Dependence
Organizations exhibit memory effects where current decisions are constrained by historical trajectories. This can be modeled through:
where κ is a memory kernel (typically power-law or exponential decay) and φ represents past decision embeddings. Key implications include:
- Structural inertia resisting rapid change
- Lock-in effects from legacy systems
- Hidden technical debt in decision-making processes
Information Asymmetry and Distributed Cognition
The mapping between organizational knowledge and individual awareness follows:
where MI is mutual information between agents and Δ accounts for structural holes in communication networks. This creates:
- Partial observability dilemmas
- Local optimization that degrades global performance
- Echo chamber effects in decision-making
Validation Against Real-World Behavior
Calibrating models requires solving inverse problems with sparse, noisy data:
where wk are observational weights, R(θ) is a regularization term for interpretability, and σk accounts for measurement uncertainty. Key hurdles include:
- Non-identifiability of model parameters
- Counterfactual reasoning limitations
- Distributional shift between training and deployment
1.3 Ethical and Bias Considerations in Decision Simulations
Embedded Biases in Training Data
Large language models inherit biases from their training corpora, which often reflect societal prejudices, historical inequities, or skewed representation. When simulating organizational decisions, these biases manifest in three key dimensions:
- Demographic bias: Underrepresentation of minority groups in training data leads to skewed outputs in hiring or promotion simulations.
- Temporal bias: Models trained on outdated data may reinforce obsolete business practices or regulatory non-compliance.
- Confirmation bias: Feedback loops where the model's outputs are used to generate new training data amplify existing biases.
Where yi represents the ground truth decision and ŷi the model's prediction for sample i.
Ethical Frameworks for Simulation Design
Implementing Rawls' veil of ignorance principle in model architecture requires:
- Differential privacy guarantees during fine-tuning
- Adversarial debiasing with gradient reversal layers
- Multi-objective optimization that explicitly minimizes bias metrics
Operational Risks in Deployment
Three critical failure modes emerge when LLMs simulate high-stakes decisions:
| Risk Type | Example | Mitigation Strategy |
|---|---|---|
| Over-reliance | Automated approval of unethical business proposals | Human-in-the-loop verification systems |
| Explainability gaps | Unexplained rejection of qualified candidates | Integrated attention visualization |
| Feedback contamination | Model poisoning through manipulated performance metrics | Cryptographic audit trails |
Bias Quantification Techniques
Advanced measurement approaches include:
- Counterfactual fairness testing with synthetic data perturbations
- Shapley value decomposition of decision influences
- Earth mover's distance between demographic group outcomes
Where G represents protected attribute groups and f(x) the model's decision function.
2. Single-Agent vs. Multi-Agent Simulation Frameworks
Single-Agent vs. Multi-Agent Simulation Frameworks
Fundamental Architectural Differences
Single-agent frameworks model organizational decision-making through a monolithic LLM architecture, where a single agent processes all inputs and generates outputs autonomously. The agent's policy π maps states s ∈ S to actions a ∈ A via a parameterized function πθ(a|s), typically optimized through reinforcement learning objectives.
In contrast, multi-agent systems decompose the decision process across N interacting agents, each with distinct policy networks πi. The joint action space grows combinatorially as A = A1 × ... × AN, requiring specialized coordination mechanisms.
Emergent Behavior Dynamics
Multi-agent systems exhibit emergent properties not present in single-agent models. The Nash equilibrium concept becomes critical when modeling competitive scenarios, where no agent can benefit by unilaterally changing strategy:
Cooperative settings often employ mean-field approximations or attention mechanisms to handle scalability. Recent work in graph neural networks enables efficient message passing between agents, with adjacency matrices W ∈ ℝN×N governing interaction weights.
Computational Complexity Tradeoffs
The time complexity of single-agent inference scales linearly with model size O(Ld2), where L is layers and d is hidden dimension. Multi-agent systems introduce quadratic overhead O(N2d2) from inter-agent communications, though sparse topologies can reduce this to O(kNd2) for k neighbors per agent.
Organizational Decision-Making Applications
Single-agent frameworks excel in hierarchical command structures (e.g., military C2 systems), while multi-agent approaches better model:
- Market ecosystems with competing firms
- Distributed supply chain negotiations
- Cross-departmental resource allocation
Hybrid architectures are emerging that combine a central planning agent with specialized sub-agents, achieving O(log N) coordination latency through tree-structured communication protocols.
Training Paradigm Comparison
Single-agent training typically uses proximal policy optimization (PPO) with advantage estimation:
Multi-agent systems require either centralized training with decentralized execution (CTDE) or independent learner approaches. The latter often suffers from non-stationarity, addressed through techniques like fingerprinting or leniency-based Q-learning.
Case Study: Supply Chain Simulation
A recent benchmark compared single-agent (GPT-4 fine-tuned) versus multi-agent (6 specialized LLMs) approaches for inventory management. The multi-agent system achieved 23% higher profit margins by capturing real-world negotiation dynamics, at the cost of 4.2× longer inference times.

Incorporating Domain-Specific Knowledge Bases
Architectural Integration Strategies
Large language models (LLMs) operating in organizational decision-making contexts require tight coupling with domain-specific knowledge bases to ensure factual accuracy and contextual relevance. The most effective architectures employ hybrid retrieval-augmented generation (RAG) systems, where the LLM dynamically queries structured and unstructured knowledge repositories during inference. Key integration patterns include:
- Vector-Indexed Retrieval: Domain documents are embedded into dense vector spaces using models like BERT or RoBERTa, enabling semantic similarity searches during generation.
- Graph-Based Reasoning: Knowledge graphs encoded in RDF or property graph formats provide explicit relational context that supplements the LLM's implicit knowledge.
- Dynamic API Integration: Real-time querying of organizational databases through middleware adapters that transform natural language queries into SQL or SPARQL.
Where λ controls the tradeoff between traditional lexical search (BM25) and semantic similarity (cosine distance between embedding vectors f(q) and f(d)).
Knowledge Representation Optimization
Effective domain adaptation requires careful representation engineering. For structured knowledge bases, this involves:
Where the adaptation loss combines standard cross-entropy (CE) with a KL-divergence term regularizing the latent space z to remain close to the pretrained distribution p(z). The hyperparameter β controls adaptation strength.
Temporal Knowledge Synchronization
Organizational knowledge evolves rapidly, requiring continuous synchronization mechanisms. Differential updating strategies maintain:
- Versioned Embeddings: Snapshot-based vector indices with timestamped partitions
- Incremental Graph Expansion: Change-aware propagation algorithms for knowledge graphs
- Drift Detection: Statistical monitoring of concept shift in query patterns
Evaluation Frameworks
Domain-adapted LLMs require specialized evaluation metrics beyond standard NLP benchmarks:
| Metric | Computation | Purpose |
|---|---|---|
| Factual Consistency | $$\frac{1}{N}\sum_{i=1}^N \mathbb{I}(\text{Claim}_i \in \text{KB})$$ | Verification against ground truth |
| Decision Traceability | $$\text{PathLength}(\text{ReasoningChain}, \text{KnowledgeGraph})$$ | Explanation quality assessment |
Implementation Considerations
Production deployments require addressing several practical constraints:
- Latency Budgets: Retrieval operations must complete within 200-500ms for interactive use
- Access Control: Fine-grained permissioning of knowledge sources based on user roles
- Audit Trails: Immutable logging of knowledge references for compliance

3. Reinforcement Learning for Iterative Decision Improvement
3.2 Reinforcement Learning for Iterative Decision Improvement
Reinforcement learning (RL) provides a principled framework for optimizing sequential decision-making in organizational simulations. At its core, RL models an agent interacting with an environment—here, the organization—through states s, actions a, and rewards r. The agent’s policy π(a|s) is iteratively refined to maximize cumulative reward, aligning with organizational objectives like profit or efficiency.
Markov Decision Processes (MDPs) for Organizational Dynamics
Organizational decision-making is formalized as a Markov Decision Process (MDP), defined by the tuple (S, A, P, R, γ):
- S: State space (e.g., resource allocations, market conditions)
- A: Action space (e.g., budget adjustments, hiring decisions)
- P(s'|s, a): Transition dynamics modeling state evolution
- R(s, a): Reward function quantifying decision quality
- γ: Discount factor balancing immediate vs. long-term gains
Policy Gradient Methods for Adaptive Strategies
Policy gradient methods directly optimize the policy π_θ parameterized by θ. The gradient ascent update rule is derived via the policy gradient theorem:
where Qπ(s, a) is the state-action value function. Practical implementations often use actor-critic architectures, where a critic network estimates Q to reduce variance in gradient updates.
Multi-Agent RL for Distributed Decision-Making
Organizations often decompose into interacting agents (departments, teams). The Nash equilibrium concept extends RL to multi-agent settings, where each agent i optimizes its policy π_i given others’ strategies π_{-i}:
Algorithms like MADDPG (Multi-Agent Deep Deterministic Policy Gradient) use centralized training with decentralized execution, enabling coordination while preserving autonomy.
Reward Shaping for Organizational Alignment
Designing R(s, a) is critical. Inverse RL infers rewards from expert demonstrations (e.g., past decisions), while hierarchical RL decomposes complex goals into sub-tasks. For example:
- Short-term rewards: Quarterly revenue targets
- Long-term rewards: Market share growth or sustainability metrics
Case Study: Supply Chain Optimization
A global retailer used RL to dynamically adjust inventory across 200 warehouses. The state space included demand forecasts and stock levels, while actions were redistribution orders. The policy reduced excess inventory by 22% while maintaining 99% fulfillment rates, demonstrating RL’s scalability to real-world organizational problems.

Evaluating Simulation Accuracy Against Real-World Outcomes
Assessing the fidelity of LLM-based organizational decision-making simulations requires rigorous comparison against empirical data. The primary challenge lies in quantifying the divergence between simulated and real-world outcomes, accounting for stochasticity, contextual biases, and temporal dynamics inherent in organizational behavior.
Quantitative Metrics for Alignment Assessment
Three principal classes of metrics dominate accuracy evaluation:
- Distributional Similarity: Measures like Jensen-Shannon Divergence (JSD) compare decision outcome distributions between simulated and historical datasets:
where M = ½(P + Q) and DKL denotes Kullback-Leibler divergence. For organizational decisions, this captures whether the simulation reproduces the statistical profile of real choices.
- Temporal Consistency: Dynamic Time Warping (DTW) evaluates alignment of decision sequences:
where π represents an alignment path between simulated (X) and actual (Y) decision timelines.
- Causal Fidelity: Structural Causal Model (SCM) testing verifies preservation of cause-effect relationships through counterfactual queries and do-calculus operations.
Benchmarking Protocols
Effective evaluation requires controlled experimentation across three dimensions:
- Scenario Replay: Feed historical context (meeting transcripts, market data) into the LLM and compare its decisions against recorded organizational actions.
- Counterfactual Testing: Modify key input variables (e.g., budget constraints) and measure whether the simulation responds proportionally to real-world elasticity.
- Expert Blind Testing: Have domain experts distinguish between anonymized real and simulated decision trails, measuring human detection rates.
Case Study: Supply Chain Disruption Response
A 2023 MIT study evaluated GPT-4's simulation of retail inventory reallocation decisions during port closures. The model achieved 0.82 JSD similarity with actual corporate responses but showed systematic underestimation of human risk aversion (p < 0.01 in Wilcoxon signed-rank test). Calibration through reinforcement learning from human feedback reduced this bias by 37% in subsequent trials.
Limitations and Artifacts
Common failure modes include:
- Anchoring Effects: LLMs overweight early inputs in sequential decisions compared to human teams.
- Conformity Bias: Simulated groups exhibit higher consensus than real organizations (measured by entropy difference).
- Innovation Gap: Novel solutions appear in only 12-18% of simulated decisions versus 23-29% in corporate records.
where S represents sets of unique decision strategies.

4. Corporate Strategy Development Simulations
Corporate Strategy Development Simulations
Large language models (LLMs) can simulate corporate decision-making by modeling strategic interactions among stakeholders, market dynamics, and competitive pressures. These simulations leverage multi-agent reinforcement learning (MARL) frameworks, where each agent represents a decision-making entity (e.g., executives, departments, competitors). The agents operate under bounded rationality, optimizing their actions based on partial information and heuristic strategies.
Multi-Agent Decision Dynamics
In a corporate strategy simulation, agents interact within a game-theoretic environment defined by payoff matrices and state transitions. Let N be the set of agents, each with a strategy space Si and a utility function Ui(s), where s ∈ S = S1 × ... × SN. The Nash equilibrium s* satisfies:
LLMs approximate this equilibrium through iterative policy gradient updates, where each agent’s strategy is parameterized by a neural network. The policy gradient for agent i is computed as:
Here, Qi(s, ai) is the critic network estimating the expected return for agent i, and oi represents the agent’s local observations.
Market Environment Modeling
The simulation environment incorporates stochastic demand curves, competitor reactions, and macroeconomic shocks. Demand for a product j is modeled as:
where αj is baseline demand, βj is price elasticity, γjk captures cross-product competition, and ϵj is Gaussian noise. Agents learn to adjust pricing and R&D investments by backpropagating through this demand function.
Organizational Hierarchy Simulation
LLMs replicate hierarchical decision-making by structuring agents into layers (e.g., CEO, division heads, operational teams). Information flows upward as compressed embeddings and downward as task-specific policies. The communication protocol between layers Lk and Lk+1 is formalized as:
where hk is the hidden state of layer k, and fenc, fdec are transformer-based encoder-decoder networks.
Case Study: Mergers & Acquisitions Simulation
In a merger scenario, two agent populations (firms A and B) negotiate terms through alternating offers. The LLM evaluates synergies using a discounted cash flow (DCF) model:
Agents learn optimal bidding strategies via deep Q-learning, with the action space including premium percentages, stock vs. cash offers, and divestiture commitments.
Implementation with Transformer Architectures
The simulation backbone is a modified transformer where attention heads represent inter-agent communication channels. For n agents, the multi-head attention output is:
with query Q, key K, and value V matrices partitioned by agent. The PyTorch implementation uses masked attention to enforce organizational communication constraints:
class MultiAgentTransformer(nn.Module):
def __init__(self, n_agents, d_model, n_heads):
super().__init__()
self.agent_embeddings = nn.Parameter(torch.randn(n_agents, d_model))
self.attention = nn.MultiheadAttention(d_model, n_heads)
def forward(self, x, mask):
# x: [seq_len, batch_size, d_model]
agent_embeds = self.agent_embeddings.unsqueeze(1) # [n_agents, 1, d_model]
x_with_agents = x + agent_embeds.expand(-1, x.size(1), -1)
attn_output, _ = self.attention(
x_with_agents, x_with_agents, x_with_agents,
attn_mask=mask
)
return attn_output
The attention mask mask enforces hierarchical communication rules, such as preventing operational teams from directly influencing CEO-level decisions.

Public Policy Impact Forecasting
Large language models (LLMs) are increasingly being leveraged to simulate organizational decision-making processes, particularly in the domain of public policy impact forecasting. By modeling complex socio-economic systems, these models can predict the downstream effects of policy interventions with remarkable accuracy. The core mechanism involves multi-agent simulations, where each agent represents a stakeholder (e.g., government bodies, corporations, or citizen groups) and interacts within a dynamically evolving environment.
Mathematical Foundations
The forecasting process relies on a combination of game theory, Bayesian inference, and reinforcement learning. At its core, the system models the expected utility of policy decisions for each agent, accounting for uncertainties and competing incentives. The utility function for a policy π can be expressed as:
where Ui is the utility for agent i, P(s|π) is the probability of state s occurring under policy π, and Ri(s) is the reward for agent i in state s. The state space S captures all possible socio-economic conditions influenced by the policy.
Multi-Agent Reinforcement Learning Framework
To simulate organizational decision-making, LLMs are embedded within a multi-agent reinforcement learning (MARL) framework. Each agent learns an optimal policy by maximizing its expected utility while accounting for the actions of other agents. The Q-learning update rule for agent i is given by:
where α is the learning rate, γ is the discount factor, and ri is the immediate reward. The state s' represents the new state after all agents take their actions.
Case Study: Tax Policy Simulation
A practical application involves forecasting the impact of progressive taxation policies. Here, agents represent taxpayers, corporations, and government entities. The LLM simulates behavioral responses, such as labor supply adjustments or corporate investment shifts, based on historical data and economic theory. For instance, the Laffer curve effect can be modeled as:
where T(t) is total tax revenue at rate t, and L(t) is the labor supply function, which decreases as t increases beyond an optimal threshold.
Uncertainty Quantification
Policy forecasts must account for epistemic (model) and aleatoric (data) uncertainties. Bayesian neural networks (BNNs) are often integrated into LLMs to provide probabilistic outputs. The posterior predictive distribution for a policy outcome y is:
where x represents policy inputs, D is historical data, and θ are model parameters. Markov Chain Monte Carlo (MCMC) methods or variational inference approximate this integral.
Validation and Calibration
To ensure realism, simulated outcomes are calibrated against historical policy data. The mean absolute percentage error (MAPE) between predicted (ŷ) and actual (y) outcomes is minimized:
Cross-validation techniques, such as k-fold partitioning of historical datasets, are employed to prevent overfitting.
Ethical and Practical Constraints
While LLM-based forecasting offers powerful insights, it faces limitations. Biases in training data can skew predictions, and the black-box nature of deep learning models complicates interpretability. Techniques like SHAP (Shapley Additive Explanations) values are increasingly used to attribute policy outcomes to specific input features:
where N is the set of all features, S is a subset of features excluding i, and v(S) is the model output for subset S.

4.3 Crisis Response Scenario Testing
Crisis response scenario testing evaluates how large language models (LLMs) simulate organizational decision-making under high-stakes, time-sensitive conditions. Unlike static decision trees, LLMs dynamically adapt to evolving constraints, incomplete information, and conflicting stakeholder priorities. The core challenge lies in modeling the interplay between institutional protocols, human cognitive biases, and real-time environmental feedback.
Mathematical Framework for Crisis Dynamics
The crisis environment is formalized as a partially observable Markov decision process (POMDP) with time-dependent reward shaping. Let the state space S decompose into observable components O and latent variables L, where:
The action space A represents organizational response options, constrained by resource availability R and institutional policies π. The transition dynamics incorporate both deterministic procedural rules and stochastic environmental effects:
Reward functions must balance immediate crisis mitigation against long-term organizational stability, requiring multi-objective optimization with time-varying weights:
Architecture for Multi-Agent Crisis Simulation
Effective testing requires modeling three interacting agent classes:
- Decision Agents: Transformer-based models fine-tuned on organizational policy documents and historical crisis records
- Environment Agents: Diffusion models that generate plausible crisis evolution trajectories
- Stakeholder Agents: LLM instances representing internal/external parties with competing interests
The simulation progresses through discrete time steps, with each agent class updating its state based on:
where h represents hidden states, m inter-agent messages, and c environmental context vectors.
Validation Through Counterfactual Stress Testing
Scenario validity is assessed by systematically varying:
- Information availability (varying P(O_t|L_t) observation probabilities)
- Resource constraints (modifying action space dimensionality)
- Communication latency (introducing delayed message passing)
Performance metrics include:
Case Study: Supply Chain Disruption Response
A pharmaceutical company simulation tested LLM responses to simultaneous:
- Raw material shortages (30% supply reduction)
- Transportation network failures (Poisson-distributed delays)
- Regulatory scrutiny increases (compliance check frequency ×2)
The LLM successfully negotiated 83% of simulated scenarios without violating core safety protocols, outperforming traditional rule-based systems by 22% in mean reward accumulation. Critical failure modes emerged when:
for empirically determined threshold constant k, indicating irreversible decision cascades.

5. Key Research Papers on Decision-Making LLMs
5.1 Key Research Papers on Decision-Making LLMs
- Augmenting organizational decision-making with deep learning algorithms ... — For several decades, decision-making has been a core topic in organization studies (March and Simon, 1958, Shapira, 2002, Singh, 1986).Scholars have grappled with the problem of how organizational processes, structures, and technology facilitate or constrain decision-making and shape decision-making outcomes (Joseph and Gaba, 2019, March and Simon, 1958).
- Determinants of LLM-assisted Decision-Making - arXiv.org — Large Language Models (LLMs) offer versatile assistance in decision-making processes. For instance, their ability to process and summarize extensive text data [] enables decision-makers to comprehend key insights swiftly. Moreover, LLMs are adept at idea generation [] and are capable of generating different solutions [], enhancing the creation of various alternatives in decision-making.
- Large language models present new questions for decision support — From this perspective, LLMs may consolidate decision-making power by making it easier for leaders to collect required information using MIS (Brynjolfsson & Mendelson, 1993). 7 For example, LLMs may make it easier for senior managers to integrate, organize, and analyze information from individual branch locations, reducing the need for middle ...
- Strategic Decision-Making Support Using Large Language Models (LLMs) — company decided to implement a Large Language Model (LLM) to enhance its strategic decision-making capabilities. 4.2 Application of LLMs The implementation of the LLM was a strategic initiative aimed at transforming the organization's decision-making process by leveraging advanced AI capabilities.
- Decision-Making Behavior Evaluation Framework for LLMs under Uncertain ... — In recent years, the deployment of large language models (LLMs) such as ChatGPT-4.0-Turbo [], Claude-3-Opus [], and Gemini-1.0-pro [] has revolutionized various fields by providing sophisticated, human-like responses to a multitude of queries. Their applications span from answering everyday questions and content generation to complex decision-support systems in healthcare, finance, and beyond ...
- AI based decision making: combining strategies to improve operational ... — 1. Introduction. An important theme in the field of strategic management, operations management, information systems and production research is the concept of alignment (Cao, Baker, and Hoffman Citation 2012).Some studies in production research focus on product design (e.g. Dou, Zhang and Nan Citation 2017), while some have considered the manufacturing and supply chain (e.g. Ivanov, Das, and ...
- (PDF) Decision-Making Behavior Evaluation Framework for LLMs under ... — W e assess how LLMs' decision-making process aligns with or diver ges from human-like behavior and uncovers potential biases and ethical concerns, emphasizing the consideration for fairness in ...
- Cognitive Bias in Decision-Making with LLMs - arXiv.org — To avoid cross-contamination with existing data that a model might have been trained on, BiasBuster provides novel prompts for a high-stakes decision-making scenario - student admissions for a college program, where we generate and provide sets of cognitive bias testing prompts and debiased prompts. These testing prompts quantitatively evaluate various patterns for cognitive biases, focusing ...
- Unraveling the landscape of large language models: a systematic review ... — By analyzing extensive medical literature, electronic health records and research papers, LLMs can assist healthcare providers in making more informed decisions and formulating personalized treatment plans (Liévin et al., 2022). Furthermore, LLMs can analyze patient data and suggest potential interventions, aiding in early detection and ...
- Evaluation and mitigation of the limitations of large language models ... — Clinical decision-making is one of the most impactful parts of a physician's responsibilities and stands to benefit greatly from artificial intelligence solutions and large language models (LLMs ...
5.2 Open-Source Frameworks and Tools
- Augmenting organizational decision-making with deep learning algorithms ... — For several decades, decision-making has been a core topic in organization studies (March and Simon, 1958, Shapira, 2002, Singh, 1986).Scholars have grappled with the problem of how organizational processes, structures, and technology facilitate or constrain decision-making and shape decision-making outcomes (Joseph and Gaba, 2019, March and Simon, 1958).
- PDF Open-Source vs. proprietary LLMs: The battle for innovation and ... — Open-source and self-owned large language models significantly differ regarding aspiration, impact on creativity, and availability (Zhang & Lu, 2021). It is worth mentioning that open-source LLMs are designed explicitly to share AI technology globally, making it available for researchers, developers, and organizations globally without restrictions
- Determinants of LLM-assisted Decision-Making - arXiv.org — Moreover, LLMs exhibit a high degree of rationality in decision-making tasks , implying that LLMs hold the potential to enhance human decision-making processes by providing reasoned outputs. Thus, in the realm of AI-assisted decision-making [ 174 , 172 ] , LLMs can be seen as powerful and promising tools due to their multifaceted capabilities.
- How to Build a RAG System with Open Source LLMs? — 1.4. Overview of Open Source LLMs. Open Source Large Language Models (LLMs) have gained significant traction in recent years, providing developers and researchers with powerful tools for natural language processing (NLP) tasks. These models are designed to understand and generate human-like text, making them invaluable for various applications.
- Strategic Decision-Making Support Using Large Language Models (LLMs) — company decided to implement a Large Language Model (LLM) to enhance its strategic decision-making capabilities. 4.2 Application of LLMs The implementation of the LLM was a strategic initiative aimed at transforming the organization's decision-making process by leveraging advanced AI capabilities.
- Large language models present new questions for decision support — Yet LLMs may reduce the costs of such structured forms of reasoning. For instance, in some areas like marketing, scholars have developed rigorous decision-making frameworks that have not yet found wide use (Lilien, 2011); chat interfaces might encourage adoption by making it easier to communicate with such formal models (Little, 1970).
- Decision-Making Behavior Evaluation Framework for LLMs under Uncertain ... — In recent years, the deployment of large language models (LLMs) such as ChatGPT-4.0-Turbo [], Claude-3-Opus [], and Gemini-1.0-pro [] has revolutionized various fields by providing sophisticated, human-like responses to a multitude of queries. Their applications span from answering everyday questions and content generation to complex decision-support systems in healthcare, finance, and beyond ...
- Empowering LLMs with Toolkits: An Open-Source Intelligence ... - MDPI — The acquisition of cybersecurity threat intelligence is a critical task in the implementation of effective security defense strategies. Recently, advancements in large language model (LLM) technology have led to remarkable capabilities in natural language processing and understanding. In this paper, we introduce an LLM-based approach for open-source intelligence (OSINT) acquisition. This ...
- Conversing with business process-aware large language models ... - Springer — Traditionally, process-aware Decision Support Systems (DSSs) have been enhanced with AI functionalities to facilitate quick and informed decision-making. In this context, AI-Augmented Business Process Management Systems have emerged as innovative human-centric information systems, blending flexibility, autonomy, and conversational capability. Large Language Models (LLMs) have significantly ...
- 9 Gov Tech Use Cases for LLMs - GovWebworks — Or you could use a self-hosted or open-source tool like Weaviate or ChromaDB. 7. Summarization. LLMs can be used to automatically condense a longer piece of text, such as an article, document, or conversation, into a shorter version while retaining its main ideas, key points, and important information. There are two main summarization approaches:
5.3 Recommended Courses and Tutorials
- Large Language Models Empowered Agent-based Modeling and Simulation: A ... — For individual behavior simulations, the primary goal of related research is to simulate the human-like economic decision-making capabilities of LLMs horton2023large ; geerling2023chatgpt ; bauer2023decoding ; chen2023emergence or their understanding of economic phenomena bybee2023surveying ; xie2023wall ; faria2023artificial . This provides an ...
- Making decisions | OpenLearn - Open University — After studying this course, you should be able to: have greater insight into decision-making processes; use that insight to make more effective decisions; possess a range of different perspectives on what counts as an 'effective' decision; be better equipped to understand and influence the decision-making processes of other individuals and groups
- Determinants of LLM-assisted Decision-Making - arXiv.org — Large Language Models (LLMs) offer versatile assistance in decision-making processes. For instance, their ability to process and summarize extensive text data [] enables decision-makers to comprehend key insights swiftly. Moreover, LLMs are adept at idea generation [] and are capable of generating different solutions [], enhancing the creation of various alternatives in decision-making.
- Artificial Intelligence and Strategic Decision-Making: Evidence from ... — This paper explores how artificial intelligence (AI) may impact the strategic decision-making (SDM) process in firms. We illustrate how AI could augment existing SDM tools and provide empirical evidence from a leading accelerator program and a start-up competition that current large language models can generate and evaluate strategies at a level comparable to entrepreneurs and investors.
- Foundation models and intelligent decision-making ... - ScienceDirect — Intelligent Decision-Making (IDM) is a cornerstone of artificial intelligence (AI), designed to automate or augment decision processes. Modern IDM paradigms integrate advanced frameworks to enable intelligent agents to make effective and adaptive choices and decompose complex tasks into manageable steps, such as AI agents and high-level reinforcement learning.
- Leveraging LLMs for Unstructured Direct Elicitation of Decision Rules — Unstructured Direct Elicitation (UDE) offers a flexible method to capture consumer preferences and decision rules in an unstructured format such as writing an email. However, it relies on subjective human coding and indicative consideration set sizes to make accurate predictions on consideration decisions. This research leverages large language models (LLMs) to replace human judges and make ...
- Generative Artificial Intelligence: A New Engine for Advancing ... — The field of intelligent agents powered by LLMs is rapidly developing. Specifically, agents are created by LLMs to be able to autonomously make decisions on the basis of the knowledge of LLMs and take actions (e.g., writing codes to call other applications through API) on their own. LLMs can process multimodal data (e.g., text, sound, and ...
- The Ultimate Guide to Fine-Tuning LLMs from Basics to Breakthroughs: An ... — Figure 1.1: A chronological timeline showcasing the evolution of Large Language Models (LLMs) from 1990 to 2023. This progression begins with early statistical models such as N-grams, transitions through neural language models like Word2Vec and RNN/LSTM, and advances into the era of pre-trained models with the introduction of transformers and attention mechanisms.
- DZone: Programming & DevOps news, tutorials & tools — Programming, Web Development, and DevOps news, tutorials and tools for beginners to experts. Hundreds of free publications, over 1M members, totally free.







