├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── package.json ├── src ├── LLAMACPP.ts ├── Session.ts ├── index.ts └── utils.ts ├── tests └── test.mjs └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: AlenVelocity -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/package.json -------------------------------------------------------------------------------- /src/LLAMACPP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/src/LLAMACPP.ts -------------------------------------------------------------------------------- /src/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/src/Session.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LLAMACPP' 2 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/tests/test.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlenVelocity/langchain-llama/HEAD/tsconfig.json --------------------------------------------------------------------------------