Skip to main content

Design and build LLMs.txt knowledge structures by extracting and summarizing web content

Project description

LLMsTxt Architect

llms.txt is an emerging standard for communicating website contents to LLMs, often as a markdown file listing URLs within a site and their descriptions. This has potential to support context retrieval, allowing LLMs to reflect on llms.txt files and then fetch / read pages needed to accomplish tasks. However, this means that llms.txt files must clearly communicate the purpose of each URL so that the LLM knows which pages to fetch.

LLMsTxt Architect is a Python package that designs and builds LLMs.txt files by extracting and summarizing web content using LLMs. Importantly, it gives the user control over the prompt to summarize pages, the model provider and model for summarization, the input pages to search, the search depth for recursive URL loader for each input page, and the website extractor (e.g., bs4, Markdownify, etc) for each page.

llms_txt_architecture

Features

  • Recursively crawl a user defined list of web sites to a user-defined depth
  • Extract content from each page with a user-defined extractor
  • Summarize content using user-defined LLM selected from many providers
  • Fault tolerance with checkpoints to resume after interruptions or timeouts
  • Periodic progress updates with intermediate results saved during processing
  • Skip already processed pages to efficiently resume interrupted runs
  • Generate a formatted LLMs.txt file containing all summaries sorted by URL
  • Deduplicate summaries to ensure clean output

Quickstart

API key

By default, the package uses Anthropic's Claude models. You can set the API key for the Anthropic provider with:

export ANTHROPIC_API_KEY=your_api_key_here

However, you can easily switch to other providers listed here (see Configurations below).

UVX

Use uvx to fetch and run the package directly with user-defined parameters:

$ curl -LsSf https://astral.sh/uv/install.sh | sh
$ uvx --from llmstxt-architect llmstxt-architect --urls https://langchain-ai.github.io/langgraph/concepts --max-depth 1 --llm-name claude-3-7-sonnet-latest --llm-provider anthropic --project-dir test

Pip

CLI

$ python3 -m venv .venv
$ source .venv/bin/activate  # On Windows: .venv\Scripts\activate
$ pip install llmstxt-architect
$ llmstxt-architect --urls https://langchain-ai.github.io/langgraph/concepts --max-depth 1 --llm-name claude-3-7-sonnet-latest --llm-provider anthropic --project-dir test

Python API in Jupyter/IPython notebooks

import asyncio
from llmstxt_architect.main import generate_llms_txt

await generate_llms_txt(
      urls=["https://langchain-ai.github.io/langgraph/concepts"],
      max_depth=1,
      llm_name="claude-3-7-sonnet-latest",
      llm_provider="anthropic",
      project_dir="test",
  )

Python API in a script

import asyncio
from llmstxt_architect.main import generate_llms_txt

async def main():
      await generate_llms_txt(
          urls=["https://langchain-ai.github.io/langgraph/concepts"],
          max_depth=1,
          llm_name="claude-3-7-sonnet-latest",
          llm_provider="anthropic",
          project_dir="test_script",
      )

if __name__ == "__main__":
      asyncio.run(main())

Configurations

The full list of configurations is available in the CLI help.

Parameter Type Default Description
--urls List[str] Required List of URLs to process
--max-depth int 5 Maximum recursion depth for URL crawling
--llm-name str "claude-3-sonnet-20240229" LLM model name
--llm-provider str "anthropic" LLM provider
--project-dir str "llms_txt" Main project directory to store all outputs
--output-dir str "summaries" Directory within project-dir to save individual summaries
--output-file str "llms.txt" Output file name for combined summaries
--summary-prompt str "You are creating a summary..." Prompt to use for summarization
--blacklist-file str None Path to a file containing blacklisted URLs to exclude (one per line)
--extractor str "default" HTML content extractor to use (choices: "default" (Markdownify), "bs4" (BeautifulSoup))

Model

The package uses LLMs for summarization. By default, it's configured for Anthropic's Claude models:

To use a different LLM provider:

Hosted LLMs (OpenAI, Anthropic, etc.):

  1. Install the corresponding package (e.g., pip install langchain-openai)
  2. Set the appropriate API key (e.g., export OPENAI_API_KEY=your_api_key_here)
  3. Specify the provider and model with the --llm-provider and --llm-name options, e.g.,
    --llm-provider openai --llm-name gpt-4o
    

Local Models with Ollama:

  1. Install Ollama
  2. Pull your desired model (e.g., ollama pull llama3.2:latest)
  3. Install the package: pip install langchain-ollama
  4. Specify the provider and model with the --llm-provider and --llm-name options, e.g.,
    --llm-provider ollama --llm-name llama3.2:latest
    
    No API key is required for local models!

Prompt

By default, it uses this prompt (see llmstxt_architect/cli.py):

