Fix PlanningPromptTemplate and its docstring (#648)
This commit is contained in:
parent
1c1418dfa2
commit
d02093dc24
|
@ -91,8 +91,7 @@ class PlanningPromptTemplate(TypedDict):
|
|||
Prompt templates for the planning step.
|
||||
|
||||
Args:
|
||||
initial_facts_pre_task (`str`): Initial facts pre-task prompt.
|
||||
initial_facts_task (`str`): Initial facts task prompt.
|
||||
initial_facts (`str`): Initial facts prompt.
|
||||
initial_plan (`str`): Initial plan prompt.
|
||||
update_facts_pre_messages (`str`): Update facts pre-messages prompt.
|
||||
update_facts_post_messages (`str`): Update facts post-messages prompt.
|
||||
|
@ -100,8 +99,7 @@ class PlanningPromptTemplate(TypedDict):
|
|||
update_plan_post_messages (`str`): Update plan post-messages prompt.
|
||||
"""
|
||||
|
||||
initial_facts_pre_task: str
|
||||
initial_facts_task: str
|
||||
initial_facts: str
|
||||
initial_plan: str
|
||||
update_facts_pre_messages: str
|
||||
update_facts_post_messages: str
|
||||
|
|
Loading…
Reference in New Issue