diff --git a/src/server/main.py b/src/server/main.py index f7293d1b..8746923b 100644 --- a/src/server/main.py +++ b/src/server/main.py @@ -85,17 +85,17 @@ async def robots() -> FileResponse: return FileResponse("static/robots.txt") -@app.get("/llm.txt") +@app.get("/llms.txt") async def llm_txt() -> FileResponse: - """Serve the ``llm.txt`` file to provide information about the site to LLMs. + """Serve the ``llms.txt`` file to provide information about the site to LLMs. Returns ------- FileResponse - The ``llm.txt`` file located in the static directory. + The ``llms.txt`` file located in the static directory. """ - return FileResponse("static/llm.txt") + return FileResponse("static/llms.txt") # Include routers for modular endpoints diff --git a/src/server/templates/components/navbar.jinja b/src/server/templates/components/navbar.jinja index b64de0df..b440ba98 100644 --- a/src/server/templates/components/navbar.jinja +++ b/src/server/templates/components/navbar.jinja @@ -11,9 +11,9 @@ {# Navigation with updated styling #}