한국 고객들이 잘 활용할 수 있도록 영상을 제작하고, 활용 방법 설명
Prompt Flow 실습 환경 만들기 (4월 2일까지)
Prompt Flow Fork 떠서 아래 내용으로 수정하여 문서 작성하기. (4월 1일)
3개의 패키지 추가 필요, 0.2.4 부터 VectorDB가 안나옴.
pip install keyrings.alt pip install bs4 pip install promptflow-vectordb==0.2.3 |
from promptflow import tool # The inputs section will change based on the arguments of the tool function, after you save the code # Adding type to arguments and return value will help the system show the types properly # Please update the function name/signature per need @tool def my_python_tool(search_result: dict): # print(search_result[0]['original_entity']['text']) # 검색된 여러개의 문서에서 original_entity의 text 부분만 배열로 만들어서 반환 return [entity['original_entity']['text'] for entity in search_result] |
system: Summary result for question in Korean. Never use your knowledge and only use the text displayed in ```. If the question asks for a comparison, display it as a table. user: question: {{question}} search_results: ``` {% for item in search_results %} {{item}} {% endfor %} ``` |
RAG 시나리오 고민중.