llm is now styled LLM in the docs

Closes #45
This commit is contained in:
Simon Willison 2023-06-17 13:33:12 +01:00 committed by GitHub
parent 145c3ff14f
commit 96c8f5d342
3 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
# llm
# LLM
[![PyPI](https://img.shields.io/pypi/v/llm.svg)](https://pypi.org/project/llm/)
[![Documentation](https://readthedocs.org/projects/llm/badge/?version=latest)](https://llm.datasette.io/)

View file

@ -46,7 +46,7 @@ source_suffix = ".rst"
master_doc = "index"
# General information about the project.
project = "llm"
project = "LLM"
copyright = "2023, Simon Willison"
author = "Simon Willison"
@ -96,7 +96,7 @@ html_theme = "furo"
# documentation.
html_theme_options = {}
html_title = "llm"
html_title = "LLM"
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
@ -134,7 +134,7 @@ latex_documents = [
(
master_doc,
"llm.tex",
"llm documentation",
"LLM documentation",
"Simon Willison",
"manual",
)
@ -149,7 +149,7 @@ man_pages = [
(
master_doc,
"llm",
"llm documentation",
"LLM documentation",
[author],
1,
)
@ -165,7 +165,7 @@ texinfo_documents = [
(
master_doc,
"llm",
"llm documentation",
"LLM documentation",
author,
"llm",
" Access large language models from the command-line ",

View file

@ -1,4 +1,4 @@
# llm
# LLM
A command-line utility for interacting with Large Language Models, such as OpenAI's GPT series.