We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
groom 환경이 아닌 vsc에서 실행하여, OpenAI 패키지 버전이 달라서 생기는 버그일수도 있습니다.
chapter15 finance_chatbot.py 실행시 아래와 같은 에러가 납니다.
assistant = client.beta.assistants.create( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: Assistants.create() got an unexpected keyword argument 'file_ids'
https://github.com/minji337/jjinchin/blob/pub-1/contents/chapter15/finance_chatbot.py#L231
현재 client.beta.assistants.create 에는 해당 인자가 없는 것으로 나옵니다.
서칭결과 assistants 생성시 file을 따로 추가해주지 않아도 툴이 storage에서 알아서 검색을 해주기 때문에 빠졌습니다. 대신 tools에 {"type": "file_search"}] 라는 툴을 추가해줘야 합니다. retrieval 이라는 tool이 아예 file_search로 대체된 것처럼 보입니다. https://github.com/minji337/jjinchin/blob/pub-1/contents/chapter15/finance_chatbot.py#L46
{"type": "file_search"}]
retrieval
file_search
https://platform.openai.com/docs/assistants/tools/file-search file들이 들어있는 vector_store를 만들어서 assistant에 attach까지 해줘야 합니다.! (Open AI 페이지에서는 vector_store를 만들지 않고, 파일들을 바로 붙일 수 있는데, 코드로는 어떻게 하는지 찾지 못했습니다.)
책 많은 도움이 되었습니다. 감사합니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
groom 환경이 아닌 vsc에서 실행하여, OpenAI 패키지 버전이 달라서 생기는 버그일수도 있습니다.
chapter15 finance_chatbot.py 실행시 아래와 같은 에러가 납니다.
https://github.com/minji337/jjinchin/blob/pub-1/contents/chapter15/finance_chatbot.py#L231
현재 client.beta.assistants.create 에는 해당 인자가 없는 것으로 나옵니다.
서칭결과
assistants 생성시 file을 따로 추가해주지 않아도 툴이 storage에서 알아서 검색을 해주기 때문에 빠졌습니다.
대신 tools에
{"type": "file_search"}]
라는 툴을 추가해줘야 합니다.retrieval
이라는 tool이 아예file_search
로 대체된 것처럼 보입니다.https://github.com/minji337/jjinchin/blob/pub-1/contents/chapter15/finance_chatbot.py#L46
https://platform.openai.com/docs/assistants/tools/file-search
file들이 들어있는 vector_store를 만들어서 assistant에 attach까지 해줘야 합니다.!
(Open AI 페이지에서는 vector_store를 만들지 않고, 파일들을 바로 붙일 수 있는데, 코드로는 어떻게 하는지 찾지 못했습니다.)
책 많은 도움이 되었습니다. 감사합니다.
The text was updated successfully, but these errors were encountered: