├── .gitignore ├── LICENSE ├── README.md ├── common.d.ts ├── faiss.ts ├── index.html ├── local_config.ts ├── package.json ├── public └── vite.svg ├── run_notebook.ts ├── src ├── App.vue ├── assets │ └── vue.svg ├── components │ └── HelloWorld.vue ├── generative_agent.ts ├── main.ts ├── notebook.ts ├── style.css ├── time_weighted_retriever.ts ├── vite-env.d.ts ├── web_config.ts └── window_ai_llm.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/README.md -------------------------------------------------------------------------------- /common.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'deepcopy'; -------------------------------------------------------------------------------- /faiss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/faiss.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/index.html -------------------------------------------------------------------------------- /local_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/local_config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/public/vite.svg -------------------------------------------------------------------------------- /run_notebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/run_notebook.ts -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/assets/vue.svg -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/generative_agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/generative_agent.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/notebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/notebook.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/style.css -------------------------------------------------------------------------------- /src/time_weighted_retriever.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/time_weighted_retriever.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | declare module 'window.ai'; -------------------------------------------------------------------------------- /src/web_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/web_config.ts -------------------------------------------------------------------------------- /src/window_ai_llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/src/window_ai_llm.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoan37/generative-agents-notebook-js/HEAD/vite.config.ts --------------------------------------------------------------------------------