Apply suggestions from code review

Co-authored-by: Pedro Cuenca <pedro@huggingface.co>
This commit is contained in:
burtenshaw
2025-02-25 15:07:10 +01:00
committed by GitHub
parent 1b23d4b5be
commit c04ff37d79
2 changed files with 2 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ Considering these ideas, we can already identify the need for some features:
* A *system prompt* synced with the parser.
* A *memory system*.
* *Error logging and retry mechanisms* to control LLM mistakes.
We'll explore how these topics are resolved in various frameworks, including `smolagents`, `LlamaIndex`, and `LangGraph`.
## Agentic Frameworks Units

View File

@@ -44,7 +44,7 @@ choices={[
},
{
text: "It stores every action in JSON for easy parsing before executing them all at once",
explain: "That behavior matches ToolCallingAgent's JSON-based approach, not CodeAgent.",
explain: "This behavior matches ToolCallingAgent's JSON-based approach, not CodeAgent.",
},
{
text: "It cycles through writing internal thoughts, generating Python code, executing the code, and logging the results until it arrives at a final answer",