UNPKG

@reliverse/rse

Version:

@reliverse/rse is your all-in-one companion for bootstrapping and improving any kind of projects (especially web apps built with frameworks like Next.js) — whether you're kicking off something new or upgrading an existing app. It is also a little AI-power

22 lines (21 loc) 514 B
import { openai } from "@ai-sdk/openai"; export const AGENT_NAMES = ["relinter"]; export const MODEL = openai("gpt-4o-mini"); export const MODEL_NAME = MODEL.modelId; export const MAX_TOKENS = 1e3; export const CIRCULAR_TRIGGERS = [ "detect circular dependencies", "verify circular dependencies", "check circular dependencies", "detect circular deps", "verify circular deps", "check circular deps" ]; export const EXIT_KEYWORDS = [ "thanks! bye!", "goodbye", "quit", "exit", "bye", "gg" ];