mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
Migration Guide: https://chwt.app/v4/migration This PR imports all the work related to Captain into the EE codebase. Captain represents the AI-based features in Chatwoot and includes the following key components: - Assistant: An assistant has a persona, the product it would be trained on. At the moment, the data at which it is trained is from websites. Future integrations on Notion documents, PDF etc. This PR enables connecting an assistant to an inbox. The assistant would run the conversation every time before transferring it to an agent. - Copilot for Agents: When an agent is supporting a customer, we will be able to offer additional help to lookup some data or fetch information from integrations etc via copilot. - Conversation FAQ generator: When a conversation is resolved, the Captain integration would identify questions which were not in the knowledge base. - CRM memory: Learns from the conversations and identifies important information about the contact. --------- Co-authored-by: Vishnu Narayanan <vishnu@chatwoot.com> Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: iamsivin <iamsivin@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
63 lines
1.7 KiB
YAML
63 lines
1.7 KiB
YAML
version: '2'
|
|
plugins:
|
|
rubocop:
|
|
enabled: false
|
|
channel: rubocop-0-73
|
|
eslint:
|
|
enabled: false
|
|
csslint:
|
|
enabled: true
|
|
scss-lint:
|
|
enabled: true
|
|
brakeman:
|
|
enabled: false
|
|
checks:
|
|
similar-code:
|
|
enabled: false
|
|
method-count:
|
|
enabled: true
|
|
config:
|
|
threshold: 32
|
|
file-lines:
|
|
enabled: true
|
|
config:
|
|
threshold: 300
|
|
method-lines:
|
|
config:
|
|
threshold: 50
|
|
exclude_patterns:
|
|
- 'spec/'
|
|
- '**/specs/**/**'
|
|
- '**/spec/**/**'
|
|
- 'db/*'
|
|
- 'bin/**/*'
|
|
- 'db/**/*'
|
|
- 'config/**/*'
|
|
- 'public/**/*'
|
|
- 'vendor/**/*'
|
|
- 'node_modules/**/*'
|
|
- 'lib/tasks/auto_annotate_models.rake'
|
|
- 'app/test-matchers.js'
|
|
- 'docs/*'
|
|
- '**/*.md'
|
|
- '**/*.yml'
|
|
- 'app/javascript/dashboard/i18n/locale'
|
|
- '**/*.stories.js'
|
|
- 'stories/'
|
|
- 'app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/index.js'
|
|
- 'app/javascript/shared/constants/countries.js'
|
|
- 'app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/languages.js'
|
|
- 'app/javascript/dashboard/routes/dashboard/contacts/contactFilterItems/index.js'
|
|
- 'app/javascript/dashboard/routes/dashboard/settings/automation/constants.js'
|
|
- 'app/javascript/dashboard/components/widgets/FilterInput/FilterOperatorTypes.js'
|
|
- 'app/javascript/dashboard/routes/dashboard/settings/reports/constants.js'
|
|
- 'app/javascript/dashboard/store/captain/storeFactory.js'
|
|
- 'app/javascript/dashboard/i18n/index.js'
|
|
- 'app/javascript/widget/i18n/index.js'
|
|
- 'app/javascript/survey/i18n/index.js'
|
|
- 'app/javascript/shared/constants/locales.js'
|
|
- 'app/javascript/dashboard/helper/specs/macrosFixtures.js'
|
|
- 'app/javascript/dashboard/routes/dashboard/settings/macros/constants.js'
|
|
- '**/fixtures/**'
|
|
- '**/*/fixtures.js'
|