Skip to content

Commit

Permalink
updated documentation for markdown and verbose flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Holmeswww committed Oct 9, 2024
1 parent b52bdab commit 48480ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/agentkit/base_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ class BaseNode:
_compose_prompt (BaseComposePrompt): ComposePrompt object.
after_query (BaseAfterQuery): AfterQuery object.
error_msg_fn (Callable): Function to add error message to the prompt.
verbose (bool): Verbose flag.
verbose (bool): Verbose flag. Node will print the prompt and answer.
markdown (bool): Markdown flag. Enables markdown output.
token_counter (Callable): Function to count tokens.
"""
def __init__(self, key:str, prompt:str, graph:Graph, query_llm:Callable, compose_prompt:BaseComposePrompt, after_query:BaseAfterQuery=None, error_msg_fn:Callable[[list,str,AfterQueryError],list]=error_msg_default, verbose:bool=False, token_counter:Callable=None):
Expand Down

0 comments on commit 48480ef

Please sign in to comment.