Skip to content

Commit 004af23

Browse files
author
committed
Deployed 9c617e7 with MkDocs version: 1.6.1
0 parents  commit 004af23

File tree

286 files changed

+105313
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

286 files changed

+105313
-0
lines changed

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 922 additions & 0 deletions
Large diffs are not rendered by default.

CONTRIBUTING/index.html

Lines changed: 1377 additions & 0 deletions
Large diffs are not rendered by default.

FAQ/index.html

Lines changed: 1334 additions & 0 deletions
Large diffs are not rendered by default.

__pycache__/hooks.cpython-310.pyc

557 Bytes
Binary file not shown.

assets/_mkdocstrings.css

Lines changed: 171 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
2+
/* Avoid breaking parameter names, etc. in table cells. */
3+
.doc-contents td code {
4+
word-break: normal !important;
5+
}
6+
7+
/* No line break before first paragraph of descriptions. */
8+
.doc-md-description,
9+
.doc-md-description>p:first-child {
10+
display: inline;
11+
}
12+
13+
/* Max width for docstring sections tables. */
14+
.doc .md-typeset__table,
15+
.doc .md-typeset__table table {
16+
display: table !important;
17+
width: 100%;
18+
}
19+
20+
.doc .md-typeset__table tr {
21+
display: table-row;
22+
}
23+
24+
/* Defaults in Spacy table style. */
25+
.doc-param-default {
26+
float: right;
27+
}
28+
29+
/* Parameter headings must be inline, not blocks. */
30+
.doc-heading-parameter {
31+
display: inline;
32+
}
33+
34+
/* Prefer space on the right, not the left of parameter permalinks. */
35+
.doc-heading-parameter .headerlink {
36+
margin-left: 0 !important;
37+
margin-right: 0.2rem;
38+
}
39+
40+
/* Backward-compatibility: docstring section titles in bold. */
41+
.doc-section-title {
42+
font-weight: bold;
43+
}
44+
45+
/* Backlinks crumb separator. */
46+
.doc-backlink-crumb {
47+
display: inline-flex;
48+
gap: .2rem;
49+
white-space: nowrap;
50+
align-items: center;
51+
vertical-align: middle;
52+
}
53+
.doc-backlink-crumb:not(:first-child)::before {
54+
background-color: var(--md-default-fg-color--lighter);
55+
content: "";
56+
display: inline;
57+
height: 1rem;
58+
--md-path-icon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>');
59+
-webkit-mask-image: var(--md-path-icon);
60+
mask-image: var(--md-path-icon);
61+
width: 1rem;
62+
}
63+
.doc-backlink-crumb.last {
64+
font-weight: bold;
65+
}
66+
67+
/* Symbols in Navigation and ToC. */
68+
:root, :host,
69+
[data-md-color-scheme="default"] {
70+
--doc-symbol-parameter-fg-color: #df50af;
71+
--doc-symbol-attribute-fg-color: #953800;
72+
--doc-symbol-function-fg-color: #8250df;
73+
--doc-symbol-method-fg-color: #8250df;
74+
--doc-symbol-class-fg-color: #0550ae;
75+
--doc-symbol-module-fg-color: #5cad0f;
76+
77+
--doc-symbol-parameter-bg-color: #df50af1a;
78+
--doc-symbol-attribute-bg-color: #9538001a;
79+
--doc-symbol-function-bg-color: #8250df1a;
80+
--doc-symbol-method-bg-color: #8250df1a;
81+
--doc-symbol-class-bg-color: #0550ae1a;
82+
--doc-symbol-module-bg-color: #5cad0f1a;
83+
}
84+
85+
[data-md-color-scheme="slate"] {
86+
--doc-symbol-parameter-fg-color: #ffa8cc;
87+
--doc-symbol-attribute-fg-color: #ffa657;
88+
--doc-symbol-function-fg-color: #d2a8ff;
89+
--doc-symbol-method-fg-color: #d2a8ff;
90+
--doc-symbol-class-fg-color: #79c0ff;
91+
--doc-symbol-module-fg-color: #baff79;
92+
93+
--doc-symbol-parameter-bg-color: #ffa8cc1a;
94+
--doc-symbol-attribute-bg-color: #ffa6571a;
95+
--doc-symbol-function-bg-color: #d2a8ff1a;
96+
--doc-symbol-method-bg-color: #d2a8ff1a;
97+
--doc-symbol-class-bg-color: #79c0ff1a;
98+
--doc-symbol-module-bg-color: #baff791a;
99+
}
100+
101+
code.doc-symbol {
102+
border-radius: .1rem;
103+
font-size: .85em;
104+
padding: 0 .3em;
105+
font-weight: bold;
106+
}
107+
108+
code.doc-symbol-parameter,
109+
a code.doc-symbol-parameter {
110+
color: var(--doc-symbol-parameter-fg-color);
111+
background-color: var(--doc-symbol-parameter-bg-color);
112+
}
113+
114+
code.doc-symbol-parameter::after {
115+
content: "param";
116+
}
117+
118+
code.doc-symbol-attribute,
119+
a code.doc-symbol-attribute {
120+
color: var(--doc-symbol-attribute-fg-color);
121+
background-color: var(--doc-symbol-attribute-bg-color);
122+
}
123+
124+
code.doc-symbol-attribute::after {
125+
content: "attr";
126+
}
127+
128+
code.doc-symbol-function,
129+
a code.doc-symbol-function {
130+
color: var(--doc-symbol-function-fg-color);
131+
background-color: var(--doc-symbol-function-bg-color);
132+
}
133+
134+
code.doc-symbol-function::after {
135+
content: "func";
136+
}
137+
138+
code.doc-symbol-method,
139+
a code.doc-symbol-method {
140+
color: var(--doc-symbol-method-fg-color);
141+
background-color: var(--doc-symbol-method-bg-color);
142+
}
143+
144+
code.doc-symbol-method::after {
145+
content: "meth";
146+
}
147+
148+
code.doc-symbol-class,
149+
a code.doc-symbol-class {
150+
color: var(--doc-symbol-class-fg-color);
151+
background-color: var(--doc-symbol-class-bg-color);
152+
}
153+
154+
code.doc-symbol-class::after {
155+
content: "class";
156+
}
157+
158+
code.doc-symbol-module,
159+
a code.doc-symbol-module {
160+
color: var(--doc-symbol-module-fg-color);
161+
background-color: var(--doc-symbol-module-bg-color);
162+
}
163+
164+
code.doc-symbol-module::after {
165+
content: "mod";
166+
}
167+
168+
.doc-signature .autorefs {
169+
color: inherit;
170+
border-bottom: 1px dotted currentcolor;
171+
}
33.4 KB
35.1 KB

assets/favicon.png

527 Bytes

assets/images/favicon.png

1.83 KB

assets/images/social/CONTRIBUTING.png

24.2 KB

assets/images/social/FAQ.png

17.7 KB

assets/images/social/cli/index.png

21.7 KB

assets/images/social/core/actions.png

21.4 KB

assets/images/social/core/assets.png

19.3 KB
31 KB

assets/images/social/core/buckets.png

21.6 KB
23.5 KB
27.4 KB
25.8 KB

assets/images/social/core/jobs.png

18.9 KB
21.6 KB

assets/images/social/core/queues.png

20 KB

assets/images/social/core/traced.png

19.7 KB

assets/images/social/index.png

25.8 KB
25.7 KB

assets/images/social/plugins/uipath-langchain-python/samples/simple-remote-mcp/README.png

25.8 KB

assets/javascripts/bundle.c8b220af.min.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/bundle.c8b220af.min.js.map

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/lunr/min/lunr.ar.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/lunr/min/lunr.da.min.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/lunr/min/lunr.de.min.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)