├── .gitignore ├── .vscode └── settings.json ├── README.md ├── go.sh ├── package.json ├── src ├── api.ts ├── cli.ts ├── client.ts ├── gen.ts ├── grammarnode.ts ├── index.ts ├── nodefetch.ts ├── regexnode.ts └── util.ts ├── test ├── dedent.test.ts └── inferstop.test.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .env 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/README.md -------------------------------------------------------------------------------- /go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/go.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/package.json -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/src/gen.ts -------------------------------------------------------------------------------- /src/grammarnode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/src/grammarnode.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/nodefetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/src/nodefetch.ts -------------------------------------------------------------------------------- /src/regexnode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/src/regexnode.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/src/util.ts -------------------------------------------------------------------------------- /test/dedent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/test/dedent.test.ts -------------------------------------------------------------------------------- /test/inferstop.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/test/inferstop.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidance-ai/guidance-ts/HEAD/yarn.lock --------------------------------------------------------------------------------