llm-lobbyist
Enrichment pendingCode for the paper: "Large Language Models as Corporate Lobbyists" (2023).
GraphCanon updated today · GitHub synced today
Trust & integrity
Full report- Maintenance
- Dormant (1275d since push)
- As of today · Source: github_public_v1
- Provenance
- Not a fork · Personal account
- As of today · Source: github_public_v1
- Security (OSV)
- No lockfile
- As of today · Source: none
Public GitHub metadata and optional OSV dependency scans. Signals, not a guarantee. Trust methodology.
Overview
Code for the paper: "Large Language Models as Corporate Lobbyists" (2023).
Capability facts
- Languages
- jupyter notebook
Source: github.language · Jul 11, 2026
Categories
Tags
README
llm-lobbyist
Large Language Models as Corporate Lobbyists
Links
- Paper
- [This is a draft paper to explain some of the potential (positive and negative) implications of taking the LLM as Lobbyist idea further]
- Code
- [This is code we have released to allow other researchers to improve on methods leveraging large language models to conduct related question-answering and language generation tasks]
- Data
- [This is a new dataset we have released to allow other researchers to benchmark the performance of automated systems to determine the relevance of legislation to particular companies]
Abstract
We demonstrate a proof-of-concept of a large language model conducting corporate lobbying related activities. An autoregressive large language model (OpenAI’s
text-davinci-003) determines if proposed U.S. Congressional bills are relevant to specific public companies and provides explanations and confidence levels. For the bills the model deems as relevant, the model drafts a letter to the sponsor of the bill in an attempt to persuade the congressperson to make changes to the proposed legislation. We use hundreds of novel ground-truth labels of the relevance of a bill to a company to benchmark the performance of the model, which outperforms the baseline of predicting the most common outcome of irrelevance. We also benchmark the performance of the previous OpenAI GPT-3 model (text-davinci-002), which was the state-of-the-art model on many academic natural language tasks untiltext-davinci-003was recently released. The performance oftext-davinci-002is worse than a simple benchmark. These results suggest that, as large language models continue to exhibit improved natural language understanding capabilities, performance on corporate lobbying related tasks will continue to improve. Longer-term, if AI begins to influence law in a manner that is not a direct extension of human intentions, this threatens the critical role that law as information could play in aligning AI with humans. This Essay explores how this is increasingly a possibility. Initially, AI is being used to simply augment human lobbyists for a small proportion of their daily tasks. However, firms have an incentive to use less and less human oversight over automated assessments of policy ideas and the written communication to regulatory agencies and Congressional staffers. The core question raised is where to draw the line between human-driven and AI-driven policy influence.
Citation
If you use this code, you can cite:
John Nay, Large Language Models as Corporate Lobbyists (January 2, 2023). Available at SSRN: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4316615.
Bibtex for citations in LaTex:
@article{nay2023llmlobbyist,
author = {John Nay},
archivePrefix = {arXiv},
eprint = {2301.01181},
primaryClass = {cs.CL},
title = {Large Language Models as Corporate Lobbyists},
year = 2023,
keywords = {language models, alignment, policy},
url = {https://arxiv.org/abs/2301.01181}
}
Overview
We use autoregressive large language models to systematically:
- Summarize bill summaries that are too long to fit into the context window of the model so the model can conduct steps 2 and 3.
- Using either the original bill summary if it was not too long, or the summarized version, assess whether the bill may be relevant to a company based on a company’s description in its 10K filing. Provide an explanation for why the bill is relevant or not. Provide a confidence level to the overall answer.
- If the bill is deemed relevant to the company by the model, draft a letter to the sponsor of the bill arguing for changes to the bill.
The model i