chore: initial import of standalone agentscope project
Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_en (ubuntu-latest, 3.10) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_zh (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.12) (push) Has been cancelled
166
docs/tutorial/_static/css/gallery.css
Normal file
@@ -0,0 +1,166 @@
|
||||
.sphx-glr-download-link-note.admonition.note {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sphx-glr-footer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.sphx-glr-download-zip {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bordered-image {
|
||||
border: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
:root {
|
||||
--item-card-width: 200px;
|
||||
--item-card-margin: 10px;
|
||||
--item-card-title-height: 50px;
|
||||
|
||||
--item-card-img-length: calc(var(--item-card-width) - 2*var(--item-card-margin));
|
||||
--item-card-title-width: calc(var(--item-card-width) - 2*var(--item-card-margin));
|
||||
--item-card-title-margin-top: var(--item-card-margin);
|
||||
|
||||
--item-card-height: calc(var(--item-card-margin) * 3 + var(--item-card-img-length) + var(--item-card-title-height));
|
||||
}
|
||||
|
||||
td .highlight-python.notranslate {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
/*cite {*/
|
||||
/* background: rgba(229, 229, 229, 0.69) !important;*/
|
||||
/* padding-left: 0.25rem !important;*/
|
||||
/* padding-right: 0.25rem !important;*/
|
||||
/* border-radius: 4px !important;*/
|
||||
/* font-style: normal !important;*/
|
||||
/* font-weight: 600 !important;*/
|
||||
/*}*/
|
||||
|
||||
.sidebar-brand-text {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.sidebar-logo-container .sidebar-logo {
|
||||
max-height: 170px;
|
||||
width: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: var(--item-card-width);
|
||||
height: var(--item-card-height);
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
|
||||
margin: 7px;
|
||||
}
|
||||
|
||||
.docutils.align-default {
|
||||
white-space: normal !important;
|
||||
max-width: 100% !important;
|
||||
width: 100% !important;
|
||||
td {
|
||||
white-space: normal !important;
|
||||
}
|
||||
}
|
||||
|
||||
.sphx-glr-script-out.highlight-none.notranslate .highlight pre{
|
||||
/*正常打印回车*/
|
||||
white-space: pre-wrap !important;
|
||||
/*white-space: normal !important;*/
|
||||
max-width: 100% !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.gallery-item-card {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: var(--item-card-width);
|
||||
height: var(--item-card-height);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: var(--item-card-margin);
|
||||
}
|
||||
|
||||
.gallery-item-card-img {
|
||||
height: var(--item-card-img-length);
|
||||
width: var(--item-card-img-length);
|
||||
min-width: var(--item-card-img-length);
|
||||
min-height: var(--item-card-img-length);
|
||||
display: block;
|
||||
}
|
||||
|
||||
.gallery-item-card-title {
|
||||
text-align: center;
|
||||
margin-top: var(--item-card-margin);
|
||||
font-weight: bold;
|
||||
min-height: var(--item-card-title-height);
|
||||
height: var(--item-card-title-height);
|
||||
width: var(--item-card-title-width);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.gallery-item-description {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
/*background-color: #1e8449;*/
|
||||
color: black;
|
||||
display: none;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.gallery-item:hover .gallery-item-description {
|
||||
display: flex;
|
||||
padding: 10px;
|
||||
border: 1px solid rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
|
||||
.language-switch-button {
|
||||
background: transparent;
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
font-size: 15px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 4px;
|
||||
border: none;
|
||||
color: rgb(4, 4, 4);
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
border-radius: 6px;
|
||||
font-weight: 325;
|
||||
}
|
||||
|
||||
.language-switch-button:hover {
|
||||
color: #2758DA;
|
||||
}
|
||||
|
||||
.version-select {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: transparent;
|
||||
font-size: 14px;
|
||||
border: 1px solid rgb(238, 235, 238);
|
||||
margin-inline: 16px;
|
||||
padding: 8px;
|
||||
height: fit-content;
|
||||
box-sizing: border-box;
|
||||
font-weight: 600;
|
||||
border-radius: 6px;
|
||||
fill: rgb(238, 235, 238);
|
||||
}
|
||||
BIN
docs/tutorial/_static/images/embedding_cache.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
docs/tutorial/_static/images/evaluation.png
Normal file
|
After Width: | Height: | Size: 204 KiB |
BIN
docs/tutorial/_static/images/handoffs.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
docs/tutorial/_static/images/interruption_en.gif
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
docs/tutorial/_static/images/interruption_zh.gif
Normal file
|
After Width: | Height: | Size: 1.4 MiB |
BIN
docs/tutorial/_static/images/logo.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
1
docs/tutorial/_static/images/logo.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="550" height="550" viewBox="0 0 550 550"><defs><linearGradient x1="0.01500389538705349" y1="0.4831196665763855" x2="0.9407116114637801" y2="0.3076102348892569" id="master_svg0_8_2390"><stop offset="0%" stop-color="#01C5FF" stop-opacity="1"/><stop offset="100%" stop-color="#019DFB" stop-opacity="1"/></linearGradient><linearGradient x1="0.21085502207279205" y1="0.38703426718711853" x2="0.9523109409029081" y2="0.390888421140005" id="master_svg1_8_1638"><stop offset="0%" stop-color="#4701EF" stop-opacity="1"/><stop offset="100%" stop-color="#395EEF" stop-opacity="1"/></linearGradient></defs><g><g></g><g><g><path d="M275.4998779296875,211.25Q275.4998779296875,279.5,373.4999779296875,310.5Q338.4998779296875,287.5,343.9998779296875,232Q344.4969779296875,227.19400000000002,345.9004779296875,222.498Q352.96577792968753,198.857,382.9998779296875,178L415.9998779296875,193.5L469.7738779296875,193.5C477.0958779296875,193.5,481.9218779296875,185.91559999999998,478.3148779296875,179.543Q441.5068779296875,114.5,372.9998779296875,114.5C343.9998779296875,114.5,275.4998779296875,143,275.4998779296875,211.25Z" fill="url(#master_svg0_8_2390)" fill-opacity="1"/></g><g><path d="M343.9999162890625,231.99999791015625Q337.9999162890625,287.5000079101562,373.5000462890625,310.5000079101562L433.4998462890625,333.00010791015626Q449.4994462890625,314.2500079101562,449.4994462890625,295.5000079101562Q449.4994462890625,276.7500079101562,433.4998462890625,258.0000079101562L345.9004862890625,222.49810791015625Q344.4970462890625,227.19412791015625,343.9999162890625,231.99999791015625Z" fill="#0064FC" fill-opacity="1"/></g><g><path d="M122.9998779296875,351.5C124.3900479296875,350.6567,125.7727179296875,349.8325,127.1479779296875,349.0269Q125.0392779296875,350.2098,122.9998779296875,351.5ZM127.1479779296875,349.0269Q150.3716779296875,336,181.9998779296875,336C186.2692779296875,335.7983,190.4211779296875,335.9808,194.4638779296875,336.502C250.5488779296875,343.7327,285.6218779296875,416.14300000000003,321.9998779296875,432Q350.1248779296875,444,377.9998779296875,444Q405.8748779296875,444,433.4998779296875,432Q489.9998779296875,400,489.9998779296875,344.5Q489.9998779296875,283,433.4998779296875,258Q449.4998779296875,276.75,449.4998779296875,295.5Q449.4998779296875,314.25,433.4998779296875,333C394.3168779296875,374.257,360.65987792968747,359.947,319.4498779296875,342.4251C286.9518779296875,328.6077,249.7568779296875,312.7935,201.4527779296875,320.6594C179.2413779296875,324.2763,154.6808779296875,332.9,127.1479779296875,349.0269Z" fill="url(#master_svg1_8_1638)" fill-opacity="1"/></g><g><path d="M61,437.99973876953123L133.8305,437.99973876953123C141.5661,437.99973876953123,148.608,433.53913876953123,151.9131,426.54513876953126L194.464,336.50202976953125C190.421,335.98083496953126,186.269,335.79829376953126,182,335.99999996953125Q147.4999,335.99999996953125,122.9999,351.5000387695313C93.5,373.5000387695313,87,387.0000387695313,61,437.99973876953123Z" fill="#0064FC" fill-opacity="1"/></g><g><path d="M61,438.00038301849366C87,387.00038301849366,93.5,373.50038301849366,122.9999,351.50038301849366C152.2215,333.77438301849367,178.132,324.45738301849366,201.453,320.65938301849366L256.597,207.04148301849364C259.081,201.92438301849364,259.26800000000003,195.99188301849364,257.11199999999997,190.72838301849367L227.948,119.52337301849366C225.653,113.91851301849366,217.805,113.67667301849366,215.169,119.12954301849365L61,438.00038301849366Z" fill="#01C8FF" fill-opacity="1"/></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
BIN
docs/tutorial/_static/images/multiagent_msgs.png
Normal file
|
After Width: | Height: | Size: 323 KiB |
BIN
docs/tutorial/_static/images/plan.png
Normal file
|
After Width: | Height: | Size: 293 KiB |
BIN
docs/tutorial/_static/images/sequential_hook.png
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
docs/tutorial/_static/images/studio_home.webp
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
docs/tutorial/_static/images/studio_project.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
docs/tutorial/_static/images/studio_run.webp
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
docs/tutorial/_static/images/studio_tracing.webp
Normal file
|
After Width: | Height: | Size: 180 KiB |
15
docs/tutorial/_static/language_switch.js
Normal file
@@ -0,0 +1,15 @@
|
||||
function switchV1Language() {
|
||||
if (window.location.href.includes("zh_CN")) {
|
||||
window.location.href = "https://doc.agentscope.io";
|
||||
} else {
|
||||
window.location.href = "https://doc.agentscope.io/zh_CN";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function navigateToV0(version) {
|
||||
if (version === "v0") {
|
||||
const suffix = window.location.href.includes("zh_CN") ? "/zh_CN" : "/en";
|
||||
window.location.href = "https://doc.agentscope.io/v0" + suffix;
|
||||
}
|
||||
}
|
||||