Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ updates:
interval: 'daily'
commit-message:
prefix: 'Dependency Updates'
ignore:
# For Eslint, ignore all Dependabot updates for version 9 until supported by peer dependencies (typescript-eslint)
- dependency-name: 'eslint'
versions: ['9.x']
groups:
# group dev dependencies together in a single pull request
dev-dependencies:
Expand Down
15 changes: 1 addition & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,6 @@ Intento helps you decipher what that something is that the user wants done, and

[Get Started](https://qvikchat.pkural.ca/getting-started) | [Documentation](https://qvikchat.pkural.ca)

## QvikChat Starter Template

This project was scaffolded using the [QvikChat Starter Template](https://github.com/oconva/qvikchat-starter-template). It comes pre-configured with the following features:

- **QvikChat**: QvikChat installed and configured to start serving chat endpoints.
- **TypeScript**: TypeScript to allow you to write type-safe code efficiently.
- **ESLint**: ESLint to enforce code quality and consistency.
- **Prettier**: Prettier to format your code automatically and ensure consistent code style.
- **Jest**: Jest to run your tests and ensure your code works as expected.
- **GitHub Actions**: GitHub Actions to run your tests and lint your code automatically on every push.
- **SWC**: For faster and more efficient TypeScript compilation.
- **PNPM**: PNPM to manage your dependencies efficiently.

## Contributions

Contributions are welcome! Please refer to the [contribution guidelines](CONTRIBUTING.md) for more information.
Expand All @@ -58,7 +45,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file

## Issues

If you encounter any issues or bugs while using QvikChat, please report them by following these steps:
If you encounter any issues or bugs while using Intento, please report them by following these steps:

1. Check if the issue has already been reported by searching our issue tracker.
2. If the issue hasn't been reported, create a new issue and provide a detailed description of the problem.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oconva/intento",
"version": "1.0.1",
"version": "1.0.2",
"description": "Open source intent recognition framework",
"main": "lib/index.js",
"scripts": {
Expand Down Expand Up @@ -54,7 +54,7 @@
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"eslint": "^9.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
Expand All @@ -67,7 +67,7 @@
},
"dependencies": {
"@genkit-ai/dotprompt": "^0.5.7",
"@oconva/qvikchat": "^2.0.0-alpha.0",
"@oconva/qvikchat": "^2.0.0-alpha.4",
"firebase-admin": "^12.2.0",
"zod": "^3.23.8"
}
Expand Down
Loading