mirror of
https://github.com/EthanMarti/infio-copilot.git
synced 2026-05-15 20:21:38 +00:00
14 lines
662 B
TypeScript
14 lines
662 B
TypeScript
import Context from "../../../../core/autocomplete/context-detection";
|
|
import { FewShotExample } from "../../index";
|
|
|
|
const messages: FewShotExample = {
|
|
context: Context.MathBlock,
|
|
input: String.raw`# Logarithm definition
|
|
A logarithm is the power to which a base must be raised to yield a given number. For example, $2^3 =8$; therefore, $3$ is the logarithm of $8$ to base $2$, or in other words $ <mask/>$`,
|
|
answer: String.raw`The text close to the <mask/> is about the definition of the log and logarithm of 8 to base 2. The answer is an inline formula for base 2 of 8 equals 3.
|
|
LANGUAGE: LaTeX, English
|
|
ANSWER: 3 = \log_2(8)`,
|
|
};
|
|
|
|
export default messages;
|