diff --git a/.buildinfo b/.buildinfo index 6dee1306..678a4d24 100755 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file records the configuration used when building these files. When it is not found, a full rebuild will be done. -config: e26e7d4613b59c9dae9ef0aeba6ba8ab +config: 61560732a23437528f3470c755eb4c63 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_static/js/fix-copy.js b/_static/js/fix-copy.js new file mode 100755 index 00000000..0999cc3e --- /dev/null +++ b/_static/js/fix-copy.js @@ -0,0 +1,18 @@ +/* Fix: Prevent "Copy code" button label from appearing in clipboard content. + * + * sphinxawesome_theme inserts a copy button inside
 elements. When
+ * clipboard.js selects all children of the 
 to copy, the button's
+ * sr-only text ("Copy code") is included in the selection. This listener
+ * intercepts the copy event and strips that trailing label from the data
+ * written to the clipboard.
+ */
+document.addEventListener('copy', function (e) {
+    if (!e.clipboardData) { return; }
+    var selection = window.getSelection();
+    if (!selection) { return; }
+    var text = selection.toString();
+    var clean = text.replace(/\nCopy code\s*$/, '');
+    if (clean === text) { return; }
+    e.clipboardData.setData('text/plain', clean);
+    e.preventDefault();
+}, true);
diff --git a/concepts/agents.html b/concepts/agents.html
index 06ff3e31..442593a4 100755
--- a/concepts/agents.html
+++ b/concepts/agents.html
@@ -277,5 +277,6 @@
 
 
 
+
 
 
\ No newline at end of file
diff --git a/concepts/filter_chain.html b/concepts/filter_chain.html
index 39efab07..015ac578 100755
--- a/concepts/filter_chain.html
+++ b/concepts/filter_chain.html
@@ -304,5 +304,6 @@ powerful abstraction for evolving your agent workflows over time.

+ \ No newline at end of file diff --git a/concepts/listeners.html b/concepts/listeners.html index 78021692..f14b016d 100755 --- a/concepts/listeners.html +++ b/concepts/listeners.html @@ -277,5 +277,6 @@ application to LLMs (API-based or hosted) via prompt targets.

+ \ No newline at end of file diff --git a/concepts/llm_providers/client_libraries.html b/concepts/llm_providers/client_libraries.html index ef8f56cd..a27c953e 100755 --- a/concepts/llm_providers/client_libraries.html +++ b/concepts/llm_providers/client_libraries.html @@ -670,5 +670,6 @@ Implement fallback logic for better reliability:

