버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

코드 블럭
titlegenerate_answer
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 %}
```



코드 블럭
# system:
You are a chatbot having a conversation with a human.
Given the following extracted parts of a long document and a question, create a final answer with references ("SOURCES").
If you don't know the answer, just say that you don't know. Don't try to make up an answer.
ALWAYS return a "SOURCES" part in your answer.

{{contexts}}

# user:
{{question}}



RAG 시나리오 고민중.

  1. PF 설정
  2. PF 기반으로 Embedding API 만들기
  3. 배치를 통해 임베딩 데이터 생성
  4. 검색엔진에 임베딩 데이터 인덱싱
  5. 인덱싱 정보를 활용한 검색 API 생성 활용
  6. 검색 데이터 추가하여 검색 정보 확인

...