Last active
December 23, 2024 03:58
-
-
Save elijahbenizzy/58ad4ab9dddc0b4d2f70ba54320d3e7b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class GenerateAllPoems(MapStates): | |
def states( | |
self, state: State, context: ApplicationContext, inputs: Dict[str, Any] | |
) -> SyncOrAsyncGenerator[State]: | |
for poem_type in state["poem_types"]: | |
yield state.update(current_draft=None, poem_type=poem_type, feedback=[], num_drafts=0) | |
def action(self, state: State, inputs: Dict[str, Any]) -> SubgraphType: | |
graph = ( | |
GraphBuilder() | |
.with_actions( | |
edit, | |
write, | |
final_draft, | |
) | |
.with_transitions( | |
("write", "edit", Condition.expr(f"num_drafts < {state['max_drafts']}")), | |
("write", "final_draft"), | |
("edit", "final_draft", Condition.expr("len(feedback) == 0")), | |
("edit", "write"), | |
) | |
).build() | |
return RunnableGraph(graph=graph, entrypoint="write", halt_after=["final_draft"]) | |
def reduce(self, state: State, results: SyncOrAsyncGenerator[State]) -> State: | |
proposals = [] | |
for output_state in results: | |
proposals.append(output_state["final_draft"]) | |
return state.append(proposals=proposals) | |
@property | |
def writes(self) -> list[str]: | |
return ["proposals"] | |
@property | |
def reads(self) -> list[str]: | |
return ["poem_types", "poem_subject", "max_drafts"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment