Skip to content

Commit dd443e9

Browse files
committed
update leandojo panel doc
1 parent 3dfd59d commit dd443e9

1 file changed

Lines changed: 18 additions & 2 deletions

File tree

vscode/extensions/lean4dojo-panel/src/extension.ts

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -959,6 +959,18 @@ agent.prove(whole_proof=True)
959959
margin-bottom: 0.5rem;
960960
text-align: center;
961961
}
962+
.trace-option-info {
963+
font-size: 0.75rem;
964+
color: var(--vscode-descriptionForeground);
965+
text-align: left;
966+
margin-top: 1rem;
967+
margin-bottom: 1rem;
968+
padding: 0.75rem;
969+
background: var(--vscode-input-background);
970+
border-radius: 4px;
971+
border: 1px solid var(--vscode-input-border);
972+
line-height: 1.5;
973+
}
962974
</style>
963975
</head>
964976
<body>
@@ -967,7 +979,7 @@ agent.prove(whole_proof=True)
967979
id="traceButton"
968980
${traceAlreadyCompleted ? 'disabled' : ''}
969981
${this.waitingForHfToken ? 'style="display: none;"' : ''}>
970-
${traceAlreadyCompleted ? '✅ Trace completed' : 'Trace ONLY!'}
982+
${traceAlreadyCompleted ? '✅ Trace completed' : 'Trace Only'}
971983
</button>
972984
973985
<div class="hf-token-section ${this.waitingForHfToken ? 'visible' : ''}" id="hfTokenSection">
@@ -980,13 +992,17 @@ agent.prove(whole_proof=True)
980992
onclick="traceAndProve()"
981993
id="traceAndProveButton"
982994
${this.waitingForHfToken ? 'style="display: none;"' : ''}>
983-
🔬 Trace and Prove
995+
Trace and Prove "sorry"s
984996
</button>
985997
986998
<div class="trace-completion-info">
987999
Tracing is complete when "out" folder is populated, this may take a few seconds to a few hours...
9881000
</div>
9891001
1002+
<div class="trace-option-info">
1003+
Choose <strong>Trace Only</strong> if you would like to just trace the repo. Choose <strong>Trace and Prove "sorry"s</strong> if you would like to trace and prove the repo's sorry statements.
1004+
</div>
1005+
9901006
9911007
9921008
<script>

0 commit comments

Comments
 (0)