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 c1b02444 Deploy documentation from
b9ee1292622a11253a5ad9a93872d0d1c0308800
c1b02444 is described below
commit c1b02444fcd73a457435143b780b44c72069ab4a
Author: GitHub Actions <[email protected]>
AuthorDate: Wed Dec 31 21:02:18 2025 +0000
Deploy documentation from b9ee1292622a11253a5ad9a93872d0d1c0308800
---
content/_sources/concepts/serde.rst.txt | 9 +++++++++
content/_static/styles/furo.css | 2 +-
content/_static/styles/furo.css.map | 2 +-
content/asf/index.html | 4 ++--
content/concepts/actions/index.html | 4 ++--
content/concepts/additional-visibility/index.html | 4 ++--
content/concepts/hooks/index.html | 4 ++--
content/concepts/index.html | 5 +++--
content/concepts/overview/index.html | 4 ++--
content/concepts/parallelism/index.html | 4 ++--
content/concepts/planned-capabilities/index.html | 4 ++--
content/concepts/recursion/index.html | 4 ++--
content/concepts/sdlc/index.html | 4 ++--
content/concepts/serde/index.html | 11 +++++++++--
content/concepts/state-machine/index.html | 4 ++--
content/concepts/state-persistence/index.html | 4 ++--
content/concepts/state-typing/index.html | 4 ++--
content/concepts/state/index.html | 4 ++--
content/concepts/streaming-actions/index.html | 4 ++--
content/concepts/sync-vs-async/index.html | 4 ++--
content/concepts/tracking/index.html | 4 ++--
content/concepts/transitions/index.html | 4 ++--
content/contributing/architecture/index.html | 4 ++--
content/contributing/contributing/index.html | 4 ++--
content/contributing/index.html | 4 ++--
content/contributing/iterating/index.html | 4 ++--
content/contributing/setup/index.html | 4 ++--
content/examples/agents/agent-patterns/index.html | 4 ++--
content/examples/agents/divide-and-conquer/index.html | 4 ++--
content/examples/agents/index.html | 4 ++--
content/examples/chatbots/basic-chatbot/index.html | 4 ++--
content/examples/chatbots/gpt-like-chatbot/index.html | 4 ++--
content/examples/chatbots/index.html | 4 ++--
content/examples/chatbots/rag-chatbot-hamilton/index.html | 4 ++--
content/examples/data-science/index.html | 4 ++--
content/examples/data-science/ml_training/index.html | 4 ++--
content/examples/data-science/simulation/index.html | 4 ++--
content/examples/deployment/index.html | 4 ++--
content/examples/deployment/infrastructure/index.html | 4 ++--
content/examples/deployment/monitoring/index.html | 4 ++--
content/examples/deployment/web-server/index.html | 4 ++--
content/examples/guardrails/creating_tests/index.html | 4 ++--
content/examples/guardrails/index.html | 4 ++--
content/examples/index.html | 4 ++--
content/examples/simple/choose-your-own-adventure/index.html | 4 ++--
content/examples/simple/counter/index.html | 4 ++--
content/examples/simple/cowsay/index.html | 4 ++--
content/examples/simple/index.html | 4 ++--
content/genindex/index.html | 4 ++--
content/getting_started/index.html | 4 ++--
content/getting_started/install/index.html | 4 ++--
content/getting_started/simple-example/index.html | 4 ++--
content/getting_started/up-next/index.html | 4 ++--
content/getting_started/why-burr/index.html | 4 ++--
content/index.html | 4 ++--
content/main/index.html | 4 ++--
content/py-modindex/index.html | 4 ++--
content/reference/actions/index.html | 4 ++--
content/reference/application/index.html | 4 ++--
content/reference/conditions/index.html | 4 ++--
content/reference/index.html | 4 ++--
content/reference/integrations/hamilton/index.html | 4 ++--
content/reference/integrations/haystack/index.html | 4 ++--
content/reference/integrations/index.html | 4 ++--
content/reference/integrations/langchain/index.html | 4 ++--
content/reference/integrations/opentelemetry/index.html | 4 ++--
content/reference/integrations/pydantic/index.html | 4 ++--
content/reference/integrations/ray/index.html | 4 ++--
content/reference/integrations/streamlit/index.html | 4 ++--
content/reference/integrations/traceloop/index.html | 4 ++--
content/reference/lifecycle/index.html | 4 ++--
content/reference/parallelism/index.html | 4 ++--
content/reference/persister/index.html | 4 ++--
content/reference/serde/index.html | 4 ++--
content/reference/state/index.html | 4 ++--
content/reference/telemetry/index.html | 4 ++--
content/reference/tracking/index.html | 4 ++--
content/reference/typing/index.html | 4 ++--
content/reference/visibility/index.html | 4 ++--
content/search/index.html | 4 ++--
content/searchindex.js | 2 +-
81 files changed, 174 insertions(+), 157 deletions(-)
diff --git a/content/_sources/concepts/serde.rst.txt
b/content/_sources/concepts/serde.rst.txt
index c2ad47bd..20ad7a92 100644
--- a/content/_sources/concepts/serde.rst.txt
+++ b/content/_sources/concepts/serde.rst.txt
@@ -19,6 +19,7 @@
.. _serde:
+
================================
Serialization / Deserialization
================================
@@ -130,3 +131,11 @@ Requirements for the serializer/deserializer functions:
1. The serializer function needs to return a dictionary.
2. Both function signatures needs to have a ``**kwargs`` parameter to
allow for custom arguments to be passed in. We advise namespacing the kwargs
provided to avoid conflicts with other serializers/deserializers.
+
+
+Limitations of State Serialization
+----------------------------------
+
+Currently, it is only possible to override the serialization and
deserialization behavior of individual fields within a state.
+Overriding the serialization of the entire state object as a whole is not
supported at this time.
+If you need custom handling, you must apply it at the field level.
diff --git a/content/_static/styles/furo.css b/content/_static/styles/furo.css
index 592d5bff..a5b614d2 100644
--- a/content/_static/styles/furo.css
+++ b/content/_static/styles/furo.css
@@ -1,2 +1,2 @@
-/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em
0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline
dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;fo
[...]
+/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em
0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline
dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;fo
[...]
/*# sourceMappingURL=furo.css.map*/
\ No newline at end of file
diff --git a/content/_static/styles/furo.css.map
b/content/_static/styles/furo.css.map
index 280b3fef..db1dec16 100644
--- a/content/_static/styles/furo.css.map
+++ b/content/_static/styles/furo.css.map
@@ -1 +1 @@
-{"version":3,"file":"styles/furo.css","mappings":"AAAA,2EAA2E,CAU3E,KACE,gBAAiB,CACjB,6BACF,CASA,KACE,QACF,CAMA,KACE,aACF,CAOA,GACE,aAAc,CACd,cACF,CAUA,GACE,sBAAuB,CACvB,QAAS,CACT,gBACF,CAOA,IACE,+BAAiC,CACjC,aACF,CASA,EACE,4BACF,CAOA,YACE,kBAAmB,CACnB,yBAA0B,CAC1B,gCACF,CAMA,SAEE,kBACF,CAOA,cAGE,+BAAiC,CACjC,aACF,CAeA,QAEE,aAAc,CACd,aAAc,CACd,iBAAkB,CAClB,uBACF,CAEA,IACE,aACF,CAEA,IACE,SACF,CASA,IACE,iBACF,CAUA,sCAKE,mBAAoB,CACpB,cAAe,CACf,gBAAiB,CACjB,QACF,CAOA,aAEE,gBACF,CAOA,cAEE,mBA
[...]
\ No newline at end of file
+{"version":3,"file":"styles/furo.css","mappings":"AAAA,2EAA2E,CAU3E,KACE,gBAAiB,CACjB,6BACF,CASA,KACE,QACF,CAMA,KACE,aACF,CAOA,GACE,aAAc,CACd,cACF,CAUA,GACE,sBAAuB,CACvB,QAAS,CACT,gBACF,CAOA,IACE,+BAAiC,CACjC,aACF,CASA,EACE,4BACF,CAOA,YACE,kBAAmB,CACnB,yBAA0B,CAC1B,gCACF,CAMA,SAEE,kBACF,CAOA,cAGE,+BAAiC,CACjC,aACF,CAeA,QAEE,aAAc,CACd,aAAc,CACd,iBAAkB,CAClB,uBACF,CAEA,IACE,aACF,CAEA,IACE,SACF,CASA,IACE,iBACF,CAUA,sCAKE,mBAAoB,CACpB,cAAe,CACf,gBAAiB,CACjB,QACF,CAOA,aAEE,gBACF,CAOA,cAEE,mBA
[...]
\ No newline at end of file
diff --git a/content/asf/index.html b/content/asf/index.html
index fc4fed39..9d231679 100644
--- a/content/asf/index.html
+++ b/content/asf/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../genindex/"><link rel="search"
title="Search" href="../search/"><link rel="prev" title="Contributing"
href="../contributing/contributing/">
<link rel="canonical" href="https://burr.apache.org/asf/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>ASF - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/actions/index.html
b/content/concepts/actions/index.html
index 647df039..8fe2b149 100644
--- a/content/concepts/actions/index.html
+++ b/content/concepts/actions/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="State"
href="../state/"><link rel="prev" title="SDLC with LLMs" href="../sdlc/">
<link rel="canonical" href="https://burr.apache.org/concepts/actions/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Actions - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/additional-visibility/index.html
b/content/concepts/additional-visibility/index.html
index b0d6631c..9868cc35 100644
--- a/content/concepts/additional-visibility/index.html
+++ b/content/concepts/additional-visibility/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Parallelism"
href="../parallelism/"><link rel="prev" title="Hooks" href="../hooks/">
<link rel="canonical"
href="https://burr.apache.org/concepts/additional-visibility/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Additional Visibility - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/hooks/index.html
b/content/concepts/hooks/index.html
index 93ad7339..9af1fe42 100644
--- a/content/concepts/hooks/index.html
+++ b/content/concepts/hooks/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Additional
Visibility" href="../additional-visibility/"><link rel="prev" title="Typing
State" href="../state-typing/">
<link rel="canonical" href="https://burr.apache.org/concepts/hooks/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Hooks - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/index.html b/content/concepts/index.html
index b2734a20..80daa2b3 100644
--- a/content/concepts/index.html
+++ b/content/concepts/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../genindex/"><link rel="search"
title="Search" href="../search/"><link rel="next" title="Cheat Sheet"
href="overview/"><link rel="prev" title="Simulations"
href="../examples/data-science/simulation/">
<link rel="canonical" href="https://burr.apache.org/concepts/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Concepts - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
@@ -416,6 +416,7 @@
<li class="toctree-l1"><a class="reference internal"
href="serde/">Serialization / Deserialization</a><ul>
<li class="toctree-l2"><a class="reference internal"
href="serde/#how-it-works">How it works</a></li>
<li class="toctree-l2"><a class="reference internal"
href="serde/#customizing-serialization-deserialization">Customizing
Serialization/Deserialization</a></li>
+<li class="toctree-l2"><a class="reference internal"
href="serde/#limitations-of-state-serialization">Limitations of State
Serialization</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal"
href="streaming-actions/">Streaming Actions</a><ul>
diff --git a/content/concepts/overview/index.html
b/content/concepts/overview/index.html
index c6329bb1..f8807c72 100644
--- a/content/concepts/overview/index.html
+++ b/content/concepts/overview/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="SDLC with LLMs"
href="../sdlc/"><link rel="prev" title="Concepts" href="../">
<link rel="canonical"
href="https://burr.apache.org/concepts/overview/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Cheat Sheet - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/parallelism/index.html
b/content/concepts/parallelism/index.html
index 9bc88796..967a2c16 100644
--- a/content/concepts/parallelism/index.html
+++ b/content/concepts/parallelism/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Recursive
Applications" href="../recursion/"><link rel="prev" title="Additional
Visibility" href="../additional-visibility/">
<link rel="canonical"
href="https://burr.apache.org/concepts/parallelism/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Parallelism - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/planned-capabilities/index.html
b/content/concepts/planned-capabilities/index.html
index 5e368c89..8d52a851 100644
--- a/content/concepts/planned-capabilities/index.html
+++ b/content/concepts/planned-capabilities/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="API reference"
href="../../reference/"><link rel="prev" title="Sync vs Async Applications"
href="../sync-vs-async/">
<link rel="canonical"
href="https://burr.apache.org/concepts/planned-capabilities/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Planned Capabilities - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/recursion/index.html
b/content/concepts/recursion/index.html
index c7c028d4..d947febb 100644
--- a/content/concepts/recursion/index.html
+++ b/content/concepts/recursion/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Sync vs Async
Applications" href="../sync-vs-async/"><link rel="prev" title="Parallelism"
href="../parallelism/">
<link rel="canonical"
href="https://burr.apache.org/concepts/recursion/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Recursive Applications - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/sdlc/index.html b/content/concepts/sdlc/index.html
index e7c37c41..e63adc18 100644
--- a/content/concepts/sdlc/index.html
+++ b/content/concepts/sdlc/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Actions"
href="../actions/"><link rel="prev" title="Cheat Sheet" href="../overview/">
<link rel="canonical" href="https://burr.apache.org/concepts/sdlc/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>SDLC with LLMs - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/serde/index.html
b/content/concepts/serde/index.html
index 4f0eca4f..8625b624 100644
--- a/content/concepts/serde/index.html
+++ b/content/concepts/serde/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Streaming Actions"
href="../streaming-actions/"><link rel="prev" title="State Persistence"
href="../state-persistence/">
<link rel="canonical" href="https://burr.apache.org/concepts/serde/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Serialization / Deserialization - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
@@ -465,6 +465,12 @@ type based serialization/deserialization mechanism.</p>
</div></blockquote>
</section>
</section>
+<section id="limitations-of-state-serialization">
+<h2>Limitations of State Serialization<a class="headerlink"
href="#limitations-of-state-serialization" title="Link to this
heading">¶</a></h2>
+<p>Currently, it is only possible to override the serialization and
deserialization behavior of individual fields within a state.
+Overriding the serialization of the entire state object as a whole is not
supported at this time.
+If you need custom handling, you must apply it at the field level.</p>
+</section>
</section>
</article>
@@ -542,6 +548,7 @@ type based serialization/deserialization mechanism.</p>
<li><a class="reference internal"
href="#field-level-serialization-deserialization">Field level
Serialization/Deserialization</a></li>
</ul>
</li>
+<li><a class="reference internal"
href="#limitations-of-state-serialization">Limitations of State
Serialization</a></li>
</ul>
</li>
</ul>
diff --git a/content/concepts/state-machine/index.html
b/content/concepts/state-machine/index.html
index d0b243cd..806160f1 100644
--- a/content/concepts/state-machine/index.html
+++ b/content/concepts/state-machine/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Transitions"
href="../transitions/"><link rel="prev" title="State" href="../state/">
<link rel="canonical"
href="https://burr.apache.org/concepts/state-machine/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Applications - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/state-persistence/index.html
b/content/concepts/state-persistence/index.html
index 1a4b34ed..8726053c 100644
--- a/content/concepts/state-persistence/index.html
+++ b/content/concepts/state-persistence/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Serialization /
Deserialization" href="../serde/"><link rel="prev" title="Tracking Burr"
href="../tracking/">
<link rel="canonical"
href="https://burr.apache.org/concepts/state-persistence/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>State Persistence - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/state-typing/index.html
b/content/concepts/state-typing/index.html
index 2e8ff65b..3681102b 100644
--- a/content/concepts/state-typing/index.html
+++ b/content/concepts/state-typing/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Hooks"
href="../hooks/"><link rel="prev" title="Streaming Actions"
href="../streaming-actions/">
<link rel="canonical"
href="https://burr.apache.org/concepts/state-typing/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Typing State - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/state/index.html
b/content/concepts/state/index.html
index 33691793..9c05d4e7 100644
--- a/content/concepts/state/index.html
+++ b/content/concepts/state/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Applications"
href="../state-machine/"><link rel="prev" title="Actions" href="../actions/">
<link rel="canonical" href="https://burr.apache.org/concepts/state/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>State - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/streaming-actions/index.html
b/content/concepts/streaming-actions/index.html
index cac620e5..8f8eb2b2 100644
--- a/content/concepts/streaming-actions/index.html
+++ b/content/concepts/streaming-actions/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Typing State"
href="../state-typing/"><link rel="prev" title="Serialization /
Deserialization" href="../serde/">
<link rel="canonical"
href="https://burr.apache.org/concepts/streaming-actions/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Streaming Actions - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/sync-vs-async/index.html
b/content/concepts/sync-vs-async/index.html
index b7b4a6c8..5b23a65e 100644
--- a/content/concepts/sync-vs-async/index.html
+++ b/content/concepts/sync-vs-async/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Planned
Capabilities" href="../planned-capabilities/"><link rel="prev" title="Recursive
Applications" href="../recursion/">
<link rel="canonical"
href="https://burr.apache.org/concepts/sync-vs-async/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Sync vs Async Applications - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/tracking/index.html
b/content/concepts/tracking/index.html
index 2046e7f9..c6dfff03 100644
--- a/content/concepts/tracking/index.html
+++ b/content/concepts/tracking/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="State Persistence"
href="../state-persistence/"><link rel="prev" title="Transitions"
href="../transitions/">
<link rel="canonical"
href="https://burr.apache.org/concepts/tracking/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Tracking Burr - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/concepts/transitions/index.html
b/content/concepts/transitions/index.html
index 004040aa..17aee92f 100644
--- a/content/concepts/transitions/index.html
+++ b/content/concepts/transitions/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Tracking Burr"
href="../tracking/"><link rel="prev" title="Applications"
href="../state-machine/">
<link rel="canonical"
href="https://burr.apache.org/concepts/transitions/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Transitions - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/contributing/architecture/index.html
b/content/contributing/architecture/index.html
index 04cabced..385d43bd 100644
--- a/content/contributing/architecture/index.html
+++ b/content/contributing/architecture/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Contributing"
href="../contributing/"><link rel="prev" title="Developing"
href="../iterating/">
<link rel="canonical"
href="https://burr.apache.org/contributing/architecture/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Architecture - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/contributing/contributing/index.html
b/content/contributing/contributing/index.html
index f2c141aa..edaabec3 100644
--- a/content/contributing/contributing/index.html
+++ b/content/contributing/contributing/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="ASF"
href="../../asf/"><link rel="prev" title="Architecture" href="../architecture/">
<link rel="canonical"
href="https://burr.apache.org/contributing/contributing/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Contributing - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/contributing/index.html b/content/contributing/index.html
index 62711e2e..e1f1ef63 100644
--- a/content/contributing/index.html
+++ b/content/contributing/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../genindex/"><link rel="search"
title="Search" href="../search/"><link rel="next" title="Setup"
href="setup/"><link rel="prev" title="Usage analytics + data privacy"
href="../reference/telemetry/">
<link rel="canonical" href="https://burr.apache.org/contributing/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Contributing - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
diff --git a/content/contributing/iterating/index.html
b/content/contributing/iterating/index.html
index d049110b..cd8cec3a 100644
--- a/content/contributing/iterating/index.html
+++ b/content/contributing/iterating/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Architecture"
href="../architecture/"><link rel="prev" title="Setup" href="../setup/">
<link rel="canonical"
href="https://burr.apache.org/contributing/iterating/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Developing - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/contributing/setup/index.html
b/content/contributing/setup/index.html
index 33ffdefd..67508ef3 100644
--- a/content/contributing/setup/index.html
+++ b/content/contributing/setup/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Developing"
href="../iterating/"><link rel="prev" title="Contributing" href="../">
<link rel="canonical"
href="https://burr.apache.org/contributing/setup/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Setup - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/agents/agent-patterns/index.html
b/content/examples/agents/agent-patterns/index.html
index 4238154e..5ae34c70 100644
--- a/content/examples/agents/agent-patterns/index.html
+++ b/content/examples/agents/agent-patterns/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next" title="✈
Deployment" href="../../deployment/"><link rel="prev" title="Divide and
Conquer" href="../divide-and-conquer/">
<link rel="canonical"
href="https://burr.apache.org/examples/agents/agent-patterns/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Agent patterns - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/agents/divide-and-conquer/index.html
b/content/examples/agents/divide-and-conquer/index.html
index af5bbcc0..8e1ff7bc 100644
--- a/content/examples/agents/divide-and-conquer/index.html
+++ b/content/examples/agents/divide-and-conquer/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Agent patterns" href="../agent-patterns/"><link rel="prev" title="🤖
Agents" href="../">
<link rel="canonical"
href="https://burr.apache.org/examples/agents/divide-and-conquer/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Divide and Conquer - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/agents/index.html
b/content/examples/agents/index.html
index 598ea207..172be81f 100644
--- a/content/examples/agents/index.html
+++ b/content/examples/agents/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Divide and Conquer"
href="divide-and-conquer/"><link rel="prev" title="Conversational RAG with Burr
and Hamilton" href="../chatbots/rag-chatbot-hamilton/">
<link rel="canonical" href="https://burr.apache.org/examples/agents/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>🤖 Agents - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/chatbots/basic-chatbot/index.html
b/content/examples/chatbots/basic-chatbot/index.html
index 3025fa6f..7fdc8aec 100644
--- a/content/examples/chatbots/basic-chatbot/index.html
+++ b/content/examples/chatbots/basic-chatbot/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="GPT-like multimodal chatbot" href="../gpt-like-chatbot/"><link
rel="prev" title="📞 Chatbots" href="../">
<link rel="canonical"
href="https://burr.apache.org/examples/chatbots/basic-chatbot/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Basic - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/chatbots/gpt-like-chatbot/index.html
b/content/examples/chatbots/gpt-like-chatbot/index.html
index dd60abca..66258fa6 100644
--- a/content/examples/chatbots/gpt-like-chatbot/index.html
+++ b/content/examples/chatbots/gpt-like-chatbot/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Conversational RAG with Burr and Hamilton"
href="../rag-chatbot-hamilton/"><link rel="prev" title="Basic"
href="../basic-chatbot/">
<link rel="canonical"
href="https://burr.apache.org/examples/chatbots/gpt-like-chatbot/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>GPT-like multimodal chatbot - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/chatbots/index.html
b/content/examples/chatbots/index.html
index 82648da1..09b37021 100644
--- a/content/examples/chatbots/index.html
+++ b/content/examples/chatbots/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Basic"
href="basic-chatbot/"><link rel="prev" title="Choose your own adventure"
href="../simple/choose-your-own-adventure/">
<link rel="canonical"
href="https://burr.apache.org/examples/chatbots/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>📞 Chatbots - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/chatbots/rag-chatbot-hamilton/index.html
b/content/examples/chatbots/rag-chatbot-hamilton/index.html
index c2777306..3df60f81 100644
--- a/content/examples/chatbots/rag-chatbot-hamilton/index.html
+++ b/content/examples/chatbots/rag-chatbot-hamilton/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next" title="🤖
Agents" href="../../agents/"><link rel="prev" title="GPT-like multimodal
chatbot" href="../gpt-like-chatbot/">
<link rel="canonical"
href="https://burr.apache.org/examples/chatbots/rag-chatbot-hamilton/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Conversational RAG with Burr and Hamilton - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/data-science/index.html
b/content/examples/data-science/index.html
index 6b97d07f..590039aa 100644
--- a/content/examples/data-science/index.html
+++ b/content/examples/data-science/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Hyperparameter
tuning" href="ml_training/"><link rel="prev" title="Creating Test Cases"
href="../guardrails/creating_tests/">
<link rel="canonical"
href="https://burr.apache.org/examples/data-science/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>🧪 Data science - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/data-science/ml_training/index.html
b/content/examples/data-science/ml_training/index.html
index 7064a601..7b032fa9 100644
--- a/content/examples/data-science/ml_training/index.html
+++ b/content/examples/data-science/ml_training/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Simulations" href="../simulation/"><link rel="prev" title="🧪 Data
science" href="../">
<link rel="canonical"
href="https://burr.apache.org/examples/data-science/ml_training/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Hyperparameter tuning - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/data-science/simulation/index.html
b/content/examples/data-science/simulation/index.html
index 0cd840a7..f4eac788 100644
--- a/content/examples/data-science/simulation/index.html
+++ b/content/examples/data-science/simulation/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Concepts" href="../../../concepts/"><link rel="prev"
title="Hyperparameter tuning" href="../ml_training/">
<link rel="canonical"
href="https://burr.apache.org/examples/data-science/simulation/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Simulations - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/deployment/index.html
b/content/examples/deployment/index.html
index 8357d6fd..44d9d09f 100644
--- a/content/examples/deployment/index.html
+++ b/content/examples/deployment/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Burr in a web
server" href="web-server/"><link rel="prev" title="Agent patterns"
href="../agents/agent-patterns/">
<link rel="canonical"
href="https://burr.apache.org/examples/deployment/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>✈ Deployment - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/deployment/infrastructure/index.html
b/content/examples/deployment/infrastructure/index.html
index 1e13dba3..7ab86f85 100644
--- a/content/examples/deployment/infrastructure/index.html
+++ b/content/examples/deployment/infrastructure/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Monitoring in Production" href="../monitoring/"><link rel="prev"
title="Burr in a web server" href="../web-server/">
<link rel="canonical"
href="https://burr.apache.org/examples/deployment/infrastructure/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Provisioning Infrastructure/Deploying - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/deployment/monitoring/index.html
b/content/examples/deployment/monitoring/index.html
index 23c5e356..fc37f480 100644
--- a/content/examples/deployment/monitoring/index.html
+++ b/content/examples/deployment/monitoring/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next" title="🚧
Guardrails / Tests" href="../../guardrails/"><link rel="prev"
title="Provisioning Infrastructure/Deploying" href="../infrastructure/">
<link rel="canonical"
href="https://burr.apache.org/examples/deployment/monitoring/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Monitoring in Production - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/deployment/web-server/index.html
b/content/examples/deployment/web-server/index.html
index 28fb25db..007fb098 100644
--- a/content/examples/deployment/web-server/index.html
+++ b/content/examples/deployment/web-server/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Provisioning Infrastructure/Deploying" href="../infrastructure/"><link
rel="prev" title="✈ Deployment" href="../">
<link rel="canonical"
href="https://burr.apache.org/examples/deployment/web-server/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Burr in a web server - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/guardrails/creating_tests/index.html
b/content/examples/guardrails/creating_tests/index.html
index 9a19d2b1..f021eabc 100644
--- a/content/examples/guardrails/creating_tests/index.html
+++ b/content/examples/guardrails/creating_tests/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next" title="🧪
Data science" href="../../data-science/"><link rel="prev" title="🚧 Guardrails /
Tests" href="../">
<link rel="canonical"
href="https://burr.apache.org/examples/guardrails/creating_tests/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Creating Test Cases - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/guardrails/index.html
b/content/examples/guardrails/index.html
index bd1d66ab..4c45588e 100644
--- a/content/examples/guardrails/index.html
+++ b/content/examples/guardrails/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Creating Test
Cases" href="creating_tests/"><link rel="prev" title="Monitoring in Production"
href="../deployment/monitoring/">
<link rel="canonical"
href="https://burr.apache.org/examples/guardrails/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>🚧 Guardrails / Tests - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/index.html b/content/examples/index.html
index 2985c592..b572d1be 100644
--- a/content/examples/index.html
+++ b/content/examples/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../genindex/"><link rel="search"
title="Search" href="../search/"><link rel="next" title="🧸 Toy examples"
href="simple/"><link rel="prev" title="Next Steps"
href="../getting_started/up-next/">
<link rel="canonical" href="https://burr.apache.org/examples/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Cookbook - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/simple/choose-your-own-adventure/index.html
b/content/examples/simple/choose-your-own-adventure/index.html
index 2950393e..eaacd335 100644
--- a/content/examples/simple/choose-your-own-adventure/index.html
+++ b/content/examples/simple/choose-your-own-adventure/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next" title="📞
Chatbots" href="../../chatbots/"><link rel="prev" title="Cowsay"
href="../cowsay/">
<link rel="canonical"
href="https://burr.apache.org/examples/simple/choose-your-own-adventure/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Choose your own adventure - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/simple/counter/index.html
b/content/examples/simple/counter/index.html
index a97f44ec..fcc43977 100644
--- a/content/examples/simple/counter/index.html
+++ b/content/examples/simple/counter/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Cowsay" href="../cowsay/"><link rel="prev" title="🧸 Toy examples"
href="../">
<link rel="canonical"
href="https://burr.apache.org/examples/simple/counter/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Counter - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/simple/cowsay/index.html
b/content/examples/simple/cowsay/index.html
index 0fab5688..c5693141 100644
--- a/content/examples/simple/cowsay/index.html
+++ b/content/examples/simple/cowsay/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Choose your own adventure" href="../choose-your-own-adventure/"><link
rel="prev" title="Counter" href="../counter/">
<link rel="canonical"
href="https://burr.apache.org/examples/simple/cowsay/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Cowsay - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/examples/simple/index.html
b/content/examples/simple/index.html
index f6f25d4e..22ad6c51 100644
--- a/content/examples/simple/index.html
+++ b/content/examples/simple/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Counter"
href="counter/"><link rel="prev" title="Cookbook" href="../">
<link rel="canonical" href="https://burr.apache.org/examples/simple/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>🧸 Toy examples - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/genindex/index.html b/content/genindex/index.html
index 16ddc1c4..15e9e7ca 100644
--- a/content/genindex/index.html
+++ b/content/genindex/index.html
@@ -14,9 +14,9 @@
<link rel="index" title="Index" href="#"><link rel="search" title="Search"
href="../search/">
<link rel="canonical" href="https://burr.apache.org/genindex/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 --><title>Index - Apache Burr</title>
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 --><title>Index - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
diff --git a/content/getting_started/index.html
b/content/getting_started/index.html
index 4a464373..2a2620b0 100644
--- a/content/getting_started/index.html
+++ b/content/getting_started/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../genindex/"><link rel="search"
title="Search" href="../search/"><link rel="next" title="Why Burr?"
href="why-burr/"><link rel="prev" title="Apache Burr" href="../">
<link rel="canonical" href="https://burr.apache.org/getting_started/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Get started - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
diff --git a/content/getting_started/install/index.html
b/content/getting_started/install/index.html
index 11429e26..c6b0b987 100644
--- a/content/getting_started/install/index.html
+++ b/content/getting_started/install/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Quickstart"
href="../simple-example/"><link rel="prev" title="Why Burr?"
href="../why-burr/">
<link rel="canonical"
href="https://burr.apache.org/getting_started/install/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Installation - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/getting_started/simple-example/index.html
b/content/getting_started/simple-example/index.html
index e93292b8..355d2f0b 100644
--- a/content/getting_started/simple-example/index.html
+++ b/content/getting_started/simple-example/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Next Steps"
href="../up-next/"><link rel="prev" title="Installation" href="../install/">
<link rel="canonical"
href="https://burr.apache.org/getting_started/simple-example/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Quickstart - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/getting_started/up-next/index.html
b/content/getting_started/up-next/index.html
index 16e7706b..2a4ba582 100644
--- a/content/getting_started/up-next/index.html
+++ b/content/getting_started/up-next/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Cookbook"
href="../../examples/"><link rel="prev" title="Quickstart"
href="../simple-example/">
<link rel="canonical"
href="https://burr.apache.org/getting_started/up-next/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Next Steps - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/getting_started/why-burr/index.html
b/content/getting_started/why-burr/index.html
index 1ef63201..d1f61ed6 100644
--- a/content/getting_started/why-burr/index.html
+++ b/content/getting_started/why-burr/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Installation"
href="../install/"><link rel="prev" title="Get started" href="../">
<link rel="canonical"
href="https://burr.apache.org/getting_started/why-burr/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Why Burr? - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/index.html b/content/index.html
index 0929031b..ca96fa96 100644
--- a/content/index.html
+++ b/content/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="genindex/"><link rel="search"
title="Search" href="search/"><link rel="next" title="Get started"
href="getting_started/">
<link rel="canonical" href="https://burr.apache.org/">
- <link rel="shortcut icon" href="_static/favicon.ico"><!-- Generated with
Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="_static/favicon.ico"><!-- Generated with
Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="_static/custom.css?v=2c829df3" />
diff --git a/content/main/index.html b/content/main/index.html
index 10d2ab4f..5211c62a 100644
--- a/content/main/index.html
+++ b/content/main/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../genindex/"><link rel="search"
title="Search" href="../search/">
<link rel="canonical" href="https://burr.apache.org/main/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Apache Burr - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
diff --git a/content/py-modindex/index.html b/content/py-modindex/index.html
index 8f5b0daa..f6568631 100644
--- a/content/py-modindex/index.html
+++ b/content/py-modindex/index.html
@@ -14,9 +14,9 @@
<link rel="index" title="Index" href="../genindex/"><link rel="search"
title="Search" href="../search/">
<link rel="canonical" href="https://burr.apache.org/py-modindex/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 --><title>Python Module Index - Apache
Burr</title>
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 --><title>Python Module Index - Apache
Burr</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/actions/index.html
b/content/reference/actions/index.html
index 949d812c..3493b0fe 100644
--- a/content/reference/actions/index.html
+++ b/content/reference/actions/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="State"
href="../state/"><link rel="prev" title="Applications" href="../application/">
<link rel="canonical"
href="https://burr.apache.org/reference/actions/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Actions - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/application/index.html
b/content/reference/application/index.html
index f180cbea..090087c4 100644
--- a/content/reference/application/index.html
+++ b/content/reference/application/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Actions"
href="../actions/"><link rel="prev" title="API reference" href="../">
<link rel="canonical"
href="https://burr.apache.org/reference/application/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Applications - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/conditions/index.html
b/content/reference/conditions/index.html
index 380eebcf..6c4d308c 100644
--- a/content/reference/conditions/index.html
+++ b/content/reference/conditions/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Tracking"
href="../tracking/"><link rel="prev" title="State Persistence"
href="../persister/">
<link rel="canonical"
href="https://burr.apache.org/reference/conditions/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Conditions/Transitions - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/index.html b/content/reference/index.html
index 96f7cfba..f8fc4143 100644
--- a/content/reference/index.html
+++ b/content/reference/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../genindex/"><link rel="search"
title="Search" href="../search/"><link rel="next" title="Applications"
href="application/"><link rel="prev" title="Planned Capabilities"
href="../concepts/planned-capabilities/">
<link rel="canonical" href="https://burr.apache.org/reference/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>API reference - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/integrations/hamilton/index.html
b/content/reference/integrations/hamilton/index.html
index 7b47c40e..d5328a4b 100644
--- a/content/reference/integrations/hamilton/index.html
+++ b/content/reference/integrations/hamilton/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Streamlit" href="../streamlit/"><link rel="prev" title="Integrations"
href="../">
<link rel="canonical"
href="https://burr.apache.org/reference/integrations/hamilton/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Hamilton - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/integrations/haystack/index.html
b/content/reference/integrations/haystack/index.html
index 79b22b72..0e7d8e2a 100644
--- a/content/reference/integrations/haystack/index.html
+++ b/content/reference/integrations/haystack/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Ray" href="../ray/"><link rel="prev" title="Pydantic"
href="../pydantic/">
<link rel="canonical"
href="https://burr.apache.org/reference/integrations/haystack/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Haystack - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/integrations/index.html
b/content/reference/integrations/index.html
index cb6f8b56..8866eb25 100644
--- a/content/reference/integrations/index.html
+++ b/content/reference/integrations/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Hamilton"
href="hamilton/"><link rel="prev" title="Typing" href="../typing/">
<link rel="canonical"
href="https://burr.apache.org/reference/integrations/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Integrations - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/integrations/langchain/index.html
b/content/reference/integrations/langchain/index.html
index db0119f1..6d1916ef 100644
--- a/content/reference/integrations/langchain/index.html
+++ b/content/reference/integrations/langchain/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Pydantic" href="../pydantic/"><link rel="prev" title="Traceloop"
href="../traceloop/">
<link rel="canonical"
href="https://burr.apache.org/reference/integrations/langchain/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Langchain - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/integrations/opentelemetry/index.html
b/content/reference/integrations/opentelemetry/index.html
index 86fbb38d..a48dede1 100644
--- a/content/reference/integrations/opentelemetry/index.html
+++ b/content/reference/integrations/opentelemetry/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Traceloop" href="../traceloop/"><link rel="prev" title="Streamlit"
href="../streamlit/">
<link rel="canonical"
href="https://burr.apache.org/reference/integrations/opentelemetry/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>OpenTelemetry - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/integrations/pydantic/index.html
b/content/reference/integrations/pydantic/index.html
index db7a4e42..7923aa63 100644
--- a/content/reference/integrations/pydantic/index.html
+++ b/content/reference/integrations/pydantic/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Haystack" href="../haystack/"><link rel="prev" title="Langchain"
href="../langchain/">
<link rel="canonical"
href="https://burr.apache.org/reference/integrations/pydantic/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Pydantic - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/integrations/ray/index.html
b/content/reference/integrations/ray/index.html
index fc6359de..f0954a7a 100644
--- a/content/reference/integrations/ray/index.html
+++ b/content/reference/integrations/ray/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Usage analytics + data privacy" href="../../telemetry/"><link rel="prev"
title="Haystack" href="../haystack/">
<link rel="canonical"
href="https://burr.apache.org/reference/integrations/ray/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Ray - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/integrations/streamlit/index.html
b/content/reference/integrations/streamlit/index.html
index 4ce6805d..30fafed8 100644
--- a/content/reference/integrations/streamlit/index.html
+++ b/content/reference/integrations/streamlit/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="OpenTelemetry" href="../opentelemetry/"><link rel="prev"
title="Hamilton" href="../hamilton/">
<link rel="canonical"
href="https://burr.apache.org/reference/integrations/streamlit/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Streamlit - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/integrations/traceloop/index.html
b/content/reference/integrations/traceloop/index.html
index d7f3c5f6..4c80da01 100644
--- a/content/reference/integrations/traceloop/index.html
+++ b/content/reference/integrations/traceloop/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../../genindex/"><link
rel="search" title="Search" href="../../../search/"><link rel="next"
title="Langchain" href="../langchain/"><link rel="prev" title="OpenTelemetry"
href="../opentelemetry/">
<link rel="canonical"
href="https://burr.apache.org/reference/integrations/traceloop/">
- <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../../_static/favicon.ico"><!--
Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Traceloop - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/lifecycle/index.html
b/content/reference/lifecycle/index.html
index 261bf28f..a64088b5 100644
--- a/content/reference/lifecycle/index.html
+++ b/content/reference/lifecycle/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Parallelism"
href="../parallelism/"><link rel="prev" title="Tracing Inside Actions"
href="../visibility/">
<link rel="canonical"
href="https://burr.apache.org/reference/lifecycle/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Lifecycle API - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/parallelism/index.html
b/content/reference/parallelism/index.html
index 414402ca..d9e02bae 100644
--- a/content/reference/parallelism/index.html
+++ b/content/reference/parallelism/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Typing"
href="../typing/"><link rel="prev" title="Lifecycle API" href="../lifecycle/">
<link rel="canonical"
href="https://burr.apache.org/reference/parallelism/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Parallelism - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/persister/index.html
b/content/reference/persister/index.html
index cb5775c4..214c54f4 100644
--- a/content/reference/persister/index.html
+++ b/content/reference/persister/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next"
title="Conditions/Transitions" href="../conditions/"><link rel="prev"
title="Serialization & Deserialization" href="../serde/">
<link rel="canonical"
href="https://burr.apache.org/reference/persister/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>State Persistence - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/serde/index.html
b/content/reference/serde/index.html
index 02288674..d75285e8 100644
--- a/content/reference/serde/index.html
+++ b/content/reference/serde/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="State Persistence"
href="../persister/"><link rel="prev" title="State" href="../state/">
<link rel="canonical" href="https://burr.apache.org/reference/serde/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Serialization & Deserialization - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/state/index.html
b/content/reference/state/index.html
index 87882752..708d50bf 100644
--- a/content/reference/state/index.html
+++ b/content/reference/state/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Serialization &
Deserialization" href="../serde/"><link rel="prev" title="Actions"
href="../actions/">
<link rel="canonical" href="https://burr.apache.org/reference/state/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>State - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/telemetry/index.html
b/content/reference/telemetry/index.html
index 356ead41..57917f47 100644
--- a/content/reference/telemetry/index.html
+++ b/content/reference/telemetry/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Contributing"
href="../../contributing/"><link rel="prev" title="Ray"
href="../integrations/ray/">
<link rel="canonical"
href="https://burr.apache.org/reference/telemetry/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Usage analytics + data privacy - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/tracking/index.html
b/content/reference/tracking/index.html
index 8f980c3d..c9f47670 100644
--- a/content/reference/tracking/index.html
+++ b/content/reference/tracking/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Tracing Inside
Actions" href="../visibility/"><link rel="prev" title="Conditions/Transitions"
href="../conditions/">
<link rel="canonical"
href="https://burr.apache.org/reference/tracking/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Tracking - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/typing/index.html
b/content/reference/typing/index.html
index 1fc65347..eaa7ab7b 100644
--- a/content/reference/typing/index.html
+++ b/content/reference/typing/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Integrations"
href="../integrations/"><link rel="prev" title="Parallelism"
href="../parallelism/">
<link rel="canonical" href="https://burr.apache.org/reference/typing/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Typing - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/reference/visibility/index.html
b/content/reference/visibility/index.html
index 0101e39c..efc573e7 100644
--- a/content/reference/visibility/index.html
+++ b/content/reference/visibility/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../../genindex/"><link rel="search"
title="Search" href="../../search/"><link rel="next" title="Lifecycle API"
href="../lifecycle/"><link rel="prev" title="Tracking" href="../tracking/">
<link rel="canonical"
href="https://burr.apache.org/reference/visibility/">
- <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<title>Tracing Inside Actions - Apache Burr</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../../_static/custom.css?v=2c829df3" />
diff --git a/content/search/index.html b/content/search/index.html
index 56c29170..ec6ce9ce 100644
--- a/content/search/index.html
+++ b/content/search/index.html
@@ -15,10 +15,10 @@
<link rel="index" title="Index" href="../genindex/"><link rel="search"
title="Search" href="#">
<link rel="canonical" href="https://burr.apache.org/search/">
- <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.09.25 -->
+ <link rel="shortcut icon" href="../_static/favicon.ico"><!-- Generated
with Sphinx 8.2.3 and Furo 2025.12.19 -->
<meta name="robots" content="noindex" />
<title>Search - Apache Burr</title><link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=d111a655" />
- <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=580074bf" />
+ <link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=7bdb33bb" />
<link rel="stylesheet" type="text/css"
href="../_static/mystnb.8ecb98da25f57f5357bf6f572d296f466b2cfe2517ffebfabe82451661e28f02.css"
/>
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
<link rel="stylesheet" type="text/css"
href="../_static/custom.css?v=2c829df3" />
diff --git a/content/searchindex.js b/content/searchindex.js
index e77484ae..23dafcfb 100644
--- a/content/searchindex.js
+++ b/content/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles":{"1. Agent application is modeled as State +
Actions \u2013>
Graph":[[28,"agent-application-is-modeled-as-state-actions-graph"]],"1. Make
your methods async":[[6,"make-your-methods-async"]],"2. Build application
\u2013> built in checkpointing &
tracking":[[28,"build-application-built-in-checkpointing-tracking"]],"2.
Implement the is_async method":[[6,"implement-the-is-async-method"]],"3. Comes
with a UI":[[28,"comes-with-a-ui"]],"3. Use async persisters with [...]
\ No newline at end of file
+Search.setIndex({"alltitles":{"1. Agent application is modeled as State +
Actions \u2013>
Graph":[[28,"agent-application-is-modeled-as-state-actions-graph"]],"1. Make
your methods async":[[6,"make-your-methods-async"]],"2. Build application
\u2013> built in checkpointing &
tracking":[[28,"build-application-built-in-checkpointing-tracking"]],"2.
Implement the is_async method":[[6,"implement-the-is-async-method"]],"3. Comes
with a UI":[[28,"comes-with-a-ui"]],"3. Use async persisters with [...]
\ No newline at end of file