mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-01 01:51:44 +00:00
99 lines
2.4 KiB
TypeScript
99 lines
2.4 KiB
TypeScript
import { INTERPOLATION_RE, LONG_MSG } from '../constants.js'
|
|
|
|
// eslint-disable-next-line no-control-regex
|
|
const ANSI_RE = /\x1b\[[0-9;]*m/g
|
|
|
|
export const stripAnsi = (s: string) => s.replace(ANSI_RE, '')
|
|
|
|
export const hasAnsi = (s: string) => s.includes('\x1b[')
|
|
|
|
const renderEstimateLine = (line: string) => {
|
|
const trimmed = line.trim()
|
|
|
|
if (trimmed.startsWith('|')) {
|
|
return trimmed
|
|
.split('|')
|
|
.filter(Boolean)
|
|
.map(cell => cell.trim())
|
|
.join(' ')
|
|
}
|
|
|
|
return line
|
|
.replace(/\[(.+?)\]\((https?:\/\/[^\s)]+)\)/g, '$1')
|
|
.replace(/`([^`]+)`/g, '$1')
|
|
.replace(/\*\*(.+?)\*\*/g, '$1')
|
|
.replace(/\*(.+?)\*/g, '$1')
|
|
.replace(/^#{1,3}\s+/, '')
|
|
.replace(/^\s*[-*]\s+/, '• ')
|
|
.replace(/^\s*(\d+)\.\s+/, '$1. ')
|
|
.replace(/^>\s?/, '│ ')
|
|
}
|
|
|
|
export const compactPreview = (s: string, max: number) => {
|
|
const one = s.replace(/\s+/g, ' ').trim()
|
|
|
|
return !one ? '' : one.length > max ? one.slice(0, max - 1) + '…' : one
|
|
}
|
|
|
|
export const estimateRows = (text: string, w: number, compact = false) => {
|
|
let inCode = false
|
|
let rows = 0
|
|
|
|
for (const raw of text.split('\n')) {
|
|
const line = stripAnsi(raw)
|
|
|
|
if (line.startsWith('```')) {
|
|
if (!inCode) {
|
|
const lang = line.slice(3).trim()
|
|
|
|
if (lang) {
|
|
rows += Math.ceil((`─ ${lang}`.length || 1) / w)
|
|
}
|
|
}
|
|
|
|
inCode = !inCode
|
|
|
|
continue
|
|
}
|
|
|
|
const trimmed = line.trim()
|
|
|
|
if (!inCode && trimmed.startsWith('|') && /^[|\s:-]+$/.test(trimmed)) {
|
|
continue
|
|
}
|
|
|
|
const rendered = inCode ? line : renderEstimateLine(line)
|
|
|
|
if (compact && !rendered.trim()) {
|
|
continue
|
|
}
|
|
|
|
rows += Math.ceil((rendered.length || 1) / w)
|
|
}
|
|
|
|
return Math.max(1, rows)
|
|
}
|
|
|
|
export const flat = (r: Record<string, string[]>) => Object.values(r).flat()
|
|
|
|
export const fmtK = (n: number) => (n >= 1000 ? `${(n / 1000).toFixed(1)}k` : `${n}`)
|
|
|
|
export const hasInterpolation = (s: string) => {
|
|
INTERPOLATION_RE.lastIndex = 0
|
|
|
|
return INTERPOLATION_RE.test(s)
|
|
}
|
|
|
|
export const pick = <T>(a: T[]) => a[Math.floor(Math.random() * a.length)]!
|
|
|
|
export const userDisplay = (text: string): string => {
|
|
if (text.length <= LONG_MSG) {
|
|
return text
|
|
}
|
|
|
|
const first = text.split('\n')[0]?.trim() ?? ''
|
|
const words = first.split(/\s+/).filter(Boolean)
|
|
const prefix = (words.length > 1 ? words.slice(0, 4).join(' ') : first).slice(0, 80)
|
|
|
|
return `${prefix || '(message)'} [long message]`
|
|
}
|