-
Notifications
You must be signed in to change notification settings - Fork 0
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
Club Vector Embeddings #180
Conversation
tbh just committing so i can move to linux
moving away from util functions -> pinecone + openai services that get instantiated, (eventually) passed to controllers like db and validator is
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some nits and general design choices, but overall fantastic work from both of yall
backend/src/middleware/auth.go
Outdated
@@ -73,7 +73,7 @@ func (m *MiddlewareService) Authorize(requiredPermissions ...types.Permission) f | |||
return errors.FailedToParseAccessToken.FiberError(c) | |||
} | |||
|
|||
userPermissions := types.GetPermissions(models.UserRole(*role)) | |||
userPermissions := models.GetPermissions(models.UserRole(*role)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GetPermissions/permissions in general is not a model, possibly not a type--can be put in the auth folder instead
} | ||
|
||
func (c *Club) EmbeddingString() string { | ||
return c.Name + " " + c.Name + " " + c.Name + " " + c.Name + " " + c.Description |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be a formatted string; fmt.Sprintf
backend/src/models/user.go
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see above
backend/src/search/README.md
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit but solution should be on a new line
backend/src/search/openai.go
Outdated
|
||
embeddingBody, _ := json.Marshal(map[string]interface{}{ | ||
"input": payload, | ||
"model": "text-embedding-ada-002", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would prefer this to be a config option,
backend/src/search/openai.go
Outdated
} | ||
|
||
func NewOpenAiClient() *OpenAiClient { | ||
apiKey, _ := mattress.NewSecret(os.Getenv("SAC_OPENAI_API_KEY")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be in config as well, i assume @garrettladley
backend/src/search/openai.go
Outdated
}) | ||
requestBody := bytes.NewBuffer(embeddingBody) | ||
|
||
req, err := http.NewRequest("POST", fmt.Sprintf("https://api.openai.com/v1/embeddings"), requestBody) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these lines below are repeated over in your guys code, would prefer this to be generalized and exported into a utility function
backend/src/search/pinecone.go
Outdated
} | ||
|
||
func NewPineconeClient[T OpenAiClient](openAiClient *OpenAiClient) *PineconeClient { | ||
indexHost, _ := mattress.NewSecret(os.Getenv("SAC_PINECONE_INDEX_HOST")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above should be apart of config
backend/src/search/pinecone.go
Outdated
}) | ||
requestBody := bytes.NewBuffer(upsertBody) | ||
|
||
req, err := http.NewRequest("POST", fmt.Sprintf("%s/vectors/upsert", c.indexHost.Expose()), requestBody) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
commit cf87502 Author: Garrett Ladley <[email protected]> Date: Mon Feb 19 15:31:35 2024 -0500 Fix: Backend CI Failing (#243) commit 7b0500b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:18:32 2024 -0500 Bump @tanstack/react-query from 5.17.9 to 5.22.2 in /frontend/sac-mobile (#240) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 4e89a47 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:18:15 2024 -0500 Bump zustand from 4.5.0 to 4.5.1 in /frontend/sac-mobile (#239) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit b040e5b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:17:54 2024 -0500 Bump github.com/garrettladley/mattress from 0.2.2 to 0.3.2 in /backend (#234) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit e611dcf Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:17:05 2024 -0500 Bump gorm.io/gorm from 1.25.6 to 1.25.7 in /backend (#235) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 26ada9f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:16:49 2024 -0500 Bump expo from 50.0.6 to 50.0.7 in /frontend/sac-mobile (#238) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit a7498e2 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:16:21 2024 -0500 Bump postcss from 8.4.33 to 8.4.35 in /frontend/sac-mobile (#237) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 37f2831 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:15:56 2024 -0500 Bump gorm.io/driver/postgres from 1.5.4 to 1.5.6 in /backend (#233) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 5b0c484 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:15:31 2024 -0500 Bump @react-navigation/native from 6.1.9 to 6.1.10 in /frontend/sac-mobile (#236) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fda30ba Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:15:11 2024 -0500 Bump @types/node from 20.11.17 to 20.11.19 in /frontend/sac-web (#232) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 9d3c7c7 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:14:50 2024 -0500 Bump @types/react from 18.2.55 to 18.2.56 in /frontend/sac-web (#231) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 882f0a9 Author: Garrett Ladley <[email protected]> Date: Sun Feb 18 22:39:59 2024 -0500 CI: Bump Go to 1.22 (#229) commit d904e21 Author: David Oduneye <[email protected]> Date: Sat Feb 17 15:33:20 2024 -0500 string formatting (#223) commit ca9d0b4 Author: David Oduneye <[email protected]> Date: Sat Feb 17 15:30:15 2024 -0500 unauthorized when you have no cookies (#221) commit a4e2e62 Author: Garrett Ladley <[email protected]> Date: Sat Feb 17 15:26:15 2024 -0500 Fix CI: Backend Tests .env File Pathing (#220) commit 65e6512 Author: Sunny <[email protected]> Date: Sat Feb 17 15:19:37 2024 -0500 SAC-24 Event CRUD (#193) Co-authored-by: OJisMe <[email protected]> Co-authored-by: Olivier Ndjike Nzia <[email protected]> Co-authored-by: Garrett Ladley <[email protected]> Co-authored-by: garrettladley <[email protected]> Co-authored-by: Alder Whiteford <[email protected]> commit 928d567 Author: David Oduneye <[email protected]> Date: Sat Feb 17 15:15:34 2024 -0500 script cleanup (#217) commit e82aa62 Author: Michael Brennan <[email protected]> Date: Fri Feb 16 22:13:13 2024 -0500 Club Vector Embeddings (#180) Co-authored-by: Garrett Ladley <[email protected]> Co-authored-by: garrettladley <[email protected]> commit e319ab1 Author: Melody Yu <[email protected]> Date: Fri Feb 16 19:47:35 2024 -0500 Club endpoint filters (#197) Co-authored-by: Zack Lassetter <[email protected]> Co-authored-by: Melody Yu <[email protected]> Co-authored-by: Garrett Ladley <[email protected]> Co-authored-by: garrettladley <[email protected]> commit ba51de5 Author: Garrett Ladley <[email protected]> Date: Thu Feb 15 19:49:22 2024 -0500 Testing: Club Tag (#216) commit 8ae0892 Author: Garrett Ladley <[email protected]> Date: Thu Feb 15 16:25:01 2024 -0500 Use Append Instead of Replace in Transactions (#215) commit 7d874a1 Author: Garrett Ladley <[email protected]> Date: Thu Feb 15 12:29:18 2024 -0500 Testing: Complete Membership | Delete Nonexistent Edge from 204 -> 404 (#213) commit f806439 Author: Garrett Ladley <[email protected]> Date: Wed Feb 14 19:00:29 2024 -0500 Testing: Complete Follower (#212)
commit a903b26 Author: David Oduneye <[email protected]> Date: Mon Feb 19 23:13:07 2024 -0500 Frontend (#246) commit cf87502 Author: Garrett Ladley <[email protected]> Date: Mon Feb 19 15:31:35 2024 -0500 Fix: Backend CI Failing (#243) commit 7b0500b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:18:32 2024 -0500 Bump @tanstack/react-query from 5.17.9 to 5.22.2 in /frontend/sac-mobile (#240) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 4e89a47 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:18:15 2024 -0500 Bump zustand from 4.5.0 to 4.5.1 in /frontend/sac-mobile (#239) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit b040e5b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:17:54 2024 -0500 Bump github.com/garrettladley/mattress from 0.2.2 to 0.3.2 in /backend (#234) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit e611dcf Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:17:05 2024 -0500 Bump gorm.io/gorm from 1.25.6 to 1.25.7 in /backend (#235) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 26ada9f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:16:49 2024 -0500 Bump expo from 50.0.6 to 50.0.7 in /frontend/sac-mobile (#238) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit a7498e2 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:16:21 2024 -0500 Bump postcss from 8.4.33 to 8.4.35 in /frontend/sac-mobile (#237) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 37f2831 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:15:56 2024 -0500 Bump gorm.io/driver/postgres from 1.5.4 to 1.5.6 in /backend (#233) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 5b0c484 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:15:31 2024 -0500 Bump @react-navigation/native from 6.1.9 to 6.1.10 in /frontend/sac-mobile (#236) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fda30ba Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:15:11 2024 -0500 Bump @types/node from 20.11.17 to 20.11.19 in /frontend/sac-web (#232) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 9d3c7c7 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:14:50 2024 -0500 Bump @types/react from 18.2.55 to 18.2.56 in /frontend/sac-web (#231) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 882f0a9 Author: Garrett Ladley <[email protected]> Date: Sun Feb 18 22:39:59 2024 -0500 CI: Bump Go to 1.22 (#229) commit d904e21 Author: David Oduneye <[email protected]> Date: Sat Feb 17 15:33:20 2024 -0500 string formatting (#223) commit ca9d0b4 Author: David Oduneye <[email protected]> Date: Sat Feb 17 15:30:15 2024 -0500 unauthorized when you have no cookies (#221) commit a4e2e62 Author: Garrett Ladley <[email protected]> Date: Sat Feb 17 15:26:15 2024 -0500 Fix CI: Backend Tests .env File Pathing (#220) commit 65e6512 Author: Sunny <[email protected]> Date: Sat Feb 17 15:19:37 2024 -0500 SAC-24 Event CRUD (#193) Co-authored-by: OJisMe <[email protected]> Co-authored-by: Olivier Ndjike Nzia <[email protected]> Co-authored-by: Garrett Ladley <[email protected]> Co-authored-by: garrettladley <[email protected]> Co-authored-by: Alder Whiteford <[email protected]> commit 928d567 Author: David Oduneye <[email protected]> Date: Sat Feb 17 15:15:34 2024 -0500 script cleanup (#217) commit e82aa62 Author: Michael Brennan <[email protected]> Date: Fri Feb 16 22:13:13 2024 -0500 Club Vector Embeddings (#180) Co-authored-by: Garrett Ladley <[email protected]> Co-authored-by: garrettladley <[email protected]> commit e319ab1 Author: Melody Yu <[email protected]> Date: Fri Feb 16 19:47:35 2024 -0500 Club endpoint filters (#197) Co-authored-by: Zack Lassetter <[email protected]> Co-authored-by: Melody Yu <[email protected]> Co-authored-by: Garrett Ladley <[email protected]> Co-authored-by: garrettladley <[email protected]> commit ba51de5 Author: Garrett Ladley <[email protected]> Date: Thu Feb 15 19:49:22 2024 -0500 Testing: Club Tag (#216) commit 8ae0892 Author: Garrett Ladley <[email protected]> Date: Thu Feb 15 16:25:01 2024 -0500 Use Append Instead of Replace in Transactions (#215) commit 7d874a1 Author: Garrett Ladley <[email protected]> Date: Thu Feb 15 12:29:18 2024 -0500 Testing: Complete Membership | Delete Nonexistent Edge from 204 -> 404 (#213) commit f806439 Author: Garrett Ladley <[email protected]> Date: Wed Feb 14 19:00:29 2024 -0500 Testing: Complete Follower (#212)
commit a903b26 Author: David Oduneye <[email protected]> Date: Mon Feb 19 23:13:07 2024 -0500 Frontend (#246) commit cf87502 Author: Garrett Ladley <[email protected]> Date: Mon Feb 19 15:31:35 2024 -0500 Fix: Backend CI Failing (#243) commit 7b0500b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:18:32 2024 -0500 Bump @tanstack/react-query from 5.17.9 to 5.22.2 in /frontend/sac-mobile (#240) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 4e89a47 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:18:15 2024 -0500 Bump zustand from 4.5.0 to 4.5.1 in /frontend/sac-mobile (#239) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit b040e5b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:17:54 2024 -0500 Bump github.com/garrettladley/mattress from 0.2.2 to 0.3.2 in /backend (#234) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit e611dcf Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:17:05 2024 -0500 Bump gorm.io/gorm from 1.25.6 to 1.25.7 in /backend (#235) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 26ada9f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:16:49 2024 -0500 Bump expo from 50.0.6 to 50.0.7 in /frontend/sac-mobile (#238) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit a7498e2 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:16:21 2024 -0500 Bump postcss from 8.4.33 to 8.4.35 in /frontend/sac-mobile (#237) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 37f2831 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:15:56 2024 -0500 Bump gorm.io/driver/postgres from 1.5.4 to 1.5.6 in /backend (#233) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 5b0c484 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:15:31 2024 -0500 Bump @react-navigation/native from 6.1.9 to 6.1.10 in /frontend/sac-mobile (#236) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fda30ba Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:15:11 2024 -0500 Bump @types/node from 20.11.17 to 20.11.19 in /frontend/sac-web (#232) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Garrett Ladley <[email protected]> commit 9d3c7c7 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 19 15:14:50 2024 -0500 Bump @types/react from 18.2.55 to 18.2.56 in /frontend/sac-web (#231) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 882f0a9 Author: Garrett Ladley <[email protected]> Date: Sun Feb 18 22:39:59 2024 -0500 CI: Bump Go to 1.22 (#229) commit d904e21 Author: David Oduneye <[email protected]> Date: Sat Feb 17 15:33:20 2024 -0500 string formatting (#223) commit ca9d0b4 Author: David Oduneye <[email protected]> Date: Sat Feb 17 15:30:15 2024 -0500 unauthorized when you have no cookies (#221) commit a4e2e62 Author: Garrett Ladley <[email protected]> Date: Sat Feb 17 15:26:15 2024 -0500 Fix CI: Backend Tests .env File Pathing (#220) commit 65e6512 Author: Sunny <[email protected]> Date: Sat Feb 17 15:19:37 2024 -0500 SAC-24 Event CRUD (#193) Co-authored-by: OJisMe <[email protected]> Co-authored-by: Olivier Ndjike Nzia <[email protected]> Co-authored-by: Garrett Ladley <[email protected]> Co-authored-by: garrettladley <[email protected]> Co-authored-by: Alder Whiteford <[email protected]> commit 928d567 Author: David Oduneye <[email protected]> Date: Sat Feb 17 15:15:34 2024 -0500 script cleanup (#217) commit e82aa62 Author: Michael Brennan <[email protected]> Date: Fri Feb 16 22:13:13 2024 -0500 Club Vector Embeddings (#180) Co-authored-by: Garrett Ladley <[email protected]> Co-authored-by: garrettladley <[email protected]> commit e319ab1 Author: Melody Yu <[email protected]> Date: Fri Feb 16 19:47:35 2024 -0500 Club endpoint filters (#197) Co-authored-by: Zack Lassetter <[email protected]> Co-authored-by: Melody Yu <[email protected]> Co-authored-by: Garrett Ladley <[email protected]> Co-authored-by: garrettladley <[email protected]> commit ba51de5 Author: Garrett Ladley <[email protected]> Date: Thu Feb 15 19:49:22 2024 -0500 Testing: Club Tag (#216) commit 8ae0892 Author: Garrett Ladley <[email protected]> Date: Thu Feb 15 16:25:01 2024 -0500 Use Append Instead of Replace in Transactions (#215) commit 7d874a1 Author: Garrett Ladley <[email protected]> Date: Thu Feb 15 12:29:18 2024 -0500 Testing: Complete Membership | Delete Nonexistent Edge from 204 -> 404 (#213) commit f806439 Author: Garrett Ladley <[email protected]> Date: Wed Feb 14 19:00:29 2024 -0500 Testing: Complete Follower (#212)
Description
SAC 30
How Has This Been Tested?
4 tests in
tests/embeddings_test.go
Checklist