Skip to content

Commit

Permalink
Remove cj agent, remove handleMessage from runtime, default to simple…
Browse files Browse the repository at this point in the history
… worker
  • Loading branch information
lalalune committed Mar 2, 2024
1 parent c9ae92e commit 7ba1c95
Show file tree
Hide file tree
Showing 22 changed files with 296 additions and 1,727 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bgent",
"version": "0.0.22",
"version": "0.0.23",
"private": false,
"description": "bgent. because agent was taken.",
"type": "module",
Expand Down
1 change: 0 additions & 1 deletion scripts/processDocs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ const main = async () => {
id: zeroUuid,
name: 'Default Agent',
email: 'default@agent',
register_complete: true,
details: {},
});
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/shell.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const checkAndUpdateAccount = async (user) => {

const { error: insertError } = await supabase
.from('accounts')
.insert([{ id: user.id, name, email: user.email, register_complete: true }])
.insert([{ id: user.id, name, email: user.email }])

if (insertError) {
console.error(chalk.red(`Failed to create account: ${insertError.message}`))
Expand Down
287 changes: 0 additions & 287 deletions src/agents/cj/actions/__tests__/introduce.test.ts

This file was deleted.

4 changes: 0 additions & 4 deletions src/agents/cj/actions/index.ts

This file was deleted.

Loading

0 comments on commit 7ba1c95

Please sign in to comment.