7 lines
233 B
Python
7 lines
233 B
Python
class OutlineGenerator:
|
|
def __init__(self, chatgpt_api):
|
|
self.chatgpt_api = chatgpt_api
|
|
|
|
def create_outline(self, prompt: str) -> str:
|
|
outline = self.chatgpt_api.generate_outline(prompt)
|
|
return outline |