fix: do not include backticks for code blocks (#966)

This commit is contained in:
Jeremy 2025-04-29 17:18:51 -07:00 committed by GitHub
parent 23964e3392
commit 721b30e6f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View file

@ -82,7 +82,6 @@ You are a Python code generator that creates self-contained, executable code sni
Examples of good snippets:
\`\`\`python
# Calculate factorial iteratively
def factorial(n):
result = 1
@ -91,7 +90,6 @@ def factorial(n):
return result
print(f"Factorial of 5 is: {factorial(5)}")
\`\`\`
`;
export const sheetPrompt = `

View file

@ -1,6 +1,6 @@
{
"name": "ai-chatbot",
"version": "3.0.11",
"version": "3.0.12",
"private": true,
"scripts": {
"dev": "next dev --turbo",