-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
약 정보 DB 구축 #2
Comments
Conversational Reterival QA 메소드 사용하면 될 듯함 : 유저가 대화한 내용을 바탕으로 converstation 가능 |
MemoryVectorStore메소드 : 선형 검색 지원 import { MemoryVectorStore } from "langchain/vectorstores/memory";
import { OpenAIEmbeddings } from "langchain/embeddings/openai";
export const run = async () => {
const vectorStore = await MemoryVectorStore.fromTexts(
["Hello world", "Bye bye", "hello nice world"],
[{ id: 2 }, { id: 1 }, { id: 3 }],
new OpenAIEmbeddings()
);
const resultOne = await vectorStore.similaritySearch("hello world", 1);
console.log(resultOne);
}; 위 코드 처럼 존재하는 Text에서 데이터 불러와 겁색 가능 |
|
파일을 읽고 써야 하는 'fs'는 브라우저에서 작동이 안된다. node와 같은 백단에서만 사용이 가능하다. 그렇다면 어떻게 해야할까 ? |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
LLM -> 약 정보 DB에서만 데이터를 검색하여 오류 없는 데이터 전달할 수 있도록
The text was updated successfully, but these errors were encountered: