Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tags:
docId: l6eepr5ctjgrhdgupy3twr1t
---

# <https://arxiv.org/pdf/2512.14982>
# &lt;https://arxiv.org/pdf/2512.14982&gt;

When not using reasoning, repeating the input prompt improves performance for popular models (Gemini, GPT, Claude, and Deepseek) without increasing the number of generated tokens or latency.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ docId: ylpucy1rbbnfpe3t62u8kcfq
[//]: #
[//]: # "<p><strong>Exemplary example 1:</strong></p>"
[//]: #
[//]: # '<p><img src="https://assets.leetcode.com/uploads/2018/12/07/circularlinkedlist.png" /></p>'
[//]: # '<p>&lt;img src="https://assets.leetcode.com/uploads/2018/12/07/circularlinkedlist.png" /&gt;</p>'
[//]: #
[//]: # "<pre>"
[//]: # "<strong>enter:</strong>head = [3,2,0,-4], pos = 1"
Expand All @@ -33,7 +33,7 @@ docId: ylpucy1rbbnfpe3t62u8kcfq
[//]: #
[//]: # "<p><strong>Exemplary example 2:</strong></p>"
[//]: #
[//]: # '<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test2.png" /></p>'
[//]: # '<p>&lt;img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test2.png" /&gt;</p>'
[//]: #
[//]: # "<pre>"
[//]: # "<strong>enter:</strong>head = [1,2], pos = 0"
Expand All @@ -43,7 +43,7 @@ docId: ylpucy1rbbnfpe3t62u8kcfq
[//]: #
[//]: # "<p><strong>Exemplary example 3:</strong></p>"
[//]: #
[//]: # '<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test3.png" /></p>'
[//]: # '<p>&lt;img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test3.png" /&gt;</p>'
[//]: #
[//]: # "<pre>"
[//]: # "<strong>enter:</strong>head = [1], pos = -1"
Expand All @@ -57,7 +57,7 @@ docId: ylpucy1rbbnfpe3t62u8kcfq
[//]: #
[//]: # "<ul> "
[//]: # " <li>Linked中节点的数目范围在范围 <code>[0, 10<sup>4</sup>]</code> Inside</li> "
[//]: # " <li><code>-10<sup>5</sup> <= Node.val <= 10<sup>5</sup></code></li> "
[//]: # " <li><code>-10<sup>5</sup> &lt;= Node.val &lt;= 10&lt;sup&gt;5</sup></code></li> "
[//]: # " <li><code>pos</code> Value <code>-1</code> 或者Linked中的一indivualhave效索引</li> "
[//]: # "</ul>"

Expand Down
7 changes: 5 additions & 2 deletions app/docs/[...slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ interface Param {
export default async function DocPage({ params }: Param) {
const { slug } = await params;
const page = source.getPage(slug);
console.log("正在尝试访问的Slug数组是:",slug);

if (page == null) {
notFound();
Expand Down Expand Up @@ -54,8 +55,8 @@ export default async function DocPage({ params }: Param) {
</h1>
<EditOnGithub href={editUrl} />
</div>
<Mdx components={getMDXComponents()} />
<Contributors entry={contributorsEntry} />
<Mdx components={getMDXComponents()} />
<Contributors entry={contributorsEntry} />
<PageFeedback />
<section className="mt-16">
<GiscusComments docId={docIdFromPage ?? null} />
Expand All @@ -78,10 +79,12 @@ export async function generateStaticParams() {
return source.getPages().map((page) => ({
slug: page.slugs,
}));
console.log("正在生成StaticParams的Slug数组是:",source.getPages().map((page) => page.slugs));
}

export async function generateMetadata({ params }: Param): Promise<Metadata> {
const { slug } = await params;
console.log("正在生成Metadata的Slug数组是:",slug);
const page = source.getPage(slug);
if (page == null) {
notFound();
Expand Down
Loading