This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/burr.git
The following commit(s) were added to refs/heads/asf-site by this push:
new e8ee2361 Deploy site from 9da8f2949ace716933451381e0be614fba238c0b
e8ee2361 is described below
commit e8ee2361901e53ec664b172d9c0eea1d967ec8cf
Author: GitHub Actions <[email protected]>
AuthorDate: Thu Mar 19 06:34:58 2026 +0000
Deploy site from 9da8f2949ace716933451381e0be614fba238c0b
---
content/.htaccess | 36 ++++++++++++++++++++++
content/404.html | 2 +-
.../_buildManifest.js | 0
.../_ssgManifest.js | 0
content/asf/index.html | 6 ++++
content/concepts/actions/index.html | 6 ++++
content/concepts/additional-visibility/index.html | 6 ++++
content/concepts/hooks/index.html | 6 ++++
content/concepts/index.html | 6 ++++
content/concepts/overview/index.html | 6 ++++
content/concepts/parallelism/index.html | 6 ++++
content/concepts/planned-capabilities/index.html | 6 ++++
content/concepts/recursion/index.html | 6 ++++
content/concepts/sdlc/index.html | 6 ++++
content/concepts/serde/index.html | 6 ++++
content/concepts/state-machine/index.html | 6 ++++
content/concepts/state-persistence/index.html | 6 ++++
content/concepts/state-typing/index.html | 6 ++++
content/concepts/state/index.html | 6 ++++
content/concepts/streaming-actions/index.html | 6 ++++
content/concepts/sync-vs-async/index.html | 6 ++++
content/concepts/tracking/index.html | 6 ++++
content/concepts/transitions/index.html | 6 ++++
content/contributing/architecture/index.html | 6 ++++
content/contributing/contributing/index.html | 6 ++++
content/contributing/index.html | 6 ++++
content/contributing/iterating/index.html | 6 ++++
content/contributing/setup/index.html | 6 ++++
content/examples/agents/agent-patterns/index.html | 6 ++++
.../examples/agents/divide-and-conquer/index.html | 6 ++++
content/examples/agents/index.html | 6 ++++
content/examples/chatbots/basic-chatbot/index.html | 6 ++++
.../examples/chatbots/gpt-like-chatbot/index.html | 6 ++++
content/examples/chatbots/index.html | 6 ++++
.../chatbots/rag-chatbot-hamilton/index.html | 6 ++++
content/examples/data-science/index.html | 6 ++++
.../examples/data-science/ml_training/index.html | 6 ++++
.../examples/data-science/simulation/index.html | 6 ++++
content/examples/deployment/index.html | 6 ++++
.../examples/deployment/infrastructure/index.html | 6 ++++
content/examples/deployment/monitoring/index.html | 6 ++++
content/examples/deployment/web-server/index.html | 6 ++++
.../examples/guardrails/creating_tests/index.html | 6 ++++
content/examples/guardrails/index.html | 6 ++++
content/examples/index.html | 6 ++++
.../simple/choose-your-own-adventure/index.html | 6 ++++
content/examples/simple/counter/index.html | 6 ++++
content/examples/simple/cowsay/index.html | 6 ++++
content/examples/simple/index.html | 6 ++++
content/genindex/index.html | 6 ++++
content/getting_started/index.html | 6 ++++
content/getting_started/install/index.html | 6 ++++
content/getting_started/simple-example/index.html | 6 ++++
content/getting_started/up-next/index.html | 6 ++++
content/getting_started/why-burr/index.html | 6 ++++
content/index.html | 4 +--
content/index.txt | 2 +-
content/main/index.html | 6 ++++
content/py-modindex/index.html | 6 ++++
content/reference/actions/index.html | 6 ++++
content/reference/application/index.html | 6 ++++
content/reference/conditions/index.html | 6 ++++
content/reference/index.html | 6 ++++
content/reference/integrations/hamilton/index.html | 6 ++++
content/reference/integrations/haystack/index.html | 6 ++++
content/reference/integrations/index.html | 6 ++++
.../reference/integrations/langchain/index.html | 6 ++++
.../integrations/opentelemetry/index.html | 6 ++++
content/reference/integrations/pydantic/index.html | 6 ++++
content/reference/integrations/ray/index.html | 6 ++++
.../reference/integrations/streamlit/index.html | 6 ++++
.../reference/integrations/traceloop/index.html | 6 ++++
content/reference/lifecycle/index.html | 6 ++++
content/reference/parallelism/index.html | 6 ++++
content/reference/persister/index.html | 6 ++++
content/reference/serde/index.html | 6 ++++
content/reference/state/index.html | 6 ++++
content/reference/tracking/index.html | 6 ++++
content/reference/typing/index.html | 6 ++++
content/reference/visibility/index.html | 6 ++++
content/search/index.html | 6 ++++
81 files changed, 490 insertions(+), 4 deletions(-)
diff --git a/content/.htaccess b/content/.htaccess
new file mode 100644
index 00000000..b00ac48e
--- /dev/null
+++ b/content/.htaccess
@@ -0,0 +1,36 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# Redirect old Sphinx root paths to /docs/ after landing page migration.
+# The Sphinx docs moved from / to /docs/ when the Next.js landing page
+# was introduced at the site root.
+
+RewriteEngine On
+
+# Sphinx doc sections that moved to /docs/
+RewriteRule ^concepts/(.*)$ /docs/concepts/$1 [R=301,L]
+RewriteRule ^getting_started/(.*)$ /docs/getting_started/$1 [R=301,L]
+RewriteRule ^reference/(.*)$ /docs/reference/$1 [R=301,L]
+RewriteRule ^examples/(.*)$ /docs/examples/$1 [R=301,L]
+RewriteRule ^contributing/(.*)$ /docs/contributing/$1 [R=301,L]
+RewriteRule ^asf/(.*)$ /docs/asf/$1 [R=301,L]
+
+# Sphinx static assets and internals
+RewriteRule ^_static/(.*)$ /docs/_static/$1 [R=301,L]
+RewriteRule ^_sources/(.*)$ /docs/_sources/$1 [R=301,L]
+RewriteRule ^genindex/?$ /docs/genindex/ [R=301,L]
+RewriteRule ^search/?$ /docs/search/ [R=301,L]
diff --git a/content/404.html b/content/404.html
index d1b6d7ed..78c2adee 100644
--- a/content/404.html
+++ b/content/404.html
@@ -1 +1 @@
-<!DOCTYPE html><!--XOzROfaZ7ieMu9tmR2Ll_--><html lang="en" class="font-sans
__variable_188709"><head><meta charSet="utf-8"/><meta name="viewport"
content="width=device-width, initial-scale=1"/><link rel="preload"
href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin=""
type="font/woff2"/><link rel="stylesheet"
href="/_next/static/css/4ab741c5bfda45f1.css" data-precedence="next"/><link
rel="preload" as="script" fetchPriority="low"
href="/_next/static/chunks/webpack-7 [...]
\ No newline at end of file
+<!DOCTYPE html><!--UWiaiExy_BwGp9ak081hp--><html lang="en" class="font-sans
__variable_188709"><head><meta charSet="utf-8"/><meta name="viewport"
content="width=device-width, initial-scale=1"/><link rel="preload"
href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin=""
type="font/woff2"/><link rel="stylesheet"
href="/_next/static/css/4ab741c5bfda45f1.css" data-precedence="next"/><link
rel="preload" as="script" fetchPriority="low"
href="/_next/static/chunks/webpack-7 [...]
\ No newline at end of file
diff --git a/content/_next/static/XOzROfaZ7ieMu9tmR2Ll-/_buildManifest.js
b/content/_next/static/UWiaiExy_BwGp9ak081hp/_buildManifest.js
similarity index 100%
rename from content/_next/static/XOzROfaZ7ieMu9tmR2Ll-/_buildManifest.js
rename to content/_next/static/UWiaiExy_BwGp9ak081hp/_buildManifest.js
diff --git a/content/_next/static/XOzROfaZ7ieMu9tmR2Ll-/_ssgManifest.js
b/content/_next/static/UWiaiExy_BwGp9ak081hp/_ssgManifest.js
similarity index 100%
rename from content/_next/static/XOzROfaZ7ieMu9tmR2Ll-/_ssgManifest.js
rename to content/_next/static/UWiaiExy_BwGp9ak081hp/_ssgManifest.js
diff --git a/content/asf/index.html b/content/asf/index.html
new file mode 100644
index 00000000..3c3000a8
--- /dev/null
+++ b/content/asf/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0; url=https://burr.apache.org/docs/asf/">
+<link rel="canonical" href="https://burr.apache.org/docs/asf/">
+<script>window.location.replace("https://burr.apache.org/docs/asf/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/asf/">https://burr.apache.org/docs/asf/</a>...</body></html>
diff --git a/content/concepts/actions/index.html
b/content/concepts/actions/index.html
new file mode 100644
index 00000000..ad507a41
--- /dev/null
+++ b/content/concepts/actions/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/actions/">
+<link rel="canonical" href="https://burr.apache.org/docs/concepts/actions/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/actions/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/actions/">https://burr.apache.org/docs/concepts/actions/</a>...</body></html>
diff --git a/content/concepts/additional-visibility/index.html
b/content/concepts/additional-visibility/index.html
new file mode 100644
index 00000000..1a09d306
--- /dev/null
+++ b/content/concepts/additional-visibility/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/additional-visibility/">
+<link rel="canonical"
href="https://burr.apache.org/docs/concepts/additional-visibility/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/additional-visibility/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/additional-visibility/">https://burr.apache.org/docs/concepts/additional-visibility/</a>...</body></html>
diff --git a/content/concepts/hooks/index.html
b/content/concepts/hooks/index.html
new file mode 100644
index 00000000..586bed15
--- /dev/null
+++ b/content/concepts/hooks/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/hooks/">
+<link rel="canonical" href="https://burr.apache.org/docs/concepts/hooks/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/hooks/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/hooks/">https://burr.apache.org/docs/concepts/hooks/</a>...</body></html>
diff --git a/content/concepts/index.html b/content/concepts/index.html
new file mode 100644
index 00000000..4b6cb3bb
--- /dev/null
+++ b/content/concepts/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/">
+<link rel="canonical" href="https://burr.apache.org/docs/concepts/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/">https://burr.apache.org/docs/concepts/</a>...</body></html>
diff --git a/content/concepts/overview/index.html
b/content/concepts/overview/index.html
new file mode 100644
index 00000000..d97e772d
--- /dev/null
+++ b/content/concepts/overview/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/overview/">
+<link rel="canonical" href="https://burr.apache.org/docs/concepts/overview/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/overview/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/overview/">https://burr.apache.org/docs/concepts/overview/</a>...</body></html>
diff --git a/content/concepts/parallelism/index.html
b/content/concepts/parallelism/index.html
new file mode 100644
index 00000000..96b14a2b
--- /dev/null
+++ b/content/concepts/parallelism/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/parallelism/">
+<link rel="canonical"
href="https://burr.apache.org/docs/concepts/parallelism/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/parallelism/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/parallelism/">https://burr.apache.org/docs/concepts/parallelism/</a>...</body></html>
diff --git a/content/concepts/planned-capabilities/index.html
b/content/concepts/planned-capabilities/index.html
new file mode 100644
index 00000000..df08486f
--- /dev/null
+++ b/content/concepts/planned-capabilities/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/planned-capabilities/">
+<link rel="canonical"
href="https://burr.apache.org/docs/concepts/planned-capabilities/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/planned-capabilities/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/planned-capabilities/">https://burr.apache.org/docs/concepts/planned-capabilities/</a>...</body></html>
diff --git a/content/concepts/recursion/index.html
b/content/concepts/recursion/index.html
new file mode 100644
index 00000000..fffd0943
--- /dev/null
+++ b/content/concepts/recursion/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/recursion/">
+<link rel="canonical" href="https://burr.apache.org/docs/concepts/recursion/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/recursion/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/recursion/">https://burr.apache.org/docs/concepts/recursion/</a>...</body></html>
diff --git a/content/concepts/sdlc/index.html b/content/concepts/sdlc/index.html
new file mode 100644
index 00000000..645b18eb
--- /dev/null
+++ b/content/concepts/sdlc/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/sdlc/">
+<link rel="canonical" href="https://burr.apache.org/docs/concepts/sdlc/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/sdlc/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/sdlc/">https://burr.apache.org/docs/concepts/sdlc/</a>...</body></html>
diff --git a/content/concepts/serde/index.html
b/content/concepts/serde/index.html
new file mode 100644
index 00000000..d5f62938
--- /dev/null
+++ b/content/concepts/serde/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/serde/">
+<link rel="canonical" href="https://burr.apache.org/docs/concepts/serde/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/serde/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/serde/">https://burr.apache.org/docs/concepts/serde/</a>...</body></html>
diff --git a/content/concepts/state-machine/index.html
b/content/concepts/state-machine/index.html
new file mode 100644
index 00000000..97e02af8
--- /dev/null
+++ b/content/concepts/state-machine/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/state-machine/">
+<link rel="canonical"
href="https://burr.apache.org/docs/concepts/state-machine/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/state-machine/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/state-machine/">https://burr.apache.org/docs/concepts/state-machine/</a>...</body></html>
diff --git a/content/concepts/state-persistence/index.html
b/content/concepts/state-persistence/index.html
new file mode 100644
index 00000000..e9157837
--- /dev/null
+++ b/content/concepts/state-persistence/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/state-persistence/">
+<link rel="canonical"
href="https://burr.apache.org/docs/concepts/state-persistence/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/state-persistence/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/state-persistence/">https://burr.apache.org/docs/concepts/state-persistence/</a>...</body></html>
diff --git a/content/concepts/state-typing/index.html
b/content/concepts/state-typing/index.html
new file mode 100644
index 00000000..d74660f8
--- /dev/null
+++ b/content/concepts/state-typing/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/state-typing/">
+<link rel="canonical"
href="https://burr.apache.org/docs/concepts/state-typing/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/state-typing/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/state-typing/">https://burr.apache.org/docs/concepts/state-typing/</a>...</body></html>
diff --git a/content/concepts/state/index.html
b/content/concepts/state/index.html
new file mode 100644
index 00000000..00c01f91
--- /dev/null
+++ b/content/concepts/state/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/state/">
+<link rel="canonical" href="https://burr.apache.org/docs/concepts/state/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/state/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/state/">https://burr.apache.org/docs/concepts/state/</a>...</body></html>
diff --git a/content/concepts/streaming-actions/index.html
b/content/concepts/streaming-actions/index.html
new file mode 100644
index 00000000..a10756b6
--- /dev/null
+++ b/content/concepts/streaming-actions/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/streaming-actions/">
+<link rel="canonical"
href="https://burr.apache.org/docs/concepts/streaming-actions/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/streaming-actions/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/streaming-actions/">https://burr.apache.org/docs/concepts/streaming-actions/</a>...</body></html>
diff --git a/content/concepts/sync-vs-async/index.html
b/content/concepts/sync-vs-async/index.html
new file mode 100644
index 00000000..dbb9251e
--- /dev/null
+++ b/content/concepts/sync-vs-async/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/sync-vs-async/">
+<link rel="canonical"
href="https://burr.apache.org/docs/concepts/sync-vs-async/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/sync-vs-async/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/sync-vs-async/">https://burr.apache.org/docs/concepts/sync-vs-async/</a>...</body></html>
diff --git a/content/concepts/tracking/index.html
b/content/concepts/tracking/index.html
new file mode 100644
index 00000000..c78d1931
--- /dev/null
+++ b/content/concepts/tracking/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/tracking/">
+<link rel="canonical" href="https://burr.apache.org/docs/concepts/tracking/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/tracking/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/tracking/">https://burr.apache.org/docs/concepts/tracking/</a>...</body></html>
diff --git a/content/concepts/transitions/index.html
b/content/concepts/transitions/index.html
new file mode 100644
index 00000000..ce5a96e0
--- /dev/null
+++ b/content/concepts/transitions/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/concepts/transitions/">
+<link rel="canonical"
href="https://burr.apache.org/docs/concepts/transitions/">
+<script>window.location.replace("https://burr.apache.org/docs/concepts/transitions/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/concepts/transitions/">https://burr.apache.org/docs/concepts/transitions/</a>...</body></html>
diff --git a/content/contributing/architecture/index.html
b/content/contributing/architecture/index.html
new file mode 100644
index 00000000..638fcaf8
--- /dev/null
+++ b/content/contributing/architecture/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/contributing/architecture/">
+<link rel="canonical"
href="https://burr.apache.org/docs/contributing/architecture/">
+<script>window.location.replace("https://burr.apache.org/docs/contributing/architecture/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/contributing/architecture/">https://burr.apache.org/docs/contributing/architecture/</a>...</body></html>
diff --git a/content/contributing/contributing/index.html
b/content/contributing/contributing/index.html
new file mode 100644
index 00000000..6c840120
--- /dev/null
+++ b/content/contributing/contributing/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/contributing/contributing/">
+<link rel="canonical"
href="https://burr.apache.org/docs/contributing/contributing/">
+<script>window.location.replace("https://burr.apache.org/docs/contributing/contributing/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/contributing/contributing/">https://burr.apache.org/docs/contributing/contributing/</a>...</body></html>
diff --git a/content/contributing/index.html b/content/contributing/index.html
new file mode 100644
index 00000000..b75a8082
--- /dev/null
+++ b/content/contributing/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/contributing/">
+<link rel="canonical" href="https://burr.apache.org/docs/contributing/">
+<script>window.location.replace("https://burr.apache.org/docs/contributing/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/contributing/">https://burr.apache.org/docs/contributing/</a>...</body></html>
diff --git a/content/contributing/iterating/index.html
b/content/contributing/iterating/index.html
new file mode 100644
index 00000000..196d3740
--- /dev/null
+++ b/content/contributing/iterating/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/contributing/iterating/">
+<link rel="canonical"
href="https://burr.apache.org/docs/contributing/iterating/">
+<script>window.location.replace("https://burr.apache.org/docs/contributing/iterating/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/contributing/iterating/">https://burr.apache.org/docs/contributing/iterating/</a>...</body></html>
diff --git a/content/contributing/setup/index.html
b/content/contributing/setup/index.html
new file mode 100644
index 00000000..21c2352a
--- /dev/null
+++ b/content/contributing/setup/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/contributing/setup/">
+<link rel="canonical" href="https://burr.apache.org/docs/contributing/setup/">
+<script>window.location.replace("https://burr.apache.org/docs/contributing/setup/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/contributing/setup/">https://burr.apache.org/docs/contributing/setup/</a>...</body></html>
diff --git a/content/examples/agents/agent-patterns/index.html
b/content/examples/agents/agent-patterns/index.html
new file mode 100644
index 00000000..b9b21f47
--- /dev/null
+++ b/content/examples/agents/agent-patterns/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/agents/agent-patterns/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/agents/agent-patterns/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/agents/agent-patterns/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/agents/agent-patterns/">https://burr.apache.org/docs/examples/agents/agent-patterns/</a>...</body></html>
diff --git a/content/examples/agents/divide-and-conquer/index.html
b/content/examples/agents/divide-and-conquer/index.html
new file mode 100644
index 00000000..ddba412b
--- /dev/null
+++ b/content/examples/agents/divide-and-conquer/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/agents/divide-and-conquer/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/agents/divide-and-conquer/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/agents/divide-and-conquer/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/agents/divide-and-conquer/">https://burr.apache.org/docs/examples/agents/divide-and-conquer/</a>...</body></html>
diff --git a/content/examples/agents/index.html
b/content/examples/agents/index.html
new file mode 100644
index 00000000..db4c3fde
--- /dev/null
+++ b/content/examples/agents/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/agents/">
+<link rel="canonical" href="https://burr.apache.org/docs/examples/agents/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/agents/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/agents/">https://burr.apache.org/docs/examples/agents/</a>...</body></html>
diff --git a/content/examples/chatbots/basic-chatbot/index.html
b/content/examples/chatbots/basic-chatbot/index.html
new file mode 100644
index 00000000..d90774bd
--- /dev/null
+++ b/content/examples/chatbots/basic-chatbot/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/chatbots/basic-chatbot/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/chatbots/basic-chatbot/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/chatbots/basic-chatbot/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/chatbots/basic-chatbot/">https://burr.apache.org/docs/examples/chatbots/basic-chatbot/</a>...</body></html>
diff --git a/content/examples/chatbots/gpt-like-chatbot/index.html
b/content/examples/chatbots/gpt-like-chatbot/index.html
new file mode 100644
index 00000000..14bff0a0
--- /dev/null
+++ b/content/examples/chatbots/gpt-like-chatbot/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/chatbots/gpt-like-chatbot/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/chatbots/gpt-like-chatbot/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/chatbots/gpt-like-chatbot/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/chatbots/gpt-like-chatbot/">https://burr.apache.org/docs/examples/chatbots/gpt-like-chatbot/</a>...</body></html>
diff --git a/content/examples/chatbots/index.html
b/content/examples/chatbots/index.html
new file mode 100644
index 00000000..c445a0a3
--- /dev/null
+++ b/content/examples/chatbots/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/chatbots/">
+<link rel="canonical" href="https://burr.apache.org/docs/examples/chatbots/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/chatbots/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/chatbots/">https://burr.apache.org/docs/examples/chatbots/</a>...</body></html>
diff --git a/content/examples/chatbots/rag-chatbot-hamilton/index.html
b/content/examples/chatbots/rag-chatbot-hamilton/index.html
new file mode 100644
index 00000000..062e34e6
--- /dev/null
+++ b/content/examples/chatbots/rag-chatbot-hamilton/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/chatbots/rag-chatbot-hamilton/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/chatbots/rag-chatbot-hamilton/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/chatbots/rag-chatbot-hamilton/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/chatbots/rag-chatbot-hamilton/">https://burr.apache.org/docs/examples/chatbots/rag-chatbot-hamilton/</a>...</body></html>
diff --git a/content/examples/data-science/index.html
b/content/examples/data-science/index.html
new file mode 100644
index 00000000..fc0175da
--- /dev/null
+++ b/content/examples/data-science/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/data-science/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/data-science/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/data-science/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/data-science/">https://burr.apache.org/docs/examples/data-science/</a>...</body></html>
diff --git a/content/examples/data-science/ml_training/index.html
b/content/examples/data-science/ml_training/index.html
new file mode 100644
index 00000000..eec8b237
--- /dev/null
+++ b/content/examples/data-science/ml_training/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/data-science/ml_training/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/data-science/ml_training/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/data-science/ml_training/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/data-science/ml_training/">https://burr.apache.org/docs/examples/data-science/ml_training/</a>...</body></html>
diff --git a/content/examples/data-science/simulation/index.html
b/content/examples/data-science/simulation/index.html
new file mode 100644
index 00000000..42a36112
--- /dev/null
+++ b/content/examples/data-science/simulation/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/data-science/simulation/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/data-science/simulation/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/data-science/simulation/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/data-science/simulation/">https://burr.apache.org/docs/examples/data-science/simulation/</a>...</body></html>
diff --git a/content/examples/deployment/index.html
b/content/examples/deployment/index.html
new file mode 100644
index 00000000..d826fa3e
--- /dev/null
+++ b/content/examples/deployment/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/deployment/">
+<link rel="canonical" href="https://burr.apache.org/docs/examples/deployment/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/deployment/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/deployment/">https://burr.apache.org/docs/examples/deployment/</a>...</body></html>
diff --git a/content/examples/deployment/infrastructure/index.html
b/content/examples/deployment/infrastructure/index.html
new file mode 100644
index 00000000..854ce39c
--- /dev/null
+++ b/content/examples/deployment/infrastructure/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/deployment/infrastructure/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/deployment/infrastructure/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/deployment/infrastructure/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/deployment/infrastructure/">https://burr.apache.org/docs/examples/deployment/infrastructure/</a>...</body></html>
diff --git a/content/examples/deployment/monitoring/index.html
b/content/examples/deployment/monitoring/index.html
new file mode 100644
index 00000000..6eccb0d9
--- /dev/null
+++ b/content/examples/deployment/monitoring/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/deployment/monitoring/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/deployment/monitoring/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/deployment/monitoring/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/deployment/monitoring/">https://burr.apache.org/docs/examples/deployment/monitoring/</a>...</body></html>
diff --git a/content/examples/deployment/web-server/index.html
b/content/examples/deployment/web-server/index.html
new file mode 100644
index 00000000..1deaf989
--- /dev/null
+++ b/content/examples/deployment/web-server/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/deployment/web-server/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/deployment/web-server/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/deployment/web-server/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/deployment/web-server/">https://burr.apache.org/docs/examples/deployment/web-server/</a>...</body></html>
diff --git a/content/examples/guardrails/creating_tests/index.html
b/content/examples/guardrails/creating_tests/index.html
new file mode 100644
index 00000000..3e0e1c0d
--- /dev/null
+++ b/content/examples/guardrails/creating_tests/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/guardrails/creating_tests/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/guardrails/creating_tests/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/guardrails/creating_tests/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/guardrails/creating_tests/">https://burr.apache.org/docs/examples/guardrails/creating_tests/</a>...</body></html>
diff --git a/content/examples/guardrails/index.html
b/content/examples/guardrails/index.html
new file mode 100644
index 00000000..419b2845
--- /dev/null
+++ b/content/examples/guardrails/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/guardrails/">
+<link rel="canonical" href="https://burr.apache.org/docs/examples/guardrails/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/guardrails/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/guardrails/">https://burr.apache.org/docs/examples/guardrails/</a>...</body></html>
diff --git a/content/examples/index.html b/content/examples/index.html
new file mode 100644
index 00000000..9a80479e
--- /dev/null
+++ b/content/examples/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/">
+<link rel="canonical" href="https://burr.apache.org/docs/examples/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/">https://burr.apache.org/docs/examples/</a>...</body></html>
diff --git a/content/examples/simple/choose-your-own-adventure/index.html
b/content/examples/simple/choose-your-own-adventure/index.html
new file mode 100644
index 00000000..573b8a93
--- /dev/null
+++ b/content/examples/simple/choose-your-own-adventure/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/simple/choose-your-own-adventure/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/simple/choose-your-own-adventure/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/simple/choose-your-own-adventure/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/simple/choose-your-own-adventure/">https://burr.apache.org/docs/examples/simple/choose-your-own-adventure/</a>...</body></html>
diff --git a/content/examples/simple/counter/index.html
b/content/examples/simple/counter/index.html
new file mode 100644
index 00000000..e5633ea7
--- /dev/null
+++ b/content/examples/simple/counter/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/simple/counter/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/simple/counter/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/simple/counter/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/simple/counter/">https://burr.apache.org/docs/examples/simple/counter/</a>...</body></html>
diff --git a/content/examples/simple/cowsay/index.html
b/content/examples/simple/cowsay/index.html
new file mode 100644
index 00000000..8e72dfb4
--- /dev/null
+++ b/content/examples/simple/cowsay/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/simple/cowsay/">
+<link rel="canonical"
href="https://burr.apache.org/docs/examples/simple/cowsay/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/simple/cowsay/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/simple/cowsay/">https://burr.apache.org/docs/examples/simple/cowsay/</a>...</body></html>
diff --git a/content/examples/simple/index.html
b/content/examples/simple/index.html
new file mode 100644
index 00000000..dc6e8c3a
--- /dev/null
+++ b/content/examples/simple/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/examples/simple/">
+<link rel="canonical" href="https://burr.apache.org/docs/examples/simple/">
+<script>window.location.replace("https://burr.apache.org/docs/examples/simple/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/examples/simple/">https://burr.apache.org/docs/examples/simple/</a>...</body></html>
diff --git a/content/genindex/index.html b/content/genindex/index.html
new file mode 100644
index 00000000..1e24856b
--- /dev/null
+++ b/content/genindex/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/genindex/">
+<link rel="canonical" href="https://burr.apache.org/docs/genindex/">
+<script>window.location.replace("https://burr.apache.org/docs/genindex/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/genindex/">https://burr.apache.org/docs/genindex/</a>...</body></html>
diff --git a/content/getting_started/index.html
b/content/getting_started/index.html
new file mode 100644
index 00000000..193ec75a
--- /dev/null
+++ b/content/getting_started/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/getting_started/">
+<link rel="canonical" href="https://burr.apache.org/docs/getting_started/">
+<script>window.location.replace("https://burr.apache.org/docs/getting_started/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/getting_started/">https://burr.apache.org/docs/getting_started/</a>...</body></html>
diff --git a/content/getting_started/install/index.html
b/content/getting_started/install/index.html
new file mode 100644
index 00000000..7aa2e05a
--- /dev/null
+++ b/content/getting_started/install/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/getting_started/install/">
+<link rel="canonical"
href="https://burr.apache.org/docs/getting_started/install/">
+<script>window.location.replace("https://burr.apache.org/docs/getting_started/install/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/getting_started/install/">https://burr.apache.org/docs/getting_started/install/</a>...</body></html>
diff --git a/content/getting_started/simple-example/index.html
b/content/getting_started/simple-example/index.html
new file mode 100644
index 00000000..0c7be927
--- /dev/null
+++ b/content/getting_started/simple-example/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/getting_started/simple-example/">
+<link rel="canonical"
href="https://burr.apache.org/docs/getting_started/simple-example/">
+<script>window.location.replace("https://burr.apache.org/docs/getting_started/simple-example/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/getting_started/simple-example/">https://burr.apache.org/docs/getting_started/simple-example/</a>...</body></html>
diff --git a/content/getting_started/up-next/index.html
b/content/getting_started/up-next/index.html
new file mode 100644
index 00000000..b81dee38
--- /dev/null
+++ b/content/getting_started/up-next/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/getting_started/up-next/">
+<link rel="canonical"
href="https://burr.apache.org/docs/getting_started/up-next/">
+<script>window.location.replace("https://burr.apache.org/docs/getting_started/up-next/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/getting_started/up-next/">https://burr.apache.org/docs/getting_started/up-next/</a>...</body></html>
diff --git a/content/getting_started/why-burr/index.html
b/content/getting_started/why-burr/index.html
new file mode 100644
index 00000000..96b1dfcd
--- /dev/null
+++ b/content/getting_started/why-burr/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/getting_started/why-burr/">
+<link rel="canonical"
href="https://burr.apache.org/docs/getting_started/why-burr/">
+<script>window.location.replace("https://burr.apache.org/docs/getting_started/why-burr/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/getting_started/why-burr/">https://burr.apache.org/docs/getting_started/why-burr/</a>...</body></html>
diff --git a/content/index.html b/content/index.html
index 0bf7dd7c..085deb6a 100644
--- a/content/index.html
+++ b/content/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html><!--XOzROfaZ7ieMu9tmR2Ll_--><html lang="en" class="font-sans
__variable_188709"><head><meta charSet="utf-8"/><meta name="viewport"
content="width=device-width, initial-scale=1"/><link rel="preload"
href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin=""
type="font/woff2"/><link rel="preload" as="image" href="/burr_logo.svg"/><link
rel="stylesheet" href="/_next/static/css/4ab741c5bfda45f1.css"
data-precedence="next"/><link rel="preload" as="script" fe [...]
+<!DOCTYPE html><!--UWiaiExy_BwGp9ak081hp--><html lang="en" class="font-sans
__variable_188709"><head><meta charSet="utf-8"/><meta name="viewport"
content="width=device-width, initial-scale=1"/><link rel="preload"
href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin=""
type="font/woff2"/><link rel="preload" as="image" href="/burr_logo.svg"/><link
rel="stylesheet" href="/_next/static/css/4ab741c5bfda45f1.css"
data-precedence="next"/><link rel="preload" as="script" fe [...]
@action(reads=["messages"], writes=["messages"])
def chat(state: State, llm_client) -> State:
@@ -40,4 +40,4 @@ app.run(halt_after=["chat"],
inputs={"llm_client": client})<
) border-box"><div class="bg-background absolute inset-px z-20
rounded-[inherit] overflow-hidden"></div><div class="pointer-events-none
absolute inset-px z-30 rounded-[inherit] overflow-hidden opacity-0
transition-opacity duration-300 group-hover:opacity-100"
style="opacity:0.12;background:radial-gradient(200px circle at -200px -200px,
#262626,
transparent 100%
- )"></div><div class="relative z-40 h-full"><div class="flex
flex-col items-center gap-3 p-6 min-h-[160px]"><div class="inline-flex
items-center justify-center rounded-xl p-3 bg-[var(--card-border)]/30"><svg
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="lucide lucide-twitter h-6 w-6"><path d="M22
4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2. [...]
\ No newline at end of file
+ )"></div><div class="relative z-40 h-full"><div class="flex
flex-col items-center gap-3 p-6 min-h-[160px]"><div class="inline-flex
items-center justify-center rounded-xl p-3 bg-[var(--card-border)]/30"><svg
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="lucide lucide-twitter h-6 w-6"><path d="M22
4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2. [...]
\ No newline at end of file
diff --git a/content/index.txt b/content/index.txt
index f0286e43..b8ddfa26 100644
--- a/content/index.txt
+++ b/content/index.txt
@@ -12,7 +12,7 @@
b:I[23859,["8734","static/chunks/8734-f0efcfa0d7c14bb2.js","8974","static/chunks
11:I[57150,[],""]
:HL["/_next/static/media/4cf2300e9c8272f7-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/css/4ab741c5bfda45f1.css","style"]
-0:{"P":null,"b":"XOzROfaZ7ieMu9tmR2Ll-","p":"","c":["",""],"i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/4ab741c5bfda45f1.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"className":"font-sans
__variable_188709","children":[["$","head",null,{"children":[["$","link",null,{"
[...]
+0:{"P":null,"b":"UWiaiExy_BwGp9ak081hp","p":"","c":["",""],"i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/4ab741c5bfda45f1.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"className":"font-sans
__variable_188709","children":[["$","head",null,{"children":[["$","link",null,{"
[...]
12:I[24431,[],"OutletBoundary"]
14:I[15278,[],"AsyncMetadataOutlet"]
16:I[24431,[],"ViewportBoundary"]
diff --git a/content/main/index.html b/content/main/index.html
new file mode 100644
index 00000000..d44d36a9
--- /dev/null
+++ b/content/main/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0; url=https://burr.apache.org/docs/main/">
+<link rel="canonical" href="https://burr.apache.org/docs/main/">
+<script>window.location.replace("https://burr.apache.org/docs/main/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/main/">https://burr.apache.org/docs/main/</a>...</body></html>
diff --git a/content/py-modindex/index.html b/content/py-modindex/index.html
new file mode 100644
index 00000000..add4f5f9
--- /dev/null
+++ b/content/py-modindex/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/py-modindex/">
+<link rel="canonical" href="https://burr.apache.org/docs/py-modindex/">
+<script>window.location.replace("https://burr.apache.org/docs/py-modindex/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/py-modindex/">https://burr.apache.org/docs/py-modindex/</a>...</body></html>
diff --git a/content/reference/actions/index.html
b/content/reference/actions/index.html
new file mode 100644
index 00000000..33f82d2f
--- /dev/null
+++ b/content/reference/actions/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/actions/">
+<link rel="canonical" href="https://burr.apache.org/docs/reference/actions/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/actions/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/actions/">https://burr.apache.org/docs/reference/actions/</a>...</body></html>
diff --git a/content/reference/application/index.html
b/content/reference/application/index.html
new file mode 100644
index 00000000..269d5cc3
--- /dev/null
+++ b/content/reference/application/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/application/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/application/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/application/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/application/">https://burr.apache.org/docs/reference/application/</a>...</body></html>
diff --git a/content/reference/conditions/index.html
b/content/reference/conditions/index.html
new file mode 100644
index 00000000..7a12354a
--- /dev/null
+++ b/content/reference/conditions/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/conditions/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/conditions/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/conditions/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/conditions/">https://burr.apache.org/docs/reference/conditions/</a>...</body></html>
diff --git a/content/reference/index.html b/content/reference/index.html
new file mode 100644
index 00000000..8f255059
--- /dev/null
+++ b/content/reference/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/">
+<link rel="canonical" href="https://burr.apache.org/docs/reference/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/">https://burr.apache.org/docs/reference/</a>...</body></html>
diff --git a/content/reference/integrations/hamilton/index.html
b/content/reference/integrations/hamilton/index.html
new file mode 100644
index 00000000..c2dc1ff9
--- /dev/null
+++ b/content/reference/integrations/hamilton/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/integrations/hamilton/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/integrations/hamilton/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/integrations/hamilton/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/integrations/hamilton/">https://burr.apache.org/docs/reference/integrations/hamilton/</a>...</body></html>
diff --git a/content/reference/integrations/haystack/index.html
b/content/reference/integrations/haystack/index.html
new file mode 100644
index 00000000..143d8bbb
--- /dev/null
+++ b/content/reference/integrations/haystack/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/integrations/haystack/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/integrations/haystack/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/integrations/haystack/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/integrations/haystack/">https://burr.apache.org/docs/reference/integrations/haystack/</a>...</body></html>
diff --git a/content/reference/integrations/index.html
b/content/reference/integrations/index.html
new file mode 100644
index 00000000..01602401
--- /dev/null
+++ b/content/reference/integrations/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/integrations/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/integrations/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/integrations/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/integrations/">https://burr.apache.org/docs/reference/integrations/</a>...</body></html>
diff --git a/content/reference/integrations/langchain/index.html
b/content/reference/integrations/langchain/index.html
new file mode 100644
index 00000000..44951887
--- /dev/null
+++ b/content/reference/integrations/langchain/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/integrations/langchain/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/integrations/langchain/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/integrations/langchain/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/integrations/langchain/">https://burr.apache.org/docs/reference/integrations/langchain/</a>...</body></html>
diff --git a/content/reference/integrations/opentelemetry/index.html
b/content/reference/integrations/opentelemetry/index.html
new file mode 100644
index 00000000..73abd0af
--- /dev/null
+++ b/content/reference/integrations/opentelemetry/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/integrations/opentelemetry/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/integrations/opentelemetry/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/integrations/opentelemetry/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/integrations/opentelemetry/">https://burr.apache.org/docs/reference/integrations/opentelemetry/</a>...</body></html>
diff --git a/content/reference/integrations/pydantic/index.html
b/content/reference/integrations/pydantic/index.html
new file mode 100644
index 00000000..f545bb31
--- /dev/null
+++ b/content/reference/integrations/pydantic/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/integrations/pydantic/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/integrations/pydantic/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/integrations/pydantic/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/integrations/pydantic/">https://burr.apache.org/docs/reference/integrations/pydantic/</a>...</body></html>
diff --git a/content/reference/integrations/ray/index.html
b/content/reference/integrations/ray/index.html
new file mode 100644
index 00000000..c03197e7
--- /dev/null
+++ b/content/reference/integrations/ray/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/integrations/ray/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/integrations/ray/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/integrations/ray/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/integrations/ray/">https://burr.apache.org/docs/reference/integrations/ray/</a>...</body></html>
diff --git a/content/reference/integrations/streamlit/index.html
b/content/reference/integrations/streamlit/index.html
new file mode 100644
index 00000000..16c4fc71
--- /dev/null
+++ b/content/reference/integrations/streamlit/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/integrations/streamlit/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/integrations/streamlit/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/integrations/streamlit/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/integrations/streamlit/">https://burr.apache.org/docs/reference/integrations/streamlit/</a>...</body></html>
diff --git a/content/reference/integrations/traceloop/index.html
b/content/reference/integrations/traceloop/index.html
new file mode 100644
index 00000000..dc5cfa39
--- /dev/null
+++ b/content/reference/integrations/traceloop/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/integrations/traceloop/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/integrations/traceloop/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/integrations/traceloop/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/integrations/traceloop/">https://burr.apache.org/docs/reference/integrations/traceloop/</a>...</body></html>
diff --git a/content/reference/lifecycle/index.html
b/content/reference/lifecycle/index.html
new file mode 100644
index 00000000..3364a565
--- /dev/null
+++ b/content/reference/lifecycle/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/lifecycle/">
+<link rel="canonical" href="https://burr.apache.org/docs/reference/lifecycle/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/lifecycle/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/lifecycle/">https://burr.apache.org/docs/reference/lifecycle/</a>...</body></html>
diff --git a/content/reference/parallelism/index.html
b/content/reference/parallelism/index.html
new file mode 100644
index 00000000..08737295
--- /dev/null
+++ b/content/reference/parallelism/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/parallelism/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/parallelism/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/parallelism/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/parallelism/">https://burr.apache.org/docs/reference/parallelism/</a>...</body></html>
diff --git a/content/reference/persister/index.html
b/content/reference/persister/index.html
new file mode 100644
index 00000000..f3be062d
--- /dev/null
+++ b/content/reference/persister/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/persister/">
+<link rel="canonical" href="https://burr.apache.org/docs/reference/persister/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/persister/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/persister/">https://burr.apache.org/docs/reference/persister/</a>...</body></html>
diff --git a/content/reference/serde/index.html
b/content/reference/serde/index.html
new file mode 100644
index 00000000..81448acc
--- /dev/null
+++ b/content/reference/serde/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/serde/">
+<link rel="canonical" href="https://burr.apache.org/docs/reference/serde/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/serde/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/serde/">https://burr.apache.org/docs/reference/serde/</a>...</body></html>
diff --git a/content/reference/state/index.html
b/content/reference/state/index.html
new file mode 100644
index 00000000..419d9733
--- /dev/null
+++ b/content/reference/state/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/state/">
+<link rel="canonical" href="https://burr.apache.org/docs/reference/state/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/state/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/state/">https://burr.apache.org/docs/reference/state/</a>...</body></html>
diff --git a/content/reference/tracking/index.html
b/content/reference/tracking/index.html
new file mode 100644
index 00000000..37f51da2
--- /dev/null
+++ b/content/reference/tracking/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/tracking/">
+<link rel="canonical" href="https://burr.apache.org/docs/reference/tracking/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/tracking/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/tracking/">https://burr.apache.org/docs/reference/tracking/</a>...</body></html>
diff --git a/content/reference/typing/index.html
b/content/reference/typing/index.html
new file mode 100644
index 00000000..96552759
--- /dev/null
+++ b/content/reference/typing/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/typing/">
+<link rel="canonical" href="https://burr.apache.org/docs/reference/typing/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/typing/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/typing/">https://burr.apache.org/docs/reference/typing/</a>...</body></html>
diff --git a/content/reference/visibility/index.html
b/content/reference/visibility/index.html
new file mode 100644
index 00000000..ca1c6e53
--- /dev/null
+++ b/content/reference/visibility/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/reference/visibility/">
+<link rel="canonical"
href="https://burr.apache.org/docs/reference/visibility/">
+<script>window.location.replace("https://burr.apache.org/docs/reference/visibility/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/reference/visibility/">https://burr.apache.org/docs/reference/visibility/</a>...</body></html>
diff --git a/content/search/index.html b/content/search/index.html
new file mode 100644
index 00000000..6ceea8b7
--- /dev/null
+++ b/content/search/index.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html><html><head>
+<meta charset="utf-8">
+<meta http-equiv="refresh" content="0;
url=https://burr.apache.org/docs/search/">
+<link rel="canonical" href="https://burr.apache.org/docs/search/">
+<script>window.location.replace("https://burr.apache.org/docs/search/")</script>
+</head><body>Redirecting to <a
href="https://burr.apache.org/docs/search/">https://burr.apache.org/docs/search/</a>...</body></html>