EL comments

This commit is contained in:
joachim-danswer 2025-02-03 15:58:26 -08:00 committed by Evan Lohn
parent 3ce8923086
commit b46c09ac6c
3 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@ def generate_initial_answer_graph_builder(test_mode: bool = False) -> StateGraph
)
# The sub-graph that retrieves the original question documents. This is run
# in parallel with the sub-answer generation process.
# in parallel with the sub-answer generation process
retrieve_orig_question_docs = retrieve_orig_question_docs_graph_builder().compile()
graph.add_node(
node="retrieve_orig_question_docs_subgraph_wrapper",
@ -50,7 +50,7 @@ def generate_initial_answer_graph_builder(test_mode: bool = False) -> StateGraph
)
# Node that generates the initial answer using the results of the previous
# two sub-.
# two sub-graphs
graph.add_node(
node="generate_initial_answer",
action=generate_initial_answer,

View File

@ -137,7 +137,7 @@ def main_graph_builder(test_mode: bool = False) -> StateGraph:
action=extract_entities_terms,
)
# Decide if the answer needs to be refined (current;ly always true)
# Decide if the answer needs to be refined (currently always true)
graph.add_node(
node="decide_refinement_need",
action=decide_refinement_need,
@ -150,7 +150,7 @@ def main_graph_builder(test_mode: bool = False) -> StateGraph:
action=compare_answers,
)
# Log the results. This will log the stats as well as the answers
# Log the results. This will log the stats as well as the answers, sub-questions, and sub-answers
graph.add_node(
node="logging_node",
action=persist_agent_results,

View File

@ -59,7 +59,7 @@ def answer_refined_query_graph_builder() -> StateGraph:
action=ingest_retrieved_documents,
)
# Generate the refined sub-answer
# Generate the refined sub-answer
graph.add_node(
node="generate_refined_sub_answer",
action=generate_sub_answer,