"You are creating a summary for a webpage to be used in a llms.txt file "
"to help LLMs in the future know what is on this page. Produce a concise "
"summary of the key items on this page and when an LLM should access it."

You can override this prompt with the --summary-prompt option, e.g.,

--summary-prompt "You are creating a summary for a webpage to be used in a llms.txt file "

Extractor

The package uses LangChain's RecursiveURLLoader to crawl the URLs.

You can specify which built-in extractor to use with the --extractor CLI option:

# Use BeautifulSoup extractor
llmstxt-architect --urls https://example.com --extractor bs4

# Use default Markdownify extractor
llmstxt-architect --urls https://example.com --extractor default

For advanced use cases, you can override the default extractor in the Python API with your own custom extractor function, e.g.,

def my_extractor(html: str) -> str:
    """
    Extract content from HTML using xxx.
    
    Args:
        html (str): The HTML content to extract from
        
    Returns:
        content (str): Extracted text content
    """
    
    # TODO: Implement your custom extractor here
    
    return content

import asyncio
from llmstxt_architect.main import generate_llms_txt

await generate_llms_txt(
      urls=["https://langchain-ai.github.io/langgraph/concepts"],
      max_depth=1,
      llm_name="claude-3-7-sonnet-latest",
      llm_provider="anthropic",
      project_dir="test",
      extractor=my_extractor
  )

Resuming Interrupted Runs

The tool provides robust checkpoint functionality to handle interruptions during processing:

Checkpoint Files

  • Progress tracker: <project_dir>/<output_dir>/summarized_urls.json
  • Individual summaries: <project_dir>/<output_dir>/<url>.txt
  • Combined output: <project_dir>/<output_file>

All paths are configurable with the --project-dir, --output-dir, and --output-file options.

Auto-Resume Functionality

If processing is interrupted (timeout, network issues, etc.), simply run the same command again. The tool will:

  1. Skip already processed pages using the checkpoint file
  2. Resume processing from where it left off
  3. Update the output file periodically (every 5 documents)
  4. Generate a complete, sorted llms.txt file upon completion

This is particularly valuable when processing large websites or when using rate-limited API-based LLMs.

URL Blacklisting

You can exclude specific URLs from your llms.txt file by providing a blacklist file:

# Create a blacklist file
cat > blacklist.txt << EOF
# Deprecated pages
https://example.com/old-version/
https://example.com/beta-feature

# Pages with known issues
https://example.com/broken-page
EOF

The name of the blacklist file is configurable with the --blacklist-file option.

The blacklist file should contain one URL per line. Empty lines and lines starting with # are ignored. The tool will:

  1. Skip summarization of blacklisted URLs during crawling
  2. Filter out blacklisted URLs from the final llms.txt file
  3. Report how many blacklisted URLs were excluded

This is useful for excluding deprecated documentation, beta features, or pages with known issues.

Summary of Features

The tool includes several features to handle large-scale documentation processing:

  • Interruption Handling: Even if the process is interrupted by timeouts or errors, progress is preserved
  • Incremental Updates: The output file is updated periodically during processing (every 5 successful summaries)
  • URL Deduplication: Summaries for pages that have already been processed are not regenerated
  • Content Deduplication: Duplicate summaries are filtered out from the final output
  • Organized Output: Summaries in the final llms.txt file are sorted by URL for better readability
  • URL Blacklisting: Support for excluding specific URLs via a blacklist file
  • Exception Handling: Errors during summarization of individual pages don't halt the entire process
  • Progress Tracking: Clear console output shows which pages have been processed and skipped

These enhancements make the tool suitable for processing large documentation websites with hundreds of pages, even when using rate-limited API-based LLM providers.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llmstxt_architect-0.5.0.tar.gz (94.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llmstxt_architect-0.5.0-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

Details for the file llmstxt_architect-0.5.0.tar.gz.

File metadata

  • Download URL: llmstxt_architect-0.5.0.tar.gz
  • Upload date:
  • Size: 94.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for llmstxt_architect-0.5.0.tar.gz
Algorithm Hash digest
SHA256 7b31cf7cd3c4757f0101e70d0421852af2ff17803929a885954055dc0a26c929
MD5 0f6fd7e1b7160317a4f4df88427e6bf1
BLAKE2b-256 6089fc225b81010276e7a99d3c938dedb6d8bbe971432f5a7189008adf7f2323

See more details on using hashes here.

File details

Details for the file llmstxt_architect-0.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for llmstxt_architect-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 010cb956aa6e82402e2077614ef05b2625f6950876183031a3d72db3bf0f4fcc
MD5 07b2a2ee7e420ed91c9b58de5262fd6e
BLAKE2b-256 4856a2e42dd80e217f23f155ea959980588e1df2ae3c1eb2936e138fd178544c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page