Skip to content

Add multiple "to"s in transitions #339

Discussion options

You must be logged in to vote

OK. So the way I'd model it is, given:

  1. An input node (get_question, A)
  2. An answering node (answer_question, B)
  3. An evaluation node (evaluate_answer, C)
  4. A final node (final, D)

A->B (always try to answer first)
B->C (then always evaluate the answer
C->B, if attempts < max_attempts (make sure C increments attempts as well, or stores a history of actions)
C->D if attempts >= max_attempts

Note that you could also go A->B, B->C, and C->A, while also going A->D if ready. I'm not 100% sure this captures your case though...

My issue with the phrasing of "AND" is it's really to a chain of them (which is fair), but AND could mean parallel, in series, etc... And it's not clear from this.

One other o…

Replies: 2 comments 14 replies

Comment options

You must be logged in to vote
14 replies
@HamzaFarhan
Comment options

@HamzaFarhan
Comment options

@HamzaFarhan
Comment options

@elijahbenizzy
Comment options

Answer selected by HamzaFarhan
@HamzaFarhan
Comment options

@yiweig
Comment options

@elijahbenizzy
Comment options

@skrawcz
Comment options

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
4 participants