- Added workflow job actor to manage job application workflows. - Implemented agent catalog for various workflow agents. - Created service agents for interview, roleplay, and Q-Score functionalities. - Enhanced user authentication to automatically create users if they do not exist. - Updated configuration to support new LLM provider and API keys. - Introduced new routes for agent and workflow management. - Refactored Docker management to improve Gitea admin user creation and token generation. - Removed deprecated Anthropics SDK integration.
15 lines
309 B
TypeScript
15 lines
309 B
TypeScript
import { setup } from "rivetkit";
|
|
import { growAgent } from "./grow-agent.js";
|
|
import { subAgent } from "./sub-agent.js";
|
|
import { workflowJob } from "./workflow-job.js";
|
|
|
|
export const registry = setup({
|
|
use: {
|
|
growAgent,
|
|
subAgent,
|
|
workflowJob,
|
|
},
|
|
});
|
|
|
|
export type Registry = typeof registry;
|