@loopstack/web-module
Installation
npm install @loopstack/web-moduleRegister the module in your app module:
import { Module } from '@nestjs/common';
import { WebModule } from '@loopstack/web-module';
@Module({
imports: [WebModule],
})
export class AppModule {}Plain fetch-and-convert use needs no configuration. The optional summarization step (triggered when a prompt arg is passed to the tool) runs through Claude and requires an Anthropic API key:
ANTHROPIC_API_KEY=sk-ant-...Last updated on