fix: do not include backticks for code blocks (#966)
This commit is contained in:
parent
23964e3392
commit
721b30e6f9
2 changed files with 1 additions and 3 deletions
|
|
@ -82,7 +82,6 @@ You are a Python code generator that creates self-contained, executable code sni
|
||||||
|
|
||||||
Examples of good snippets:
|
Examples of good snippets:
|
||||||
|
|
||||||
\`\`\`python
|
|
||||||
# Calculate factorial iteratively
|
# Calculate factorial iteratively
|
||||||
def factorial(n):
|
def factorial(n):
|
||||||
result = 1
|
result = 1
|
||||||
|
|
@ -91,7 +90,6 @@ def factorial(n):
|
||||||
return result
|
return result
|
||||||
|
|
||||||
print(f"Factorial of 5 is: {factorial(5)}")
|
print(f"Factorial of 5 is: {factorial(5)}")
|
||||||
\`\`\`
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const sheetPrompt = `
|
export const sheetPrompt = `
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ai-chatbot",
|
"name": "ai-chatbot",
|
||||||
"version": "3.0.11",
|
"version": "3.0.12",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev --turbo",
|
"dev": "next dev --turbo",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue