inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

실리콘밸리 엔지니어와 함께하는 랭체인(LangChain)과 랭그래프(LangGraph) 그리고 MCP

Agents에 대해 알아보기

Custom Agent executor error

해결된 질문

427

정채진

작성한 질문수 33

1

else:
  print("TOOL NAME : ", output.tool)
  print("TOOL INPUT : ", output.tool_input)

Traceback (most recent call last):
  File "/Users/chaejinjeong/Desktop/myGit/Study/langchain/inflearn/5.Agent/basic.py", line 75, in <module>
    print("TOOL NAME : ", output.tool)
output : [OpenAIToolAgentAction(tool='get_word_length', tool_input={'word': 'eudca'}, log="\nInvoking: `get_word_length` with `{'word': 'eudca'}`\n\n\n", message_log=[AIMessage(content='', additional_kwargs={'tool_calls': [{'id': 'call_DlTa5qRanu9HhiWGneMz2V3C', 'function': {'arguments': '{"word":"eudca"}', 'name': 'get_word_length'}, 'type': 'function'}]})], tool_call_id='call_DlTa5qRanu9HhiWGneMz2V3C')], <class 'list'>
intermediate_steps = []
final_result = dict()
while True:
    query.update({"intermediate_steps": intermediate_steps})
    output: Union[AgentFinish, AgentAction] = agent.invoke(query)

    if isinstance(output, AgentFinish):
        final_result = output.return_values
        final_result = final_result.get("output")
        break
    else:
        if isinstance(output, list):
            output = output[0]
        print("TOOL NAME : ", output.tool)
        print("TOOL INPUT : ", output.tool_input)
        _tool = tools.get(output.tool)
        observation = _tool.run(output.tool_input)
        intermediate_steps.append((output, observation))


TOOL NAME :  get_word_length
TOOL INPUT :  {'word': 'eudca'}

NLP openai 프롬프트엔지니어링 llm langchain

답변 2

1

미쿡엔지니어

안녕하세요 정채진님,

이상하네요. 저는 코드가 아무 문제 없이 돌아가는데요? AgentFinish의 인스턴스가 아닌 경우, 아래와 같이 output을 확인했지만 tooltool_input 모두 존재하고 있었습니다.

image

tool='get_word_length' tool_input={'word': 'educa'} log="\nInvoking: `get_word_length` with `{'word': 'educa'}`\n\n\n" message_log=[AIMessage(content='', additional_kwargs={'function_call': {'arguments': '{"word":"educa"}', 'name': 'get_word_length'}})]

혹시 에러가 나시는 분들은 output을 확인하시고 정채진님처럼 하시는 것도 좋은 방법인 것 같습니다.

0

정채진

아하 저는 그냥 최신 버전으로 설치했는데 버저닝 문제였나보네요

감사합니다

이지지 생성 노드를 커스텀 햇는데 워드프레스에 이미지 업로드가 안됨

0

8

2

강의 자료(노션) 요청드립니다

0

16

1

n8n에서 오류가 발생했는데 어떻게 풀어야할까요?

0

22

2

공식 문서

0

37

1

입력언어의 차이에 대해 질문있습니다

0

27

1

모델 설정 : Gemini로 해도 되나요?

0

40

2

playwright skill은 코덱스 어디에 있나요?

0

52

2

22강 빌드가 에러가 납니다

0

29

0

menupan.git 레포지토리가 보이지 않습니다.

0

51

2

깃허브 저장소에 코덱스 연동하는 방법 문의드립니다

0

86

1

Gradio 실행 시 에러 발생 문의

0

62

2

Gradio 실행 시 Jinja2 / ASGI TypeError: unhashable type: 'dict' 에러 문의

0

64

2

섹션 10에 수업 자료 링크가 없네요

0

110

3

100% 수강 완료가 되지 않아요

0

95

1

100% 수강 완료가 되지 않아 문의드립니다.

0

159

4

MCP 서버 관련 질문이있습니다.

0

193

2

랭체인 외부 인터넷 사용 관련

0

240

1

summary buffer memory token_limit 질문

1

312

2

[공유] SQLDatabase를 에디터에서 인식하지 못한다면

1

311

1

ChatPromptTemplate.from_messages(("ai", ...)) 질문

1

422

1

chroma db import 가 업데이트된 것 같습니다.

1

525

1

CommonList output이 안되는데 무엇이 문제일까요 ?

1

291

2

Langchain version이 업데이트 되어서 코드를 수정해야할 것 같습니다.

1

1076

2

주어진 코드를 그대로 실행 해 보았는데 결과가 달라요

1

598

3