mirror of
https://github.com/katanemo/plano.git
synced 2026-06-08 14:55:14 +02:00
deploy: 15c6c62df0
This commit is contained in:
parent
25b7f56208
commit
4605c2696d
34 changed files with 51 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
18
_static/js/fix-copy.js
Executable file
18
_static/js/fix-copy.js
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
/* Fix: Prevent "Copy code" button label from appearing in clipboard content.
|
||||
*
|
||||
* sphinxawesome_theme inserts a copy button inside <pre> elements. When
|
||||
* clipboard.js selects all children of the <pre> 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);
|
||||
|
|
@ -277,5 +277,6 @@
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -304,5 +304,6 @@ powerful abstraction for evolving your agent workflows over time.</p>
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -277,5 +277,6 @@ application to LLMs (API-based or hosted) via prompt targets.</p>
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -670,5 +670,6 @@ Implement fallback logic for better reliability:</p>
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -314,5 +314,6 @@ Use your preferred client library without changing existing code (see <a class="
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -444,5 +444,6 @@
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1150,5 +1150,6 @@ Any provider that implements the OpenAI API interface can be configured using cu
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -483,5 +483,6 @@ that you can test and modify locally for multi-turn RAG scenarios.</p>
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -550,5 +550,6 @@
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -236,5 +236,6 @@ This gives Plano several advantages:</p>
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -347,5 +347,6 @@
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -526,5 +526,6 @@
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -382,5 +382,6 @@ on the stuff that matters most.</p>
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -517,5 +517,6 @@ Provides a practical mechanism to encode user preferences through domain-action
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -258,5 +258,6 @@ Access logs can be exported to centralized logging systems (e.g., ELK stack or F
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -270,5 +270,6 @@ are some sample configuration files for both, respectively.</p>
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -226,5 +226,6 @@
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -802,5 +802,6 @@ tools like AWS X-Ray and Datadog, enhancing observability and facilitating faste
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -939,5 +939,6 @@ Plano makes it easy to build and scale these systems by managing the orchestrati
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -308,5 +308,6 @@ the agent. If validation fails (<code class="docutils literal notranslate"><span
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -463,5 +463,6 @@
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -257,5 +257,6 @@ Resources</label><div class="sd-tab-content docutils">
|
|||
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="_static/theme.js?v=582b20c5"></script>
|
||||
<script src="_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -447,5 +447,6 @@ Use this page as the canonical source for command syntax, options, and recommend
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -312,5 +312,6 @@ where prompts get routed to, apply guardrails, and enable critical agent observa
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -314,5 +314,6 @@
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -189,5 +189,6 @@
|
|||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -209,5 +209,6 @@ own deployments), and Plano reaches them via HTTP.</p>
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -495,5 +495,6 @@ processing request headers and then finalized by the HCM during post-request pro
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -210,5 +210,6 @@
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -210,5 +210,6 @@ hardware threads on the machine.</p>
|
|||
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="../../_static/theme.js?v=582b20c5"></script>
|
||||
<script src="../../_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="../../_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -233,6 +233,7 @@
|
|||
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
||||
<script defer="defer" src="_static/theme.js?v=582b20c5"></script>
|
||||
<script src="_static/design-tabs.js?v=f930bc37"></script>
|
||||
<script src="_static/js/fix-copy.js?v=2f5cab98"></script>
|
||||
|
||||
<script src="_static/searchtools.js" defer></script>
|
||||
<script src="_static/language_data.js" defer></script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue