Skip to content
Snippets Groups Projects
Unverified Commit 057ee146 authored by Thuc Pham's avatar Thuc Pham Committed by GitHub
Browse files

fix: add start command for stackblitz (#1577)

parent 4a831b19
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,8 @@ ...@@ -33,7 +33,8 @@
"typescript": "^5.7.2" "typescript": "^5.7.2"
}, },
"scripts": { "scripts": {
"lint": "eslint ." "lint": "eslint .",
"start": "tsx ./starter.ts"
}, },
"stackblitz": { "stackblitz": {
"startCommand": "npm start" "startCommand": "npm start"
......
import { SimpleDirectoryReader, VectorStoreIndex } from "llamaindex"; import { Document, VectorStoreIndex } from "llamaindex";
import fs from "node:fs/promises";
import { createInterface } from "node:readline/promises"; import { createInterface } from "node:readline/promises";
async function main() { async function main() {
const reader = new SimpleDirectoryReader(); const path = "node_modules/llamaindex/examples/abramov.txt";
const essay = await fs.readFile(path, "utf-8");
const document = new Document({ text: essay, id_: path });
const documents = await reader.loadData("./data"); const index = await VectorStoreIndex.fromDocuments([document]);
const index = await VectorStoreIndex.fromDocuments(documents);
const queryEngine = index.asQueryEngine(); const queryEngine = index.asQueryEngine();
const rl = createInterface({ input: process.stdin, output: process.stdout }); const rl = createInterface({ input: process.stdin, output: process.stdout });
console.log(
"Try asking a question about the essay: https://github.com/run-llama/LlamaIndexTS/blob/main/packages/llamaindex/examples/abramov.txt",
"\nExample: When did the author graduate from high school?",
"\n==============================\n",
);
while (true) { while (true) {
const query = await rl.question("Query: "); const query = await rl.question("Query: ");
const response = await queryEngine.query({ const response = await queryEngine.query({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment