Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nsarrazin
/
agents-js-oasst
like
5
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ab28d28
agents-js-oasst
/
src
/
lib
/
agents
/
tools
/
tool.ts
nsarrazin
first commit
57e16da
about 2 years ago
raw
Copy download link
history
blame
198 Bytes
export
interface
Tool
<
Input
,
Output
> {
name
:
string
;
description
:
string
;
examples
:
Array
<{
prompt
:
string
;
command
:
string
;
}>;
call
:
(
input:
Promise
<Input> | Input
) =>
Promise
<
Output
>;
}