+ \ No newline at end of file diff --git a/concepts/llm_providers/llm_providers.html b/concepts/llm_providers/llm_providers.html index 770095f9..8414afa2 100755 --- a/concepts/llm_providers/llm_providers.html +++ b/concepts/llm_providers/llm_providers.html @@ -314,5 +314,6 @@ Use your preferred client library without changing existing code (see + \ No newline at end of file diff --git a/concepts/llm_providers/model_aliases.html b/concepts/llm_providers/model_aliases.html index e08c1194..5196e112 100755 --- a/concepts/llm_providers/model_aliases.html +++ b/concepts/llm_providers/model_aliases.html @@ -444,5 +444,6 @@ + \ No newline at end of file diff --git a/concepts/llm_providers/supported_providers.html b/concepts/llm_providers/supported_providers.html index 8ad7ae31..6b3bceb6 100755 --- a/concepts/llm_providers/supported_providers.html +++ b/concepts/llm_providers/supported_providers.html @@ -1150,5 +1150,6 @@ Any provider that implements the OpenAI API interface can be configured using cu + \ No newline at end of file diff --git a/concepts/prompt_target.html b/concepts/prompt_target.html index dd1024ab..b8bf13aa 100755 --- a/concepts/prompt_target.html +++ b/concepts/prompt_target.html @@ -483,5 +483,6 @@ that you can test and modify locally for multi-turn RAG scenarios.

+ \ No newline at end of file diff --git a/concepts/signals.html b/concepts/signals.html index 2413d52f..f1294066 100755 --- a/concepts/signals.html +++ b/concepts/signals.html @@ -550,5 +550,6 @@ + \ No newline at end of file diff --git a/get_started/intro_to_plano.html b/get_started/intro_to_plano.html index fc511e6a..6d094736 100755 --- a/get_started/intro_to_plano.html +++ b/get_started/intro_to_plano.html @@ -236,5 +236,6 @@ This gives Plano several advantages:

+ \ No newline at end of file diff --git a/get_started/overview.html b/get_started/overview.html index bb359f27..f1a1e7ec 100755 --- a/get_started/overview.html +++ b/get_started/overview.html @@ -347,5 +347,6 @@ + \ No newline at end of file diff --git a/get_started/quickstart.html b/get_started/quickstart.html index 3e75640f..4496fbae 100755 --- a/get_started/quickstart.html +++ b/get_started/quickstart.html @@ -526,5 +526,6 @@ + \ No newline at end of file diff --git a/guides/function_calling.html b/guides/function_calling.html index 3c4e77c7..0e3b627a 100755 --- a/guides/function_calling.html +++ b/guides/function_calling.html @@ -382,5 +382,6 @@ on the stuff that matters most.

+ \ No newline at end of file diff --git a/guides/llm_router.html b/guides/llm_router.html index 0a3995e4..a4244a01 100755 --- a/guides/llm_router.html +++ b/guides/llm_router.html @@ -517,5 +517,6 @@ Provides a practical mechanism to encode user preferences through domain-action + \ No newline at end of file diff --git a/guides/observability/access_logging.html b/guides/observability/access_logging.html index cd304cee..957ebda8 100755 --- a/guides/observability/access_logging.html +++ b/guides/observability/access_logging.html @@ -258,5 +258,6 @@ Access logs can be exported to centralized logging systems (e.g., ELK stack or F + \ No newline at end of file diff --git a/guides/observability/monitoring.html b/guides/observability/monitoring.html index 8049c492..9bc453f7 100755 --- a/guides/observability/monitoring.html +++ b/guides/observability/monitoring.html @@ -270,5 +270,6 @@ are some sample configuration files for both, respectively.

+ \ No newline at end of file diff --git a/guides/observability/observability.html b/guides/observability/observability.html index 4e3ad2ec..59b8c1a2 100755 --- a/guides/observability/observability.html +++ b/guides/observability/observability.html @@ -226,5 +226,6 @@ + \ No newline at end of file diff --git a/guides/observability/tracing.html b/guides/observability/tracing.html index 60af69fc..1ee3253a 100755 --- a/guides/observability/tracing.html +++ b/guides/observability/tracing.html @@ -802,5 +802,6 @@ tools like AWS X-Ray and Datadog, enhancing observability and facilitating faste + \ No newline at end of file diff --git a/guides/orchestration.html b/guides/orchestration.html index 749fab65..9afaa59d 100755 --- a/guides/orchestration.html +++ b/guides/orchestration.html @@ -939,5 +939,6 @@ Plano makes it easy to build and scale these systems by managing the orchestrati + \ No newline at end of file diff --git a/guides/prompt_guard.html b/guides/prompt_guard.html index 3833d3db..a370c389 100755 --- a/guides/prompt_guard.html +++ b/guides/prompt_guard.html @@ -308,5 +308,6 @@ the agent. If validation fails ( + \ No newline at end of file diff --git a/guides/state.html b/guides/state.html index e15ed12e..7a1a4261 100755 --- a/guides/state.html +++ b/guides/state.html @@ -463,5 +463,6 @@ + \ No newline at end of file diff --git a/includes/llms.txt b/includes/llms.txt index 28ba3076..6856bd15 100755 --- a/includes/llms.txt +++ b/includes/llms.txt @@ -1,6 +1,6 @@ Plano Docs v0.4.9 llms.txt (auto-generated) -Generated (UTC): 2026-02-27T00:18:28.005461+00:00 +Generated (UTC): 2026-02-27T21:11:56.350125+00:00 Table of contents - Agents (concepts/agents) diff --git a/index.html b/index.html index 28cfa245..fae399fe 100755 --- a/index.html +++ b/index.html @@ -257,5 +257,6 @@ Resources
+ \ No newline at end of file diff --git a/resources/cli_reference.html b/resources/cli_reference.html index 317f7784..3f65ac7b 100755 --- a/resources/cli_reference.html +++ b/resources/cli_reference.html @@ -447,5 +447,6 @@ Use this page as the canonical source for command syntax, options, and recommend + \ No newline at end of file diff --git a/resources/configuration_reference.html b/resources/configuration_reference.html index 587bd002..591ff3a2 100755 --- a/resources/configuration_reference.html +++ b/resources/configuration_reference.html @@ -312,5 +312,6 @@ where prompts get routed to, apply guardrails, and enable critical agent observa + \ No newline at end of file diff --git a/resources/deployment.html b/resources/deployment.html index 69eeccbb..6b4c542a 100755 --- a/resources/deployment.html +++ b/resources/deployment.html @@ -314,5 +314,6 @@ + \ No newline at end of file diff --git a/resources/llms_txt.html b/resources/llms_txt.html index c67da868..55eb9320 100755 --- a/resources/llms_txt.html +++ b/resources/llms_txt.html @@ -189,5 +189,6 @@ + \ No newline at end of file diff --git a/resources/tech_overview/model_serving.html b/resources/tech_overview/model_serving.html index ae9c67ec..18fcf6cf 100755 --- a/resources/tech_overview/model_serving.html +++ b/resources/tech_overview/model_serving.html @@ -209,5 +209,6 @@ own deployments), and Plano reaches them via HTTP.

+ \ No newline at end of file diff --git a/resources/tech_overview/request_lifecycle.html b/resources/tech_overview/request_lifecycle.html index cc0b50e3..90a7655a 100755 --- a/resources/tech_overview/request_lifecycle.html +++ b/resources/tech_overview/request_lifecycle.html @@ -495,5 +495,6 @@ processing request headers and then finalized by the HCM during post-request pro + \ No newline at end of file diff --git a/resources/tech_overview/tech_overview.html b/resources/tech_overview/tech_overview.html index 05f2c22b..ade54e61 100755 --- a/resources/tech_overview/tech_overview.html +++ b/resources/tech_overview/tech_overview.html @@ -210,5 +210,6 @@ + \ No newline at end of file diff --git a/resources/tech_overview/threading_model.html b/resources/tech_overview/threading_model.html index f910f6b5..11097aa3 100755 --- a/resources/tech_overview/threading_model.html +++ b/resources/tech_overview/threading_model.html @@ -210,5 +210,6 @@ hardware threads on the machine.

+ \ No newline at end of file diff --git a/search.html b/search.html index 11a5f71c..8fd3ffa4 100755 --- a/search.html +++ b/search.html @@ -233,6 +233,7 @@ +