Skip to content

Commit 160dab0

Browse files
authored
Merge pull request #2145 from cardstack/cs-7993-support-multiple-tool-calls-per-ai-response
Move command requests to card message matrix events and add support for multiple commands per message
2 parents 66bc216 + 8b4e305 commit 160dab0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2592
-1007
lines changed

packages/ai-bot/.eslintrc.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
'use strict';
2+
3+
module.exports = {
4+
root: true,
5+
parser: '@typescript-eslint/parser',
6+
parserOptions: {
7+
ecmaVersion: 2020,
8+
sourceType: 'module',
9+
ecmaFeatures: {
10+
legacyDecorators: true,
11+
},
12+
},
13+
plugins: ['ember'],
14+
extends: [
15+
'eslint:recommended',
16+
'plugin:@typescript-eslint/recommended',
17+
'plugin:prettier/recommended',
18+
],
19+
rules: {
20+
// this doesn't work well with the monorepo. Typescript already complains if you try to import something that's not found
21+
'import/no-unresolved': 'off',
22+
'prefer-const': 'off',
23+
'@typescript-eslint/ban-ts-comment': 'off',
24+
'@typescript-eslint/ban-types': 'off',
25+
'@typescript-eslint/prefer-as-const': 'off',
26+
'@typescript-eslint/no-explicit-any': 'off',
27+
'@typescript-eslint/no-non-null-assertion': 'off',
28+
'@typescript-eslint/no-unused-vars': [
29+
'error',
30+
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
31+
],
32+
},
33+
};

0 commit comments

Comments
 (0)