You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AI is used as a core part of the application's functionality (not just a novelty)
❌
Vector Search
Vector search is implemented and used in the application
❌
Back End
Uses classes, services, controllers, and DTOs appropriately
✅
Back End
Controllers are lean (logic lives in services)
✅
Front End
Uses classes and components appropriately
✅
Front End
Vuetify components used where appropriate
✅
Unit Tests
Unit tests cover core back-end functionality
✅
Unit Tests
Unit tests cover core front-end functionality
✅
Deployment
Application is deployed to Azure via a CI/CD pipeline
✅
Database
Application uses a database (back end connects to a persistent data store)
✅
UI/UX
UI looks polished, is a joy to use, and follows best practices
✅
Looks great so far!
I may be incorrect on this, but I believe that you're using a keyword-based search with token scoring instead of a vector search. Inside your StubSemanticSearchService.cs, the line (26 - 30):
Allows for exact keyword matching, instead of vector comparisons. I believe that this is fairly easy to fix! To do this, you could generate an embedding vector for the query and compare it against stored embeddings for each game instead of splitting the query into tokens. I think that if you just replace StubSemanticSearchService.cs with an implementation using AI to generate embeddings, you should be good! It looks great so far!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
My Final Project Repo: https://github.com/steeley21/Backlogr