12 lines
254 B
Python
12 lines
254 B
Python
from ollama import chat
|
|
|
|
class init():
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
def generateMd(self):
|
|
pass
|
|
|
|
def generatePrompt(self) -> str:
|
|
return f"""You will give the user a markdown formatted project they can work on.
|
|
""" |