Files
smartchat/ts_cli/plugins.ts
T

22 lines
744 B
TypeScript
Raw Normal View History

// ink (React-based terminal UI)
import { render, Box, Text, Static, Newline, Spacer, useInput, useApp } from 'ink';
export { render, Box, Text, Static, Newline, Spacer, useInput, useApp };
// ink components
import TextInput from 'ink-text-input';
export { TextInput };
// React
import React from 'react';
export { React };
export const h = React.createElement;
// Core (cross-folder import)
import { ChatSession } from '../ts/smartchat.classes.chatsession.js';
export { ChatSession };
export type { IChatSessionOptions, IChatCallbacks, IChatUsage } from '../ts/smartchat.interfaces.js';
// smartagent types
export type { IAgentRunResult } from '@push.rocks/smartagent';
export type { LanguageModelV3, ToolSet } from '@push.rocks/smartai';