071e885d63
* Add utils for r2 upload * Add the tool and new routes * fix auth issue * sign headers * add comment * use our own API key to auth signed uploads * Restructure things slightly * tweak * tweak * add comments * tweak * revert a thing * twaek * drop mime type filtering * new incarnation of mime type filtering * jsut allow all octet-streams * simplify further * tweak * update lockfile --------- Co-authored-by: Colin McDonnell <colinmcd94@gmail.com>
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
/**
|
|
* Library entry point for npm package
|
|
* This exports the main function for programmatic usage
|
|
*/
|
|
|
|
export type { Agent, AgentResult, AgentRunContext } from "./agents/shared.ts";
|
|
export {
|
|
type Inputs as ExecutionInputs,
|
|
type MainResult,
|
|
main,
|
|
} from "./main.ts";
|