Skip to content

feat: add embeddings service for codebase analysis and similarity search #26

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Jun 16, 2025
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c712672
feat: add embeddings service for codebase analysis and similarity search
ChiragAgg5k Jun 6, 2025
5bfe7cf
chore: export embeddings
ChiragAgg5k Jun 9, 2025
86beb9a
feat: lazy load transformers pipeline in embeddings service
ChiragAgg5k Jun 9, 2025
00287cf
feat: integrate OpenAI API for embeddings generation and update envir…
ChiragAgg5k Jun 9, 2025
28687bd
feat: enhance embeddings service with result status and message for e…
ChiragAgg5k Jun 9, 2025
60442fc
feat: add message to findRelevantDocuments for better error handling …
ChiragAgg5k Jun 9, 2025
e73ec0d
feat: switch to local embedding model using Hugging Face Transformers…
ChiragAgg5k Jun 9, 2025
9fea92a
refactor: remove environment configuration for remote models in embed…
ChiragAgg5k Jun 9, 2025
490c1a3
fix: update default model name in embeddings service to use sentence-…
ChiragAgg5k Jun 9, 2025
db8c54b
fix: correct model name in embeddings tests to match sentence-transfo…
ChiragAgg5k Jun 9, 2025
6e4565a
fix: update default model name in embeddings service and tests to use…
ChiragAgg5k Jun 9, 2025
91e2476
refactor: remove dtype configuration for embedding pipeline in embedd…
ChiragAgg5k Jun 9, 2025
40b19ba
feat: add performance logging to embedding generation process in embe…
ChiragAgg5k Jun 9, 2025
2bca058
refactor: remove .env and .env.example files and enhance directory ig…
ChiragAgg5k Jun 10, 2025
7d669f1
feat: implement embedding adapters for Hugging Face and OpenAI, enhan…
ChiragAgg5k Jun 10, 2025
51e7de5
feat: auto embeddings
ChiragAgg5k Jun 12, 2025
f8325ca
Merge pull request #27 from appwrite/auto-embed
ChiragAgg5k Jun 13, 2025
6c56863
chore: update tests
ChiragAgg5k Jun 13, 2025
a61e110
chore: update fn names
ChiragAgg5k Jun 13, 2025
3cdd467
chore: add updateworkdir
ChiragAgg5k Jun 13, 2025
cb57150
chore: update error messages and use cleanup
ChiragAgg5k Jun 13, 2025
a58b8c8
chore: prevent initializing again
ChiragAgg5k Jun 13, 2025
a3da873
chore: fix initialize model
ChiragAgg5k Jun 13, 2025
bfbf377
chore: update error returned
ChiragAgg5k Jun 13, 2025
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
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
OPENAI_API_KEY=sk-proj-1234567890
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
OPENAI_API_KEY=your-openai-api-key
Loading