@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
19 lines (18 loc) • 392 B
TypeScript
import type { string_url } from '../types/string_url';
/**
* Represents a search result from a search engine.
*/
export type SearchResult = {
/**
* The title of the search result.
*/
title: string;
/**
* The URL of the search result.
*/
url: string_url;
/**
* A short snippet or description of the search result.
*/
snippet: string;
};