Skip to content

Commit

Permalink
fixed typign issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Mar 16, 2024
1 parent 2436284 commit 7bfb5c1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions vision_agent/agent/reflexion.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import re
from typing import Dict, List, Tuple, Union
from typing import Dict, List, Optional, Tuple, Union

from vision_agent import LLM, OpenAILLM

Expand Down Expand Up @@ -62,8 +62,6 @@ def __init__(
self.finsh_prompt = finsh_prompt
self.cot_examples = cot_examples
self.refelct_examples = reflect_examples
self.self_reflect_llm = self_reflect_llm
self.action_agent = action_agent
self.reflections: List[str] = []

if self_reflect_llm is None:
Expand Down

0 comments on commit 7bfb5c1

Please sign in to comment.