generated from tailored/router-db-template
- Changed Bailian model from 'qwen3-235b-a22b' to 'qwen-plus' in ai.ts - Updated model references in bailianModel to use simplified names - Modified tsconfig.json to set module to NodeNext, target to esnext, and adjusted paths for better module resolution - Added new query-keys.ts file in xhs package to implement getNoteByKeyword functionality with command line interface
8 lines
283 B
TypeScript
8 lines
283 B
TypeScript
import { xhsServices, app, xhsRootClient } from '../index.ts';
|
|
import { useConfig } from '@kevisual/use-config/env';
|
|
export const config = useConfig();
|
|
import { program } from 'commander';
|
|
|
|
xhsRootClient.setCookie(config.XHS_ROOT_COOKIE || '');
|
|
export { program, xhsServices, app };
|