diff --git a/.eslintrc b/.eslintrc index cb5c21b08..c27114417 100644 --- a/.eslintrc +++ b/.eslintrc @@ -11,6 +11,28 @@ }, "plugins": ["@typescript-eslint"], "rules": { - "semi": [2, "never"] + "semi": [2, "never"], + "@typescript-eslint/no-unused-vars": [ + "warn", + { + "argsIgnorePattern": "^_", + "ignoreRestSiblings": true, + "varsIgnorePattern": "^_", + "caughtErrorsIgnorePattern": "^_" + } + ], + + "@typescript-eslint/no-misused-promises": ["error", { + "checksVoidReturn": false + }], + "@typescript-eslint/no-unsafe-assignment": "warn", + "prettier/prettier": [ + "warn", + { + "trailingComma": "es5" + } + ], + "@typescript-eslint/no-unsafe-member-access": "warn", + "@typescript-eslint/no-unsafe-return": "warn" } } diff --git a/.prettierrc b/.prettierrc index b2095be81..36301bc5c 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,4 +1,5 @@ { "semi": false, - "singleQuote": true + "singleQuote": true, + "trailingComma": "es5" } diff --git a/package.json b/package.json index aad1ec9a4..01b58c5e0 100644 --- a/package.json +++ b/package.json @@ -23,17 +23,16 @@ "@graphql-codegen/schema-ast": "^2.1.1", "@graphql-codegen/typescript": "^2.1.1", "@graphql-codegen/typescript-resolvers": "^2.1.1", - "@tsconfig/node14": "^1.0.1", - "@typescript-eslint/eslint-plugin": "^5.9.0", - "@typescript-eslint/parser": "^5.9.0", - "eslint": "^8.6.0", - "eslint-config-prettier": "^8.3.0", - "eslint-plugin-prettier": "^4.0.0", + "@typescript-eslint/eslint-plugin": "^6.12.0", + "@typescript-eslint/parser": "^6.12.0", + "eslint": "^8.54.0", + "eslint-config-prettier": "^9.0.0", + "eslint-plugin-prettier": "^5.0.1", "graphql": "^15.3.0", "graphql-tag": "^2.11.0", "lerna": "^7.4.1", - "prettier": "^2.5.1", - "typescript": "4.5.2" + "prettier": "^3.1.0", + "typescript": "^5.3.2" }, "volta": { "node": "18.16.1", diff --git a/packages/api/.eslintrc b/packages/api/.eslintrc index f2874a383..e878de815 100644 --- a/packages/api/.eslintrc +++ b/packages/api/.eslintrc @@ -4,6 +4,11 @@ "project": "tsconfig.json" }, "rules": { - "@typescript-eslint/no-unsafe-argument": 0 + "@typescript-eslint/no-unsafe-argument": 0, + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-redundant-type-constituents": "off", + "@typescript-eslint/no-unsafe-enum-comparison": "off", + "@typescript-eslint/no-unsafe-call": "off", + "@typescript-eslint/no-unsafe-member-access": "off" } } diff --git a/packages/api/package.json b/packages/api/package.json index 75cecca83..bd529f40b 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -90,7 +90,7 @@ "snake-case": "^3.0.3", "supertest": "^6.2.2", "ts-loader": "^9.3.0", - "typeorm": "^0.3.4", + "typeorm": "^0.3.17", "typeorm-naming-strategies": "^4.1.0", "underscore": "^1.13.6", "urlsafe-base64": "^1.0.0", diff --git a/packages/api/src/generated/graphql.ts b/packages/api/src/generated/graphql.ts index c68e340ee..dcd6855ac 100644 --- a/packages/api/src/generated/graphql.ts +++ b/packages/api/src/generated/graphql.ts @@ -17,6 +17,29 @@ export type Scalars = { JSON: any; }; +export type AddDiscoverFeedError = { + __typename?: 'AddDiscoverFeedError'; + errorCodes: Array; +}; + +export enum AddDiscoverFeedErrorCode { + BadRequest = 'BAD_REQUEST', + Conflict = 'CONFLICT', + NotFound = 'NOT_FOUND', + Unauthorized = 'UNAUTHORIZED' +} + +export type AddDiscoverFeedInput = { + url: Scalars['String']; +}; + +export type AddDiscoverFeedResult = AddDiscoverFeedError | AddDiscoverFeedSuccess; + +export type AddDiscoverFeedSuccess = { + __typename?: 'AddDiscoverFeedSuccess'; + feed: DiscoverFeed; +}; + export type AddPopularReadError = { __typename?: 'AddPopularReadError'; errorCodes: Array; @@ -522,6 +545,51 @@ export type DeleteAccountSuccess = { userID: Scalars['ID']; }; +export type DeleteDiscoverArticleError = { + __typename?: 'DeleteDiscoverArticleError'; + errorCodes: Array; +}; + +export enum DeleteDiscoverArticleErrorCode { + BadRequest = 'BAD_REQUEST', + NotFound = 'NOT_FOUND', + Unauthorized = 'UNAUTHORIZED' +} + +export type DeleteDiscoverArticleInput = { + discoverArticleId: Scalars['ID']; +}; + +export type DeleteDiscoverArticleResult = DeleteDiscoverArticleError | DeleteDiscoverArticleSuccess; + +export type DeleteDiscoverArticleSuccess = { + __typename?: 'DeleteDiscoverArticleSuccess'; + id: Scalars['ID']; +}; + +export type DeleteDiscoverFeedError = { + __typename?: 'DeleteDiscoverFeedError'; + errorCodes: Array; +}; + +export enum DeleteDiscoverFeedErrorCode { + BadRequest = 'BAD_REQUEST', + Conflict = 'CONFLICT', + NotFound = 'NOT_FOUND', + Unauthorized = 'UNAUTHORIZED' +} + +export type DeleteDiscoverFeedInput = { + feedId: Scalars['ID']; +}; + +export type DeleteDiscoverFeedResult = DeleteDiscoverFeedError | DeleteDiscoverFeedSuccess; + +export type DeleteDiscoverFeedSuccess = { + __typename?: 'DeleteDiscoverFeedSuccess'; + id: Scalars['String']; +}; + export type DeleteFilterError = { __typename?: 'DeleteFilterError'; errorCodes: Array; @@ -743,6 +811,79 @@ export type EmptyTrashSuccess = { success?: Maybe; }; +export type DiscoverFeed = { + __typename?: 'DiscoverFeed'; + description?: Maybe; + id: Scalars['ID']; + image?: Maybe; + link: Scalars['String']; + title: Scalars['String']; + type: Scalars['String']; + visibleName?: Maybe; +}; + +export type DiscoverFeedArticle = { + __typename?: 'DiscoverFeedArticle'; + author?: Maybe; + description: Scalars['String']; + feed: Scalars['String']; + id: Scalars['ID']; + image?: Maybe; + publishedDate?: Maybe; + savedId?: Maybe; + savedLinkUrl?: Maybe; + siteName?: Maybe; + slug: Scalars['String']; + title: Scalars['String']; + url: Scalars['String']; +}; + +export type DiscoverFeedError = { + __typename?: 'DiscoverFeedError'; + errorCodes: Array; +}; + +export enum DiscoverFeedErrorCode { + BadRequest = 'BAD_REQUEST', + Unauthorized = 'UNAUTHORIZED' +} + +export type DiscoverFeedResult = DiscoverFeedError | DiscoverFeedSuccess; + +export type DiscoverFeedSuccess = { + __typename?: 'DiscoverFeedSuccess'; + feeds: Array>; +}; + +export type DiscoverTopic = { + __typename?: 'DiscoverTopic'; + description: Scalars['String']; + name: Scalars['String']; +}; + +export type EditDiscoverFeedError = { + __typename?: 'EditDiscoverFeedError'; + errorCodes: Array; +}; + +export enum EditDiscoverFeedErrorCode { + BadRequest = 'BAD_REQUEST', + NotFound = 'NOT_FOUND', + Unauthorized = 'UNAUTHORIZED' +} + +export type EditDiscoverFeedInput = { + feedId: Scalars['ID']; + name: Scalars['String']; +}; + +export type EditDiscoverFeedResult = EditDiscoverFeedError | EditDiscoverFeedSuccess; + +export type EditDiscoverFeedSuccess = { + __typename?: 'EditDiscoverFeedSuccess'; + id: Scalars['ID']; +}; + export type Feature = { __typename?: 'Feature'; createdAt: Scalars['Date']; @@ -909,6 +1050,41 @@ export type GenerateApiKeySuccess = { apiKey: ApiKey; }; +export type GetDiscoverFeedArticleError = { + __typename?: 'GetDiscoverFeedArticleError'; + errorCodes: Array; +}; + +export enum GetDiscoverFeedArticleErrorCode { + BadRequest = 'BAD_REQUEST', + NotFound = 'NOT_FOUND', + Unauthorized = 'UNAUTHORIZED' +} + +export type GetDiscoverFeedArticleResults = GetDiscoverFeedArticleError | GetDiscoverFeedArticleSuccess; + +export type GetDiscoverFeedArticleSuccess = { + __typename?: 'GetDiscoverFeedArticleSuccess'; + discoverArticles?: Maybe>>; + pageInfo: PageInfo; +}; + +export type GetDiscoverTopicError = { + __typename?: 'GetDiscoverTopicError'; + errorCodes: Array; +}; + +export enum GetDiscoverTopicErrorCode { + Unauthorized = 'UNAUTHORIZED' +} + +export type GetDiscoverTopicResults = GetDiscoverTopicError | GetDiscoverTopicSuccess; + +export type GetDiscoverTopicSuccess = { + __typename?: 'GetDiscoverTopicSuccess'; + discoverTopics?: Maybe>; +}; + export type GetFollowersError = { __typename?: 'GetFollowersError'; errorCodes: Array; @@ -1352,6 +1528,7 @@ export type MoveToFolderSuccess = { export type Mutation = { __typename?: 'Mutation'; + addDiscoverFeed: AddDiscoverFeedResult; addPopularRead: AddPopularReadResult; bulkAction: BulkActionResult; createArticle: CreateArticleResult; @@ -1361,6 +1538,8 @@ export type Mutation = { createLabel: CreateLabelResult; createNewsletterEmail: CreateNewsletterEmailResult; deleteAccount: DeleteAccountResult; + deleteDiscoverArticle: DeleteDiscoverArticleResult; + deleteDiscoverFeed: DeleteDiscoverFeedResult; deleteFilter: DeleteFilterResult; deleteHighlight: DeleteHighlightResult; deleteIntegration: DeleteIntegrationResult; @@ -1368,6 +1547,7 @@ export type Mutation = { deleteNewsletterEmail: DeleteNewsletterEmailResult; deleteRule: DeleteRuleResult; deleteWebhook: DeleteWebhookResult; + editDiscoverFeed: EditDiscoverFeedResult; emptyTrash: EmptyTrashResult; fetchContent: FetchContentResult; generateApiKey: GenerateApiKeyResult; @@ -1388,6 +1568,7 @@ export type Mutation = { reportItem: ReportItemResult; revokeApiKey: RevokeApiKeyResult; saveArticleReadingProgress: SaveArticleReadingProgressResult; + saveDiscoverArticle: SaveDiscoverArticleResult; saveFile: SaveResult; saveFilter: SaveFilterResult; savePage: SaveResult; @@ -1418,6 +1599,11 @@ export type Mutation = { }; +export type MutationAddDiscoverFeedArgs = { + input: AddDiscoverFeedInput; +}; + + export type MutationAddPopularReadArgs = { name: Scalars['String']; }; @@ -1468,6 +1654,16 @@ export type MutationDeleteAccountArgs = { }; +export type MutationDeleteDiscoverArticleArgs = { + input: DeleteDiscoverArticleInput; +}; + + +export type MutationDeleteDiscoverFeedArgs = { + input: DeleteDiscoverFeedInput; +}; + + export type MutationDeleteFilterArgs = { id: Scalars['ID']; }; @@ -1503,6 +1699,11 @@ export type MutationDeleteWebhookArgs = { }; +export type MutationEditDiscoverFeedArgs = { + input: EditDiscoverFeedInput; +}; + + export type MutationFetchContentArgs = { id: Scalars['ID']; }; @@ -1594,6 +1795,11 @@ export type MutationSaveArticleReadingProgressArgs = { }; +export type MutationSaveDiscoverArticleArgs = { + input: SaveDiscoverArticleInput; +}; + + export type MutationSaveFileArgs = { input: SaveFileInput; }; @@ -1865,8 +2071,11 @@ export type Query = { article: ArticleResult; articleSavingRequest: ArticleSavingRequestResult; deviceTokens: DeviceTokensResult; + discoverFeeds: DiscoverFeedResult; + discoverTopics: GetDiscoverTopicResults; feeds: FeedsResult; filters: FiltersResult; + getDiscoverFeedArticles: GetDiscoverFeedArticleResults; getUserPersonalization: GetUserPersonalizationResult; groups: GroupsResult; hello?: Maybe; @@ -1909,6 +2118,14 @@ export type QueryFeedsArgs = { }; +export type QueryGetDiscoverFeedArticlesArgs = { + after?: InputMaybe; + discoverTopicId: Scalars['String']; + feedId?: InputMaybe; + first?: InputMaybe; +}; + + export type QueryRulesArgs = { enabled?: InputMaybe; }; @@ -2267,6 +2484,31 @@ export type SaveArticleReadingProgressSuccess = { updatedArticle: Article; }; +export type SaveDiscoverArticleError = { + __typename?: 'SaveDiscoverArticleError'; + errorCodes: Array; +}; + +export enum SaveDiscoverArticleErrorCode { + BadRequest = 'BAD_REQUEST', + NotFound = 'NOT_FOUND', + Unauthorized = 'UNAUTHORIZED' +} + +export type SaveDiscoverArticleInput = { + discoverArticleId: Scalars['ID']; + locale?: InputMaybe; + timezone?: InputMaybe; +}; + +export type SaveDiscoverArticleResult = SaveDiscoverArticleError | SaveDiscoverArticleSuccess; + +export type SaveDiscoverArticleSuccess = { + __typename?: 'SaveDiscoverArticleSuccess'; + saveId: Scalars['String']; + url: Scalars['String']; +}; + export type SaveError = { __typename?: 'SaveError'; errorCodes: Array; @@ -3547,6 +3789,11 @@ export type DirectiveResolverFn; + AddDiscoverFeedErrorCode: AddDiscoverFeedErrorCode; + AddDiscoverFeedInput: AddDiscoverFeedInput; + AddDiscoverFeedResult: ResolversTypes['AddDiscoverFeedError'] | ResolversTypes['AddDiscoverFeedSuccess']; + AddDiscoverFeedSuccess: ResolverTypeWrapper; AddPopularReadError: ResolverTypeWrapper; AddPopularReadErrorCode: AddPopularReadErrorCode; AddPopularReadResult: ResolversTypes['AddPopularReadError'] | ResolversTypes['AddPopularReadSuccess']; @@ -3635,6 +3882,16 @@ export type ResolversTypes = { DeleteAccountErrorCode: DeleteAccountErrorCode; DeleteAccountResult: ResolversTypes['DeleteAccountError'] | ResolversTypes['DeleteAccountSuccess']; DeleteAccountSuccess: ResolverTypeWrapper; + DeleteDiscoverArticleError: ResolverTypeWrapper; + DeleteDiscoverArticleErrorCode: DeleteDiscoverArticleErrorCode; + DeleteDiscoverArticleInput: DeleteDiscoverArticleInput; + DeleteDiscoverArticleResult: ResolversTypes['DeleteDiscoverArticleError'] | ResolversTypes['DeleteDiscoverArticleSuccess']; + DeleteDiscoverArticleSuccess: ResolverTypeWrapper; + DeleteDiscoverFeedError: ResolverTypeWrapper; + DeleteDiscoverFeedErrorCode: DeleteDiscoverFeedErrorCode; + DeleteDiscoverFeedInput: DeleteDiscoverFeedInput; + DeleteDiscoverFeedResult: ResolversTypes['DeleteDiscoverFeedError'] | ResolversTypes['DeleteDiscoverFeedSuccess']; + DeleteDiscoverFeedSuccess: ResolverTypeWrapper; DeleteFilterError: ResolverTypeWrapper; DeleteFilterErrorCode: DeleteFilterErrorCode; DeleteFilterResult: ResolversTypes['DeleteFilterError'] | ResolversTypes['DeleteFilterSuccess']; @@ -3680,6 +3937,18 @@ export type ResolversTypes = { DeviceTokensErrorCode: DeviceTokensErrorCode; DeviceTokensResult: ResolversTypes['DeviceTokensError'] | ResolversTypes['DeviceTokensSuccess']; DeviceTokensSuccess: ResolverTypeWrapper; + DiscoverFeed: ResolverTypeWrapper; + DiscoverFeedArticle: ResolverTypeWrapper; + DiscoverFeedError: ResolverTypeWrapper; + DiscoverFeedErrorCode: DiscoverFeedErrorCode; + DiscoverFeedResult: ResolversTypes['DiscoverFeedError'] | ResolversTypes['DiscoverFeedSuccess']; + DiscoverFeedSuccess: ResolverTypeWrapper; + DiscoverTopic: ResolverTypeWrapper; + EditDiscoverFeedError: ResolverTypeWrapper; + EditDiscoverFeedErrorCode: EditDiscoverFeedErrorCode; + EditDiscoverFeedInput: EditDiscoverFeedInput; + EditDiscoverFeedResult: ResolversTypes['EditDiscoverFeedError'] | ResolversTypes['EditDiscoverFeedSuccess']; + EditDiscoverFeedSuccess: ResolverTypeWrapper; EmptyTrashError: ResolverTypeWrapper; EmptyTrashErrorCode: EmptyTrashErrorCode; EmptyTrashResult: ResolversTypes['EmptyTrashError'] | ResolversTypes['EmptyTrashSuccess']; @@ -3713,6 +3982,14 @@ export type ResolversTypes = { GenerateApiKeyInput: GenerateApiKeyInput; GenerateApiKeyResult: ResolversTypes['GenerateApiKeyError'] | ResolversTypes['GenerateApiKeySuccess']; GenerateApiKeySuccess: ResolverTypeWrapper; + GetDiscoverFeedArticleError: ResolverTypeWrapper; + GetDiscoverFeedArticleErrorCode: GetDiscoverFeedArticleErrorCode; + GetDiscoverFeedArticleResults: ResolversTypes['GetDiscoverFeedArticleError'] | ResolversTypes['GetDiscoverFeedArticleSuccess']; + GetDiscoverFeedArticleSuccess: ResolverTypeWrapper; + GetDiscoverTopicError: ResolverTypeWrapper; + GetDiscoverTopicErrorCode: GetDiscoverTopicErrorCode; + GetDiscoverTopicResults: ResolversTypes['GetDiscoverTopicError'] | ResolversTypes['GetDiscoverTopicSuccess']; + GetDiscoverTopicSuccess: ResolverTypeWrapper; GetFollowersError: ResolverTypeWrapper; GetFollowersErrorCode: GetFollowersErrorCode; GetFollowersResult: ResolversTypes['GetFollowersError'] | ResolversTypes['GetFollowersSuccess']; @@ -3869,6 +4146,11 @@ export type ResolversTypes = { SaveArticleReadingProgressInput: SaveArticleReadingProgressInput; SaveArticleReadingProgressResult: ResolversTypes['SaveArticleReadingProgressError'] | ResolversTypes['SaveArticleReadingProgressSuccess']; SaveArticleReadingProgressSuccess: ResolverTypeWrapper; + SaveDiscoverArticleError: ResolverTypeWrapper; + SaveDiscoverArticleErrorCode: SaveDiscoverArticleErrorCode; + SaveDiscoverArticleInput: SaveDiscoverArticleInput; + SaveDiscoverArticleResult: ResolversTypes['SaveDiscoverArticleError'] | ResolversTypes['SaveDiscoverArticleSuccess']; + SaveDiscoverArticleSuccess: ResolverTypeWrapper; SaveError: ResolverTypeWrapper; SaveErrorCode: SaveErrorCode; SaveFileInput: SaveFileInput; @@ -4088,6 +4370,10 @@ export type ResolversTypes = { /** Mapping between all available schema types and the resolvers parents */ export type ResolversParentTypes = { + AddDiscoverFeedError: AddDiscoverFeedError; + AddDiscoverFeedInput: AddDiscoverFeedInput; + AddDiscoverFeedResult: ResolversParentTypes['AddDiscoverFeedError'] | ResolversParentTypes['AddDiscoverFeedSuccess']; + AddDiscoverFeedSuccess: AddDiscoverFeedSuccess; AddPopularReadError: AddPopularReadError; AddPopularReadResult: ResolversParentTypes['AddPopularReadError'] | ResolversParentTypes['AddPopularReadSuccess']; AddPopularReadSuccess: AddPopularReadSuccess; @@ -4156,6 +4442,14 @@ export type ResolversParentTypes = { DeleteAccountError: DeleteAccountError; DeleteAccountResult: ResolversParentTypes['DeleteAccountError'] | ResolversParentTypes['DeleteAccountSuccess']; DeleteAccountSuccess: DeleteAccountSuccess; + DeleteDiscoverArticleError: DeleteDiscoverArticleError; + DeleteDiscoverArticleInput: DeleteDiscoverArticleInput; + DeleteDiscoverArticleResult: ResolversParentTypes['DeleteDiscoverArticleError'] | ResolversParentTypes['DeleteDiscoverArticleSuccess']; + DeleteDiscoverArticleSuccess: DeleteDiscoverArticleSuccess; + DeleteDiscoverFeedError: DeleteDiscoverFeedError; + DeleteDiscoverFeedInput: DeleteDiscoverFeedInput; + DeleteDiscoverFeedResult: ResolversParentTypes['DeleteDiscoverFeedError'] | ResolversParentTypes['DeleteDiscoverFeedSuccess']; + DeleteDiscoverFeedSuccess: DeleteDiscoverFeedSuccess; DeleteFilterError: DeleteFilterError; DeleteFilterResult: ResolversParentTypes['DeleteFilterError'] | ResolversParentTypes['DeleteFilterSuccess']; DeleteFilterSuccess: DeleteFilterSuccess; @@ -4190,6 +4484,16 @@ export type ResolversParentTypes = { DeviceTokensError: DeviceTokensError; DeviceTokensResult: ResolversParentTypes['DeviceTokensError'] | ResolversParentTypes['DeviceTokensSuccess']; DeviceTokensSuccess: DeviceTokensSuccess; + DiscoverFeed: DiscoverFeed; + DiscoverFeedArticle: DiscoverFeedArticle; + DiscoverFeedError: DiscoverFeedError; + DiscoverFeedResult: ResolversParentTypes['DiscoverFeedError'] | ResolversParentTypes['DiscoverFeedSuccess']; + DiscoverFeedSuccess: DiscoverFeedSuccess; + DiscoverTopic: DiscoverTopic; + EditDiscoverFeedError: EditDiscoverFeedError; + EditDiscoverFeedInput: EditDiscoverFeedInput; + EditDiscoverFeedResult: ResolversParentTypes['EditDiscoverFeedError'] | ResolversParentTypes['EditDiscoverFeedSuccess']; + EditDiscoverFeedSuccess: EditDiscoverFeedSuccess; EmptyTrashError: EmptyTrashError; EmptyTrashResult: ResolversParentTypes['EmptyTrashError'] | ResolversParentTypes['EmptyTrashSuccess']; EmptyTrashSuccess: EmptyTrashSuccess; @@ -4217,6 +4521,12 @@ export type ResolversParentTypes = { GenerateApiKeyInput: GenerateApiKeyInput; GenerateApiKeyResult: ResolversParentTypes['GenerateApiKeyError'] | ResolversParentTypes['GenerateApiKeySuccess']; GenerateApiKeySuccess: GenerateApiKeySuccess; + GetDiscoverFeedArticleError: GetDiscoverFeedArticleError; + GetDiscoverFeedArticleResults: ResolversParentTypes['GetDiscoverFeedArticleError'] | ResolversParentTypes['GetDiscoverFeedArticleSuccess']; + GetDiscoverFeedArticleSuccess: GetDiscoverFeedArticleSuccess; + GetDiscoverTopicError: GetDiscoverTopicError; + GetDiscoverTopicResults: ResolversParentTypes['GetDiscoverTopicError'] | ResolversParentTypes['GetDiscoverTopicSuccess']; + GetDiscoverTopicSuccess: GetDiscoverTopicSuccess; GetFollowersError: GetFollowersError; GetFollowersResult: ResolversParentTypes['GetFollowersError'] | ResolversParentTypes['GetFollowersSuccess']; GetFollowersSuccess: GetFollowersSuccess; @@ -4339,6 +4649,10 @@ export type ResolversParentTypes = { SaveArticleReadingProgressInput: SaveArticleReadingProgressInput; SaveArticleReadingProgressResult: ResolversParentTypes['SaveArticleReadingProgressError'] | ResolversParentTypes['SaveArticleReadingProgressSuccess']; SaveArticleReadingProgressSuccess: SaveArticleReadingProgressSuccess; + SaveDiscoverArticleError: SaveDiscoverArticleError; + SaveDiscoverArticleInput: SaveDiscoverArticleInput; + SaveDiscoverArticleResult: ResolversParentTypes['SaveDiscoverArticleError'] | ResolversParentTypes['SaveDiscoverArticleSuccess']; + SaveDiscoverArticleSuccess: SaveDiscoverArticleSuccess; SaveError: SaveError; SaveFileInput: SaveFileInput; SaveFilterError: SaveFilterError; @@ -4515,6 +4829,20 @@ export type SanitizeDirectiveArgs = { export type SanitizeDirectiveResolver = DirectiveResolverFn; +export type AddDiscoverFeedErrorResolvers = { + errorCodes?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type AddDiscoverFeedResultResolvers = { + __resolveType: TypeResolveFn<'AddDiscoverFeedError' | 'AddDiscoverFeedSuccess', ParentType, ContextType>; +}; + +export type AddDiscoverFeedSuccessResolvers = { + feed?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}; + export type AddPopularReadErrorResolvers = { errorCodes?: Resolver, ParentType, ContextType>; __isTypeOf?: IsTypeOfResolverFn; @@ -4838,6 +5166,34 @@ export type DeleteAccountSuccessResolvers; }; +export type DeleteDiscoverArticleErrorResolvers = { + errorCodes?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type DeleteDiscoverArticleResultResolvers = { + __resolveType: TypeResolveFn<'DeleteDiscoverArticleError' | 'DeleteDiscoverArticleSuccess', ParentType, ContextType>; +}; + +export type DeleteDiscoverArticleSuccessResolvers = { + id?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type DeleteDiscoverFeedErrorResolvers = { + errorCodes?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type DeleteDiscoverFeedResultResolvers = { + __resolveType: TypeResolveFn<'DeleteDiscoverFeedError' | 'DeleteDiscoverFeedSuccess', ParentType, ContextType>; +}; + +export type DeleteDiscoverFeedSuccessResolvers = { + id?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}; + export type DeleteFilterErrorResolvers = { errorCodes?: Resolver, ParentType, ContextType>; __isTypeOf?: IsTypeOfResolverFn; @@ -4999,6 +5355,67 @@ export type DeviceTokensSuccessResolvers; }; +export type DiscoverFeedResolvers = { + description?: Resolver, ParentType, ContextType>; + id?: Resolver; + image?: Resolver, ParentType, ContextType>; + link?: Resolver; + title?: Resolver; + type?: Resolver; + visibleName?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type DiscoverFeedArticleResolvers = { + author?: Resolver, ParentType, ContextType>; + description?: Resolver; + feed?: Resolver; + id?: Resolver; + image?: Resolver, ParentType, ContextType>; + publishedDate?: Resolver, ParentType, ContextType>; + savedId?: Resolver, ParentType, ContextType>; + savedLinkUrl?: Resolver, ParentType, ContextType>; + siteName?: Resolver, ParentType, ContextType>; + slug?: Resolver; + title?: Resolver; + url?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type DiscoverFeedErrorResolvers = { + errorCodes?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type DiscoverFeedResultResolvers = { + __resolveType: TypeResolveFn<'DiscoverFeedError' | 'DiscoverFeedSuccess', ParentType, ContextType>; +}; + +export type DiscoverFeedSuccessResolvers = { + feeds?: Resolver>, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type DiscoverTopicResolvers = { + description?: Resolver; + name?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type EditDiscoverFeedErrorResolvers = { + errorCodes?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type EditDiscoverFeedResultResolvers = { + __resolveType: TypeResolveFn<'EditDiscoverFeedError' | 'EditDiscoverFeedSuccess', ParentType, ContextType>; +}; + +export type EditDiscoverFeedSuccessResolvers = { + id?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}; + export type EmptyTrashErrorResolvers = { errorCodes?: Resolver, ParentType, ContextType>; __isTypeOf?: IsTypeOfResolverFn; @@ -5151,6 +5568,35 @@ export type GenerateApiKeySuccessResolvers; }; +export type GetDiscoverFeedArticleErrorResolvers = { + errorCodes?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type GetDiscoverFeedArticleResultsResolvers = { + __resolveType: TypeResolveFn<'GetDiscoverFeedArticleError' | 'GetDiscoverFeedArticleSuccess', ParentType, ContextType>; +}; + +export type GetDiscoverFeedArticleSuccessResolvers = { + discoverArticles?: Resolver>>, ParentType, ContextType>; + pageInfo?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type GetDiscoverTopicErrorResolvers = { + errorCodes?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type GetDiscoverTopicResultsResolvers = { + __resolveType: TypeResolveFn<'GetDiscoverTopicError' | 'GetDiscoverTopicSuccess', ParentType, ContextType>; +}; + +export type GetDiscoverTopicSuccessResolvers = { + discoverTopics?: Resolver>, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + export type GetFollowersErrorResolvers = { errorCodes?: Resolver, ParentType, ContextType>; __isTypeOf?: IsTypeOfResolverFn; @@ -5482,6 +5928,7 @@ export type MoveToFolderSuccessResolvers = { + addDiscoverFeed?: Resolver>; addPopularRead?: Resolver>; bulkAction?: Resolver>; createArticle?: Resolver>; @@ -5491,6 +5938,8 @@ export type MutationResolvers>; createNewsletterEmail?: Resolver>; deleteAccount?: Resolver>; + deleteDiscoverArticle?: Resolver>; + deleteDiscoverFeed?: Resolver>; deleteFilter?: Resolver>; deleteHighlight?: Resolver>; deleteIntegration?: Resolver>; @@ -5498,6 +5947,7 @@ export type MutationResolvers>; deleteRule?: Resolver>; deleteWebhook?: Resolver>; + editDiscoverFeed?: Resolver>; emptyTrash?: Resolver; fetchContent?: Resolver>; generateApiKey?: Resolver>; @@ -5518,6 +5968,7 @@ export type MutationResolvers>; revokeApiKey?: Resolver>; saveArticleReadingProgress?: Resolver>; + saveDiscoverArticle?: Resolver>; saveFile?: Resolver>; saveFilter?: Resolver>; savePage?: Resolver>; @@ -5628,8 +6079,11 @@ export type QueryResolvers>; articleSavingRequest?: Resolver>; deviceTokens?: Resolver; + discoverFeeds?: Resolver; + discoverTopics?: Resolver; feeds?: Resolver>; filters?: Resolver; + getDiscoverFeedArticles?: Resolver>; getUserPersonalization?: Resolver; groups?: Resolver; hello?: Resolver, ParentType, ContextType>; @@ -5864,6 +6318,21 @@ export type SaveArticleReadingProgressSuccessResolvers; }; +export type SaveDiscoverArticleErrorResolvers = { + errorCodes?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + +export type SaveDiscoverArticleResultResolvers = { + __resolveType: TypeResolveFn<'SaveDiscoverArticleError' | 'SaveDiscoverArticleSuccess', ParentType, ContextType>; +}; + +export type SaveDiscoverArticleSuccessResolvers = { + saveId?: Resolver; + url?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}; + export type SaveErrorResolvers = { errorCodes?: Resolver, ParentType, ContextType>; message?: Resolver, ParentType, ContextType>; @@ -6596,6 +7065,9 @@ export type WebhooksSuccessResolvers = { + AddDiscoverFeedError?: AddDiscoverFeedErrorResolvers; + AddDiscoverFeedResult?: AddDiscoverFeedResultResolvers; + AddDiscoverFeedSuccess?: AddDiscoverFeedSuccessResolvers; AddPopularReadError?: AddPopularReadErrorResolvers; AddPopularReadResult?: AddPopularReadResultResolvers; AddPopularReadSuccess?: AddPopularReadSuccessResolvers; @@ -6652,6 +7124,12 @@ export type Resolvers = { DeleteAccountError?: DeleteAccountErrorResolvers; DeleteAccountResult?: DeleteAccountResultResolvers; DeleteAccountSuccess?: DeleteAccountSuccessResolvers; + DeleteDiscoverArticleError?: DeleteDiscoverArticleErrorResolvers; + DeleteDiscoverArticleResult?: DeleteDiscoverArticleResultResolvers; + DeleteDiscoverArticleSuccess?: DeleteDiscoverArticleSuccessResolvers; + DeleteDiscoverFeedError?: DeleteDiscoverFeedErrorResolvers; + DeleteDiscoverFeedResult?: DeleteDiscoverFeedResultResolvers; + DeleteDiscoverFeedSuccess?: DeleteDiscoverFeedSuccessResolvers; DeleteFilterError?: DeleteFilterErrorResolvers; DeleteFilterResult?: DeleteFilterResultResolvers; DeleteFilterSuccess?: DeleteFilterSuccessResolvers; @@ -6686,6 +7164,15 @@ export type Resolvers = { DeviceTokensError?: DeviceTokensErrorResolvers; DeviceTokensResult?: DeviceTokensResultResolvers; DeviceTokensSuccess?: DeviceTokensSuccessResolvers; + DiscoverFeed?: DiscoverFeedResolvers; + DiscoverFeedArticle?: DiscoverFeedArticleResolvers; + DiscoverFeedError?: DiscoverFeedErrorResolvers; + DiscoverFeedResult?: DiscoverFeedResultResolvers; + DiscoverFeedSuccess?: DiscoverFeedSuccessResolvers; + DiscoverTopic?: DiscoverTopicResolvers; + EditDiscoverFeedError?: EditDiscoverFeedErrorResolvers; + EditDiscoverFeedResult?: EditDiscoverFeedResultResolvers; + EditDiscoverFeedSuccess?: EditDiscoverFeedSuccessResolvers; EmptyTrashError?: EmptyTrashErrorResolvers; EmptyTrashResult?: EmptyTrashResultResolvers; EmptyTrashSuccess?: EmptyTrashSuccessResolvers; @@ -6710,6 +7197,12 @@ export type Resolvers = { GenerateApiKeyError?: GenerateApiKeyErrorResolvers; GenerateApiKeyResult?: GenerateApiKeyResultResolvers; GenerateApiKeySuccess?: GenerateApiKeySuccessResolvers; + GetDiscoverFeedArticleError?: GetDiscoverFeedArticleErrorResolvers; + GetDiscoverFeedArticleResults?: GetDiscoverFeedArticleResultsResolvers; + GetDiscoverFeedArticleSuccess?: GetDiscoverFeedArticleSuccessResolvers; + GetDiscoverTopicError?: GetDiscoverTopicErrorResolvers; + GetDiscoverTopicResults?: GetDiscoverTopicResultsResolvers; + GetDiscoverTopicSuccess?: GetDiscoverTopicSuccessResolvers; GetFollowersError?: GetFollowersErrorResolvers; GetFollowersResult?: GetFollowersResultResolvers; GetFollowersSuccess?: GetFollowersSuccessResolvers; @@ -6816,6 +7309,9 @@ export type Resolvers = { SaveArticleReadingProgressError?: SaveArticleReadingProgressErrorResolvers; SaveArticleReadingProgressResult?: SaveArticleReadingProgressResultResolvers; SaveArticleReadingProgressSuccess?: SaveArticleReadingProgressSuccessResolvers; + SaveDiscoverArticleError?: SaveDiscoverArticleErrorResolvers; + SaveDiscoverArticleResult?: SaveDiscoverArticleResultResolvers; + SaveDiscoverArticleSuccess?: SaveDiscoverArticleSuccessResolvers; SaveError?: SaveErrorResolvers; SaveFilterError?: SaveFilterErrorResolvers; SaveFilterResult?: SaveFilterResultResolvers; diff --git a/packages/api/src/generated/schema.graphql b/packages/api/src/generated/schema.graphql index 5c2431d8a..aca440ad4 100644 --- a/packages/api/src/generated/schema.graphql +++ b/packages/api/src/generated/schema.graphql @@ -1,5 +1,26 @@ directive @sanitize(allowedTags: [String], maxLength: Int, minLength: Int, pattern: String) on INPUT_FIELD_DEFINITION +type AddDiscoverFeedError { + errorCodes: [AddDiscoverFeedErrorCode!]! +} + +enum AddDiscoverFeedErrorCode { + BAD_REQUEST + CONFLICT + NOT_FOUND + UNAUTHORIZED +} + +input AddDiscoverFeedInput { + url: String! +} + +union AddDiscoverFeedResult = AddDiscoverFeedError | AddDiscoverFeedSuccess + +type AddDiscoverFeedSuccess { + feed: DiscoverFeed! +} + type AddPopularReadError { errorCodes: [AddPopularReadErrorCode!]! } @@ -462,6 +483,47 @@ type DeleteAccountSuccess { userID: ID! } +type DeleteDiscoverArticleError { + errorCodes: [DeleteDiscoverArticleErrorCode!]! +} + +enum DeleteDiscoverArticleErrorCode { + BAD_REQUEST + NOT_FOUND + UNAUTHORIZED +} + +input DeleteDiscoverArticleInput { + discoverArticleId: ID! +} + +union DeleteDiscoverArticleResult = DeleteDiscoverArticleError | DeleteDiscoverArticleSuccess + +type DeleteDiscoverArticleSuccess { + id: ID! +} + +type DeleteDiscoverFeedError { + errorCodes: [DeleteDiscoverFeedErrorCode!]! +} + +enum DeleteDiscoverFeedErrorCode { + BAD_REQUEST + CONFLICT + NOT_FOUND + UNAUTHORIZED +} + +input DeleteDiscoverFeedInput { + feedId: ID! +} + +union DeleteDiscoverFeedResult = DeleteDiscoverFeedError | DeleteDiscoverFeedSuccess + +type DeleteDiscoverFeedSuccess { + id: String! +} + type DeleteFilterError { errorCodes: [DeleteFilterErrorCode!]! } @@ -658,6 +720,72 @@ type EmptyTrashSuccess { success: Boolean } +type DiscoverFeed { + description: String + id: ID! + image: String + link: String! + title: String! + type: String! + visibleName: String +} + +type DiscoverFeedArticle { + author: String + description: String! + feed: String! + id: ID! + image: String + publishedDate: Date + savedId: String + savedLinkUrl: String + siteName: String + slug: String! + title: String! + url: String! +} + +type DiscoverFeedError { + errorCodes: [DiscoverFeedErrorCode!]! +} + +enum DiscoverFeedErrorCode { + BAD_REQUEST + UNAUTHORIZED +} + +union DiscoverFeedResult = DiscoverFeedError | DiscoverFeedSuccess + +type DiscoverFeedSuccess { + feeds: [DiscoverFeed]! +} + +type DiscoverTopic { + description: String! + name: String! +} + +type EditDiscoverFeedError { + errorCodes: [EditDiscoverFeedErrorCode!]! +} + +enum EditDiscoverFeedErrorCode { + BAD_REQUEST + NOT_FOUND + UNAUTHORIZED +} + +input EditDiscoverFeedInput { + feedId: ID! + name: String! +} + +union EditDiscoverFeedResult = EditDiscoverFeedError | EditDiscoverFeedSuccess + +type EditDiscoverFeedSuccess { + id: ID! +} + type Feature { createdAt: Date! expiresAt: Date @@ -808,6 +936,37 @@ type GenerateApiKeySuccess { apiKey: ApiKey! } +type GetDiscoverFeedArticleError { + errorCodes: [GetDiscoverFeedArticleErrorCode!]! +} + +enum GetDiscoverFeedArticleErrorCode { + BAD_REQUEST + NOT_FOUND + UNAUTHORIZED +} + +union GetDiscoverFeedArticleResults = GetDiscoverFeedArticleError | GetDiscoverFeedArticleSuccess + +type GetDiscoverFeedArticleSuccess { + discoverArticles: [DiscoverFeedArticle] + pageInfo: PageInfo! +} + +type GetDiscoverTopicError { + errorCodes: [GetDiscoverTopicErrorCode!]! +} + +enum GetDiscoverTopicErrorCode { + UNAUTHORIZED +} + +union GetDiscoverTopicResults = GetDiscoverTopicError | GetDiscoverTopicSuccess + +type GetDiscoverTopicSuccess { + discoverTopics: [DiscoverTopic!] +} + type GetFollowersError { errorCodes: [GetFollowersErrorCode!]! } @@ -1211,6 +1370,7 @@ type MoveToFolderSuccess { } type Mutation { + addDiscoverFeed(input: AddDiscoverFeedInput!): AddDiscoverFeedResult! addPopularRead(name: String!): AddPopularReadResult! bulkAction(action: BulkActionType!, arguments: JSON, async: Boolean, expectedCount: Int, labelIds: [ID!], query: String!): BulkActionResult! createArticle(input: CreateArticleInput!): CreateArticleResult! @@ -1220,6 +1380,8 @@ type Mutation { createLabel(input: CreateLabelInput!): CreateLabelResult! createNewsletterEmail(input: CreateNewsletterEmailInput): CreateNewsletterEmailResult! deleteAccount(userID: ID!): DeleteAccountResult! + deleteDiscoverArticle(input: DeleteDiscoverArticleInput!): DeleteDiscoverArticleResult! + deleteDiscoverFeed(input: DeleteDiscoverFeedInput!): DeleteDiscoverFeedResult! deleteFilter(id: ID!): DeleteFilterResult! deleteHighlight(highlightId: ID!): DeleteHighlightResult! deleteIntegration(id: ID!): DeleteIntegrationResult! @@ -1227,6 +1389,7 @@ type Mutation { deleteNewsletterEmail(newsletterEmailId: ID!): DeleteNewsletterEmailResult! deleteRule(id: ID!): DeleteRuleResult! deleteWebhook(id: ID!): DeleteWebhookResult! + editDiscoverFeed(input: EditDiscoverFeedInput!): EditDiscoverFeedResult! emptyTrash: EmptyTrashResult! fetchContent(id: ID!): FetchContentResult! generateApiKey(input: GenerateApiKeyInput!): GenerateApiKeyResult! @@ -1247,6 +1410,7 @@ type Mutation { reportItem(input: ReportItemInput!): ReportItemResult! revokeApiKey(id: ID!): RevokeApiKeyResult! saveArticleReadingProgress(input: SaveArticleReadingProgressInput!): SaveArticleReadingProgressResult! + saveDiscoverArticle(input: SaveDiscoverArticleInput!): SaveDiscoverArticleResult! saveFile(input: SaveFileInput!): SaveResult! saveFilter(input: SaveFilterInput!): SaveFilterResult! savePage(input: SavePageInput!): SaveResult! @@ -1402,8 +1566,11 @@ type Query { article(format: String, slug: String!, username: String!): ArticleResult! articleSavingRequest(id: ID, url: String): ArticleSavingRequestResult! deviceTokens: DeviceTokensResult! + discoverFeeds: DiscoverFeedResult! + discoverTopics: GetDiscoverTopicResults! feeds(input: FeedsInput!): FeedsResult! filters: FiltersResult! + getDiscoverFeedArticles(after: String, discoverTopicId: String!, feedId: ID, first: Int): GetDiscoverFeedArticleResults! getUserPersonalization: GetUserPersonalizationResult! groups: GroupsResult! hello: String @@ -1703,6 +1870,29 @@ type SaveArticleReadingProgressSuccess { updatedArticle: Article! } +type SaveDiscoverArticleError { + errorCodes: [SaveDiscoverArticleErrorCode!]! +} + +enum SaveDiscoverArticleErrorCode { + BAD_REQUEST + NOT_FOUND + UNAUTHORIZED +} + +input SaveDiscoverArticleInput { + discoverArticleId: ID! + locale: String + timezone: String +} + +union SaveDiscoverArticleResult = SaveDiscoverArticleError | SaveDiscoverArticleSuccess + +type SaveDiscoverArticleSuccess { + saveId: String! + url: String! +} + type SaveError { errorCodes: [SaveErrorCode!]! message: String diff --git a/packages/api/src/pubsub.ts b/packages/api/src/pubsub.ts index ea1bcf987..d7ef57fc7 100644 --- a/packages/api/src/pubsub.ts +++ b/packages/api/src/pubsub.ts @@ -34,64 +34,64 @@ export const createPubSubClient = (): PubsubClient => { userId: string, email: string, name: string, - username: string + username: string, ): Promise => { return publish( 'userCreated', - Buffer.from(JSON.stringify({ userId, email, name, username })) + Buffer.from(JSON.stringify({ userId, email, name, username })), ) }, entityCreated: ( type: EntityType, data: T, - userId: string + userId: string, ): Promise => { const cleanData = deepDelete( - data as T & Record, - [...fieldsToDelete] + data as T & Record<(typeof fieldsToDelete)[number], unknown>, + [...fieldsToDelete], ) return publish( 'entityCreated', - Buffer.from(JSON.stringify({ type, userId, ...cleanData })) + Buffer.from(JSON.stringify({ type, userId, ...cleanData })), ) }, entityUpdated: ( type: EntityType, data: T, - userId: string + userId: string, ): Promise => { const cleanData = deepDelete( - data as T & Record, - [...fieldsToDelete] + data as T & Record<(typeof fieldsToDelete)[number], unknown>, + [...fieldsToDelete], ) return publish( 'entityUpdated', - Buffer.from(JSON.stringify({ type, userId, ...cleanData })) + Buffer.from(JSON.stringify({ type, userId, ...cleanData })), ) }, entityDeleted: ( type: EntityType, id: string, - userId: string + userId: string, ): Promise => { return publish( 'entityDeleted', - Buffer.from(JSON.stringify({ type, id, userId })) + Buffer.from(JSON.stringify({ type, id, userId })), ) }, reportSubmitted: ( submitterId: string, itemUrl: string, reportType: ReportType[], - reportComment: string + reportComment: string, ): Promise => { return publish( 'reportSubmitted', Buffer.from( - JSON.stringify({ submitterId, itemUrl, reportType, reportComment }) - ) + JSON.stringify({ submitterId, itemUrl, reportType, reportComment }), + ), ) }, } @@ -101,6 +101,7 @@ export enum EntityType { PAGE = 'page', HIGHLIGHT = 'highlight', LABEL = 'label', + RSS_FEED = 'feed', } export interface PubsubClient { @@ -108,7 +109,7 @@ export interface PubsubClient { userId: string, email: string, name: string, - username: string + username: string, ) => Promise entityCreated: (type: EntityType, data: T, userId: string) => Promise entityUpdated: (type: EntityType, data: T, userId: string) => Promise @@ -117,7 +118,7 @@ export interface PubsubClient { submitterId: string | undefined, itemUrl: string, reportType: ReportType[], - reportComment: string + reportComment: string, ): Promise } @@ -139,7 +140,7 @@ const expired = (body: PubSubRequestBody): boolean => { } export const readPushSubscription = ( - req: express.Request + req: express.Request, ): { message: string | undefined; expired: boolean } => { if (req.query.token !== process.env.PUBSUB_VERIFICATION_TOKEN) { logger.info('query does not include valid pubsub token') diff --git a/packages/api/src/repository/index.ts b/packages/api/src/repository/index.ts index 973e09434..67b23df13 100644 --- a/packages/api/src/repository/index.ts +++ b/packages/api/src/repository/index.ts @@ -1,19 +1,27 @@ import * as httpContext from 'express-http-context2' -import { EntityManager, EntityTarget, QueryBuilder, Repository } from 'typeorm' +import { + EntityManager, + EntityTarget, + ObjectLiteral, + QueryBuilder, + Repository, +} from 'typeorm' import { appDataSource } from '../data_source' import { Claims } from '../resolvers/types' import { SetClaimsRole } from '../utils/dictionary' -export const getColumns = (repository: Repository): (keyof T)[] => { +export const getColumns = ( + repository: Repository, +): (keyof T)[] => { return repository.metadata.columns.map( - (col) => col.propertyName + (col) => col.propertyName, ) as (keyof T)[] } export const setClaims = async ( manager: EntityManager, uid = '00000000-0000-0000-0000-000000000000', - userRole = 'user' + userRole = 'user', ): Promise => { const dbRole = userRole === SetClaimsRole.ADMIN ? 'omnivore_admin' : 'omnivore_user' @@ -27,7 +35,7 @@ export const authTrx = async ( fn: (manager: EntityManager) => Promise, em = appDataSource.manager, uid?: string, - userRole?: string + userRole?: string, ): Promise => { // if uid and dbRole are not passed in, then get them from the claims if (!uid && !userRole) { @@ -42,11 +50,15 @@ export const authTrx = async ( }) } -export const getRepository = (entity: EntityTarget) => { +export const getRepository = ( + entity: EntityTarget, +) => { return appDataSource.getRepository(entity) } -export const queryBuilderToRawSql = (q: QueryBuilder): string => { +export const queryBuilderToRawSql = ( + q: QueryBuilder, +): string => { const queryAndParams = q.getQueryAndParameters() let sql = queryAndParams[0] const params = queryAndParams[1] @@ -73,7 +85,7 @@ export const queryBuilderToRawSql = (q: QueryBuilder): string => { } }) .join(',') + - "}'" + "}'", ) } else if (value instanceof Date) { sql = sql.replace(`$${index + 1}`, `'${value.toISOString()}'`) @@ -87,7 +99,7 @@ export const queryBuilderToRawSql = (q: QueryBuilder): string => { } export const valuesToRawSql = ( - values: Record + values: Record, ): string => { let sql = '' diff --git a/packages/api/src/resolvers/discover_feeds/add.ts b/packages/api/src/resolvers/discover_feeds/add.ts new file mode 100644 index 000000000..bbbfbdfdf --- /dev/null +++ b/packages/api/src/resolvers/discover_feeds/add.ts @@ -0,0 +1,199 @@ +import { authorized } from '../../utils/helpers' +import { + AddDiscoverFeedError, + AddDiscoverFeedErrorCode, + AddDiscoverFeedSuccess, + DiscoverFeed, + MutationAddDiscoverFeedArgs, +} from '../../generated/graphql' +import { appDataSource } from '../../data_source' +import { QueryRunner } from 'typeorm' +import axios from 'axios' +import { RSS_PARSER_CONFIG } from '../../utils/parser' +import { XMLParser } from 'fast-xml-parser' +import { EntityType } from '../../pubsub' +import { v4 } from 'uuid' + +const parser = new XMLParser({ + ignoreAttributes: false, + parseTagValue: true, + ignoreDeclaration: false, + ignorePiTags: false, +}) + +type DiscoverFeedRows = { + rows: DiscoverFeed[] +} + +const extractAtomData = ( + url: string, + feed: { + title: string + subtitle?: string + icon?: string + }, +): Partial => ({ + description: feed.subtitle ?? '', + title: feed.title ?? url, + image: feed.icon, + link: url, + type: 'atom', +}) + +const extractRssData = ( + url: string, + parsedXml: { + channel: { + title: string + description?: string + ['sy:updateFrequency']: number + } + image: { url: string } + }, +): Partial => ({ + description: parsedXml.channel?.description ?? '', + title: parsedXml.channel.title ?? url, + image: parsedXml.image?.url, + link: url, + type: 'rss', +}) + +const handleExistingSubscription = async ( + queryRunner: QueryRunner, + feed: DiscoverFeed, + userId: string, +): Promise => { + // Add to existing, otherwise conflict. + const existingSubscription = await queryRunner.query( + 'SELECT * FROM omnivore.discover_feed_subscription WHERE user_id = $1 and feed_id = $2', + [userId, feed.id], + ) + + if (existingSubscription.rows > 1) { + await queryRunner.release() + return { + __typename: 'AddDiscoverFeedError', + errorCodes: [AddDiscoverFeedErrorCode.Conflict], + } + } + + const addSubscription = await queryRunner.query( + 'INSERT INTO omnivore.discover_feed_subscription(feed_id, user_id) VALUES($1, $2)', + [feed.id, userId], + ) + + return { + __typename: 'AddDiscoverFeedSuccess', + feed, + } +} + +const addNewSubscription = async ( + queryRunner: QueryRunner, + url: string, + userId: string, +): Promise => { + // First things first, we need to validate that this is an actual RSS or ATOM feed. + const response = await axios.get(url, RSS_PARSER_CONFIG) + const content = response.data + + const contentType = response.headers['content-type'] + const isXML = + contentType?.includes('text/rss+xml') || + contentType?.includes('text/atom+xml') || + contentType?.includes('application/xml') + + if (!isXML) { + return { + __typename: 'AddDiscoverFeedError', + errorCodes: [AddDiscoverFeedErrorCode.BadRequest], + } + } + const parsedFeed = parser.parse(content) + + if (!parsedFeed?.rss && !parsedFeed['rdf:RDF'] && !parsedFeed['feed']) { + return { + __typename: 'AddDiscoverFeedError', + errorCodes: [AddDiscoverFeedErrorCode.BadRequest], + } + } + + const feed = + parsedFeed?.rss || parsedFeed['rdf:RDF'] + ? extractRssData(url, parsedFeed.rss || parsedFeed['rdf:RDF']) + : extractAtomData(url, parsedFeed.feed) + + if (!feed.title) { + return { + __typename: 'AddDiscoverFeedError', + errorCodes: [AddDiscoverFeedErrorCode.BadRequest], + } + } + + const discoverFeedId = v4() + await queryRunner.query( + 'INSERT INTO omnivore.discover_feed(id, title, link, image, type, description) VALUES($1, $2, $3, $4, $5, $6)', + [ + discoverFeedId, + feed.title, + feed.link, + feed.image, + feed.type, + feed.description, + ], + ) + + await queryRunner.query( + 'INSERT INTO omnivore.discover_feed_subscription(feed_id, user_id) VALUES($2, $1)', + [userId, discoverFeedId], + ) + + await queryRunner.release() + return { + __typename: 'AddDiscoverFeedSuccess', + feed: { ...feed, id: discoverFeedId } as DiscoverFeed, + } +} + +export const addDiscoverFeedResolver = authorized< + AddDiscoverFeedSuccess, + AddDiscoverFeedError, + MutationAddDiscoverFeedArgs +>(async (_, { input: { url } }, { uid, log, pubsub }) => { + try { + const queryRunner = (await appDataSource + .createQueryRunner() + .connect()) as QueryRunner + + const existingFeed = (await queryRunner.query( + 'SELECT id from omnivore.discover_feed where link = $1', + [url], + )) as DiscoverFeedRows + + if (existingFeed.rows.length > 0) { + return await handleExistingSubscription( + queryRunner, + existingFeed.rows[0], + uid, + ) + } + + const result = await addNewSubscription(queryRunner, url, uid) + if (result.__typename == 'AddDiscoverFeedSuccess') { + await pubsub.entityCreated( + EntityType.RSS_FEED, + { feed: result.feed }, + uid, + ) + } + + return result + } catch (error) { + log.error('Error Getting Discover Articles', error) + + return { + __typename: 'AddDiscoverFeedError', + errorCodes: [AddDiscoverFeedErrorCode.Unauthorized], + } + } +}) diff --git a/packages/api/src/resolvers/discover_feeds/articles/add.ts b/packages/api/src/resolvers/discover_feeds/articles/add.ts new file mode 100644 index 000000000..7048d7cf2 --- /dev/null +++ b/packages/api/src/resolvers/discover_feeds/articles/add.ts @@ -0,0 +1,97 @@ +import { authorized } from '../../../utils/helpers' +import { + InputMaybe, + MutationSaveDiscoverArticleArgs, + SaveDiscoverArticleError, + SaveDiscoverArticleErrorCode, + SaveDiscoverArticleSuccess, + SaveSuccess, +} from '../../../generated/graphql' +import { appDataSource } from '../../../data_source' +import { QueryRunner } from 'typeorm' +import { userRepository } from '../../../repository/user' +import { saveUrl } from '../../../services/save_url' +import { v4 } from 'uuid' + +export const saveDiscoverArticleResolver = authorized< + SaveDiscoverArticleSuccess, + SaveDiscoverArticleError, + MutationSaveDiscoverArticleArgs +>( + async ( + _, + { input: { discoverArticleId, timezone, locale } }, + { uid, log }, + ) => { + try { + const queryRunner = (await appDataSource + .createQueryRunner() + .connect()) as QueryRunner + + const user = await userRepository.findById(uid) + if (!user) { + return { + __typename: 'SaveDiscoverArticleError', + errorCodes: [SaveDiscoverArticleErrorCode.Unauthorized], + } + } + + const { rows: discoverArticles } = (await queryRunner.query( + `SELECT url FROM omnivore.discover_feed_articles WHERE id=$1`, + [discoverArticleId], + )) as { + rows: { + url: string + }[] + } + + if (discoverArticles.length != 1) { + return { + __typename: 'SaveDiscoverArticleError', + errorCodes: [SaveDiscoverArticleErrorCode.NotFound], + } + } + + const url = discoverArticles[0].url + const savedArticle = await saveUrl( + { + url, + source: 'add-link', + clientRequestId: v4(), + locale: locale as InputMaybe, + timezone: timezone as InputMaybe, + }, + user, + ) + + if (savedArticle.__typename == 'SaveError') { + return { + __typename: 'SaveDiscoverArticleError', + errorCodes: [SaveDiscoverArticleErrorCode.BadRequest], + } + } + + const saveSuccess = savedArticle as SaveSuccess + + await queryRunner.query( + `insert into omnivore.discover_feed_save_link (discover_article_id, user_id, article_save_id, article_save_url) VALUES ($1, $2, $3, $4) ON CONFLICT ON CONSTRAINT user_discover_feed_link DO UPDATE SET (article_save_id, article_save_url, deleted) = ($3, $4, false);`, + [discoverArticleId, uid, saveSuccess.clientRequestId, saveSuccess.url], + ) + + await queryRunner.release() + + return { + __typename: 'SaveDiscoverArticleSuccess', + url: saveSuccess.url, + saveId: saveSuccess.clientRequestId, + } + } catch (error) { + log.error('Error Saving Article', error) + + return { + __typename: 'SaveDiscoverArticleError', + errorCodes: [SaveDiscoverArticleErrorCode.Unauthorized], + } + } + }, +) diff --git a/packages/api/src/resolvers/discover_feeds/articles/delete.ts b/packages/api/src/resolvers/discover_feeds/articles/delete.ts new file mode 100644 index 000000000..4a3a537d9 --- /dev/null +++ b/packages/api/src/resolvers/discover_feeds/articles/delete.ts @@ -0,0 +1,75 @@ +import { authorized } from '../../../utils/helpers' +import { + DeleteDiscoverArticleError, + DeleteDiscoverArticleErrorCode, + DeleteDiscoverArticleSuccess, + MutationDeleteDiscoverArticleArgs, +} from '../../../generated/graphql' +import { appDataSource } from '../../../data_source' +import { QueryRunner } from 'typeorm' +import { userRepository } from '../../../repository/user' +import { updateLibraryItem } from '../../../services/library_item' +import { LibraryItemState } from '../../../entity/library_item' + +export const deleteDiscoverArticleResolver = authorized< + DeleteDiscoverArticleSuccess, + DeleteDiscoverArticleError, + MutationDeleteDiscoverArticleArgs +>(async (_, { input: { discoverArticleId } }, { uid, log, pubsub }) => { + try { + const queryRunner = (await appDataSource + .createQueryRunner() + .connect()) as QueryRunner + + const user = await userRepository.findById(uid) + if (!user) { + return { + __typename: 'DeleteDiscoverArticleError', + errorCodes: [DeleteDiscoverArticleErrorCode.Unauthorized], + } + } + + const { rows: discoverArticles } = (await queryRunner.query( + `SELECT article_save_id FROM omnivore.discover_feed_save_link WHERE discover_article_id=$1 and user_id=$2`, + [discoverArticleId, uid], + )) as { + rows: { article_save_id: string }[] + } + + if (discoverArticles.length != 1) { + return { + __typename: 'DeleteDiscoverArticleError', + errorCodes: [DeleteDiscoverArticleErrorCode.NotFound], + } + } + + await queryRunner.query( + `UPDATE omnivore.discover_feed_save_link set deleted = true WHERE discover_article_id=$1 and user_id=$2`, + [discoverArticleId, uid], + ) + + await updateLibraryItem( + discoverArticles[0].article_save_id, + { + state: LibraryItemState.Deleted, + deletedAt: new Date(), + }, + uid, + pubsub, + ) + + await queryRunner.release() + + return { + __typename: 'DeleteDiscoverArticleSuccess', + id: discoverArticleId, + } + } catch (error) { + log.error('Error Deleting Article', error) + + return { + __typename: 'DeleteDiscoverArticleError', + errorCodes: [DeleteDiscoverArticleErrorCode.Unauthorized], + } + } +}) diff --git a/packages/api/src/resolvers/discover_feeds/articles/get.ts b/packages/api/src/resolvers/discover_feeds/articles/get.ts new file mode 100644 index 000000000..4b89824a3 --- /dev/null +++ b/packages/api/src/resolvers/discover_feeds/articles/get.ts @@ -0,0 +1,201 @@ +import { authorized } from '../../../utils/helpers' +import { + GetDiscoverFeedArticleSuccess, + GetDiscoverFeedArticleError, + QueryGetDiscoverFeedArticlesArgs, + GetDiscoverFeedArticleErrorCode, +} from '../../../generated/graphql' +import { appDataSource } from '../../../data_source' +import { QueryRunner } from 'typeorm' + +const COMMUNITY_FEED_ID = '8217d320-aa5a-11ee-bbfe-a7cde356f524' + +type DiscoverFeedArticleDBRows = { + rows: { + id: string + feed: string + title: string + slug: string + url: string + author: string + image: string + published_at: Date + description: string + saves: number + article_save_id: string | undefined + article_save_url: string | undefined + }[] +} + +const getPopularTopics = ( + queryRunner: QueryRunner, + uid: string, + after: string, + amt: number, + feedId: string | null = null, +): Promise => { + const params = [uid, amt + 1, after] + if (feedId) { + params.push(feedId) + } + return queryRunner.query( + ` + SELECT id, title, feed_id as feed, slug, description, url, author, image, published_at, COALESCE(sl.count / (EXTRACT(EPOCH FROM (NOW() - published_at)) / 3600 / 24), 0) as popularity_score, article_save_id, article_save_url + FROM omnivore.omnivore.discover_feed_articles + LEFT JOIN (SELECT discover_article_id as article_id, count(*) as count FROM omnivore.discover_feed_save_link group by discover_article_id) sl on id=sl.article_id + LEFT JOIN (SELECT discover_article_id, article_save_id, article_save_url FROM omnivore.discover_feed_save_link WHERE user_id=$1 and deleted = false) su on id=su.discover_article_id + WHERE COALESCE(sl.count / (EXTRACT(EPOCH FROM (NOW() - published_at)) / 3600 / 24), 0) > 0.0 + AND (feed_id in (SELECT feed_id FROM omnivore.discover_feed_subscription WHERE user_id = $1) OR feed_id = '${COMMUNITY_FEED_ID}') ${ + feedId != null ? `AND feed_id = $4` : '' + } + ORDER BY popularity_score DESC + LIMIT $2 OFFSET $3 + `, + params, + ) as Promise +} + +const getAllTopics = ( + queryRunner: QueryRunner, + uid: string, + after: string, + amt: number, + feedId: string | null = null, +): Promise => { + const params = [uid, amt + 1, after] + if (feedId) { + params.push(feedId) + } + return queryRunner.query( + ` + SELECT id, title, feed_id as feed, slug, description, url, author, image, published_at, article_save_id, article_save_url + FROM omnivore.omnivore.discover_feed_articles + LEFT JOIN (SELECT discover_article_id, article_save_id, article_save_url FROM omnivore.discover_feed_save_link WHERE user_id=$1 and deleted = false) su on id=su.discover_article_id + WHERE (feed_id in (SELECT feed_id FROM omnivore.discover_feed_subscription WHERE user_id = $1) OR feed_id = '${COMMUNITY_FEED_ID}') + ${feedId != null ? `AND feed_id = $4` : ''} + ORDER BY published_at DESC + LIMIT $2 OFFSET $3 + `, + params, + ) as Promise +} + +const getTopicInformation = ( + queryRunner: QueryRunner, + discoverTopicId: string, + uid: string, + after: string, + amt: number, + feedId: string | null = null, +): Promise => { + const params = [uid, discoverTopicId, amt + 1, Number(after)] + if (feedId) { + params.push(feedId) + } + return queryRunner.query( + `SELECT id, title, feed_id as feed, slug, description, url, author, image, published_at, article_save_id, article_save_url + FROM omnivore.discover_feed_articles + INNER JOIN (SELECT discover_feed_article_id FROM omnivore.discover_feed_article_topic_link WHERE discover_topic_name=$2) topic on topic.discover_feed_article_id=id + LEFT JOIN (SELECT discover_article_id, article_save_id, article_save_url FROM omnivore.discover_feed_save_link WHERE user_id=$1 and deleted = false) su on id=su.discover_article_id + WHERE (feed_id in (SELECT feed_id FROM omnivore.discover_feed_subscription WHERE user_id = $1) OR feed_id = '${COMMUNITY_FEED_ID}') + ${feedId != null ? `AND feed_id = $5` : ''} + ORDER BY published_at DESC + LIMIT $3 OFFSET $4 + `, + params, + ) as Promise +} + +export const getDiscoverFeedArticlesResolver = authorized< + GetDiscoverFeedArticleSuccess, + GetDiscoverFeedArticleError, + QueryGetDiscoverFeedArticlesArgs +>(async (_, { discoverTopicId, feedId, first, after }, { uid, log }) => { + try { + const startCursor: string = after || '' + const firstAmnt = Math.min(first || 10, 100) // limit to 100 items + + const queryRunner = (await appDataSource + .createQueryRunner() + .connect()) as QueryRunner + + const { rows: topics } = (await queryRunner.query( + `SELECT * FROM "omnivore"."discover_topics" WHERE "name" = $1`, + [discoverTopicId], + )) as { rows: unknown[] } + + if (topics.length == 0) { + return { + __typename: 'GetDiscoverFeedArticleError', + errorCodes: [GetDiscoverFeedArticleErrorCode.Unauthorized], // TODO - no. + } + } + + let discoverArticles: DiscoverFeedArticleDBRows = { rows: [] } + if (discoverTopicId === 'Popular') { + discoverArticles = await getPopularTopics( + queryRunner, + uid, + startCursor, + firstAmnt, + feedId ?? null, + ) + } else if (discoverTopicId === 'All') { + discoverArticles = await getAllTopics( + queryRunner, + uid, + startCursor, + firstAmnt, + feedId ?? null, + ) + } else { + discoverArticles = await getTopicInformation( + queryRunner, + discoverTopicId, + uid, + startCursor, + firstAmnt, + feedId ?? null, + ) + } + + await queryRunner.release() + + return { + __typename: 'GetDiscoverFeedArticleSuccess', + discoverArticles: discoverArticles.rows.slice(0, firstAmnt).map((it) => ({ + author: it.author, + id: it.id, + feed: it.feed, + slug: it.slug, + publishedDate: it.published_at, + description: it.description, + url: it.url, + title: it.title, + image: it.image, + saves: it.saves, + savedLinkUrl: it.article_save_url, + savedId: it.article_save_id, + __typename: 'DiscoverFeedArticle', + siteName: it.url, + })), + pageInfo: { + endCursor: `${ + Number(startCursor) + + Math.min(discoverArticles.rows.length, firstAmnt) + }`, + hasNextPage: discoverArticles.rows.length > firstAmnt, + hasPreviousPage: Number(startCursor) != 0, + startCursor: Number(startCursor).toString(), + totalCount: Math.min(discoverArticles.rows.length, firstAmnt), + }, + } + } catch (error) { + log.error('Error Getting Discover Feed Articles', error) + + return { + __typename: 'GetDiscoverFeedArticleError', + errorCodes: [GetDiscoverFeedArticleErrorCode.Unauthorized], + } + } +}) diff --git a/packages/api/src/resolvers/discover_feeds/delete.ts b/packages/api/src/resolvers/discover_feeds/delete.ts new file mode 100644 index 000000000..3c69f2cff --- /dev/null +++ b/packages/api/src/resolvers/discover_feeds/delete.ts @@ -0,0 +1,58 @@ +import { authorized, getAbsoluteUrl } from '../../utils/helpers' +import { + DeleteDiscoverFeedError, + DeleteDiscoverFeedErrorCode, + DeleteDiscoverFeedSuccess, + MutationDeleteDiscoverFeedArgs, +} from '../../generated/graphql' +import { appDataSource } from '../../data_source' +import { QueryRunner } from 'typeorm' + +export const deleteDiscoverFeedsResolver = authorized< + DeleteDiscoverFeedSuccess, + DeleteDiscoverFeedError, + MutationDeleteDiscoverFeedArgs +>(async (_, { input: { feedId } }, { uid, log }) => { + try { + const queryRunner = (await appDataSource + .createQueryRunner() + .connect()) as QueryRunner + + // Ensure that it actually exists for the user. + const feeds = (await queryRunner.query( + `SELECT * FROM omnivore.discover_feed_subscription sub + WHERE sub.user_id = $1 and sub.feed_id = $2`, + [uid, feedId], + )) as { + rows: { + feed_id: string + }[] + } + + if (feeds.rows.length == 0) { + return { + __typename: 'DeleteDiscoverFeedError', + errorCodes: [DeleteDiscoverFeedErrorCode.NotFound], + } + } + + await queryRunner.query( + `DELETE FROM omnivore.discover_feed_subscription sub + WHERE sub.user_id = $1 and sub.feed_id = $2`, + [uid, feedId], + ) + + await queryRunner.release() + return { + __typename: 'DeleteDiscoverFeedSuccess', + id: feedId, + } + } catch (error) { + log.error('Error Getting Discover Feed Subscriptions', error) + + return { + __typename: 'DeleteDiscoverFeedError', + errorCodes: [DeleteDiscoverFeedErrorCode.Unauthorized], + } + } +}) diff --git a/packages/api/src/resolvers/discover_feeds/edit.ts b/packages/api/src/resolvers/discover_feeds/edit.ts new file mode 100644 index 000000000..1a039cdee --- /dev/null +++ b/packages/api/src/resolvers/discover_feeds/edit.ts @@ -0,0 +1,58 @@ +import { authorized } from '../../utils/helpers' +import { + EditDiscoverFeedError, + EditDiscoverFeedErrorCode, + EditDiscoverFeedSuccess, + MutationEditDiscoverFeedArgs, +} from '../../generated/graphql' +import { appDataSource } from '../../data_source' +import { QueryRunner } from 'typeorm' + +export const editDiscoverFeedsResolver = authorized< + EditDiscoverFeedSuccess, + EditDiscoverFeedError, + MutationEditDiscoverFeedArgs +>(async (_, { input: { feedId, name } }, { uid, log }) => { + try { + const queryRunner = (await appDataSource + .createQueryRunner() + .connect()) as QueryRunner + + // Ensure that it actually exists for the user. + const feeds = (await queryRunner.query( + `SELECT * FROM omnivore.discover_feed_subscription sub + WHERE sub.user_id = $1 and sub.feed_id = $2`, + [uid, feedId], + )) as { + rows: { + feed_id: string + }[] + } + + if (feeds.rows.length == 0) { + return { + __typename: 'EditDiscoverFeedError', + errorCodes: [EditDiscoverFeedErrorCode.NotFound], + } + } + + await queryRunner.query( + `UPDATE omnivore.discover_feed_subscription SET visible_name = $1 + WHERE user_id = $2 and feed_id = $3`, + [name, uid, feedId], + ) + + await queryRunner.release() + return { + __typename: 'EditDiscoverFeedSuccess', + id: feedId, + } + } catch (error) { + log.error('Error Updating Discover Feed Subscriptions', error) + + return { + __typename: 'EditDiscoverFeedError', + errorCodes: [EditDiscoverFeedErrorCode.Unauthorized], + } + } +}) diff --git a/packages/api/src/resolvers/discover_feeds/get.ts b/packages/api/src/resolvers/discover_feeds/get.ts new file mode 100644 index 000000000..089723ac5 --- /dev/null +++ b/packages/api/src/resolvers/discover_feeds/get.ts @@ -0,0 +1,42 @@ +import { authorized, getAbsoluteUrl } from '../../utils/helpers' +import { + DiscoverFeed, + DiscoverFeedError, + DiscoverFeedErrorCode, + DiscoverFeedSuccess, +} from '../../generated/graphql' +import { appDataSource } from '../../data_source' +import { QueryRunner } from 'typeorm' + +export const getDiscoverFeedsResolver = authorized< + DiscoverFeedSuccess, + DiscoverFeedError +>(async (_, _args, { uid, log }) => { + try { + const queryRunner = (await appDataSource + .createQueryRunner() + .connect()) as QueryRunner + + const existingFeed = (await queryRunner.query( + `SELECT *, COALESCE(visible_name, title) as "visibleName" FROM omnivore.discover_feed_subscription sub + INNER JOIN omnivore.discover_feed feed on sub.feed_id=id + WHERE sub.user_id = $1`, + [uid], + )) as { + rows: DiscoverFeed[] + } + + await queryRunner.release() + return { + __typename: 'DiscoverFeedSuccess', + feeds: existingFeed.rows || [], + } + } catch (error) { + log.error('Error Getting Discover Feed Subscriptions', error) + + return { + __typename: 'DiscoverFeedError', + errorCodes: [DiscoverFeedErrorCode.Unauthorized], + } + } +}) diff --git a/packages/api/src/resolvers/discover_feeds/index.ts b/packages/api/src/resolvers/discover_feeds/index.ts new file mode 100644 index 000000000..8a03d3148 --- /dev/null +++ b/packages/api/src/resolvers/discover_feeds/index.ts @@ -0,0 +1,7 @@ +export * from './add' +export * from './articles/get' +export * from './get' +export * from './articles/delete' +export * from './delete' +export * from './articles/add' +export * from './edit' diff --git a/packages/api/src/resolvers/function_resolvers.ts b/packages/api/src/resolvers/function_resolvers.ts index 6cff177ca..a07c02747 100644 --- a/packages/api/src/resolvers/function_resolvers.ts +++ b/packages/api/src/resolvers/function_resolvers.ts @@ -141,6 +141,15 @@ import { markEmailAsItemResolver, recentEmailsResolver } from './recent_emails' import { recentSearchesResolver } from './recent_searches' import { WithDataSourcesContext } from './types' import { updateEmailResolver } from './user' +import { + addDiscoverFeedResolver, + getDiscoverFeedsResolver, + getDiscoverFeedArticlesResolver, + saveDiscoverArticleResolver, + deleteDiscoverArticleResolver, + deleteDiscoverFeedsResolver, + editDiscoverFeedsResolver, +} from './discover_feeds' /* eslint-disable @typescript-eslint/naming-convention */ type ResultResolveType = { @@ -150,7 +159,7 @@ type ResultResolveType = { } const resultResolveTypeResolver = ( - resolverName: string + resolverName: string, ): ResultResolveType => ({ [`${resolverName}Result`]: { __resolveType: (obj) => @@ -230,12 +239,19 @@ export const functionResolvers = { updateSubscription: updateSubscriptionResolver, updateFilter: updateFilterResolver, updateEmail: updateEmailResolver, + saveDiscoverArticle: saveDiscoverArticleResolver, + deleteDiscoverArticle: deleteDiscoverArticleResolver, moveToFolder: moveToFolderResolver, updateNewsletterEmail: updateNewsletterEmailResolver, + addDiscoverFeed: addDiscoverFeedResolver, + deleteDiscoverFeed: deleteDiscoverFeedsResolver, + editDiscoverFeed: editDiscoverFeedsResolver, emptyTrash: emptyTrashResolver, }, Query: { me: getMeUserResolver, + getDiscoverFeedArticles: getDiscoverFeedArticlesResolver, + discoverFeeds: getDiscoverFeedsResolver, user: getUserResolver, users: getAllUsersResolver, validateUsername: validateUsernameResolver, @@ -271,7 +287,7 @@ export const functionResolvers = { async intercomHash( user: User, __: Record, - ctx: WithDataSourcesContext + ctx: WithDataSourcesContext, ) { if (env.intercom.secretKey) { const userIdentifier = user.id.toString() @@ -336,7 +352,7 @@ export const functionResolvers = { async labels( article: { id: string; labels?: Label[]; labelNames?: string[] | null }, _: unknown, - ctx: WithDataSourcesContext + ctx: WithDataSourcesContext, ) { if (article.labels) return article.labels @@ -361,7 +377,7 @@ export const functionResolvers = { createdByMe( highlight: { user: { id: string } }, __: unknown, - ctx: WithDataSourcesContext + ctx: WithDataSourcesContext, ) { return highlight.user.id === ctx.uid }, @@ -411,7 +427,7 @@ export const functionResolvers = { async labels( item: { id: string; labels?: Label[]; labelNames?: string[] | null }, _: unknown, - ctx: WithDataSourcesContext + ctx: WithDataSourcesContext, ) { if (item.labels) return item.labels @@ -428,14 +444,14 @@ export const functionResolvers = { recommenderNames?: string[] | null }, _: unknown, - ctx: WithDataSourcesContext + ctx: WithDataSourcesContext, ) { if (item.recommendations) return item.recommendations if (item.recommenderNames && item.recommenderNames.length > 0) { const recommendations = await findRecommendationsByLibraryItemId( item.id, - ctx.uid + ctx.uid, ) return recommendations.map(recommandationDataToRecommendation) } @@ -449,7 +465,7 @@ export const functionResolvers = { highlightAnnotations?: string[] | null }, _: unknown, - ctx: WithDataSourcesContext + ctx: WithDataSourcesContext, ) { if (item.highlights) return item.highlights diff --git a/packages/api/src/services/features.ts b/packages/api/src/services/features.ts index e0a9b337a..a5db42ad2 100644 --- a/packages/api/src/services/features.ts +++ b/packages/api/src/services/features.ts @@ -42,7 +42,7 @@ const optInUltraRealisticVoice = async (uid: string): Promise => { const MAX_USERS = 1500 // opt in to feature for the first 1500 users - const optedInFeatures = (await appDataSource.query( + const optedInFeatures: Feature[] = await appDataSource.query( `insert into omnivore.features (user_id, name, granted_at) select $1, $2, $3 from omnivore.features where name = $2 and granted_at is not null @@ -51,7 +51,7 @@ const optInUltraRealisticVoice = async (uid: string): Promise => { do update set granted_at = $3 returning *, granted_at as "grantedAt", created_at as "createdAt", updated_at as "updatedAt";`, [uid, FeatureName.UltraRealisticVoice, new Date(), MAX_USERS] - )) as Feature[] + ) // if no new features were created then user has exceeded max users if (optedInFeatures.length === 0) { diff --git a/packages/api/src/utils/parser.ts b/packages/api/src/utils/parser.ts index 54373baea..4a8b53440 100644 --- a/packages/api/src/utils/parser.ts +++ b/packages/api/src/utils/parser.ts @@ -1,6 +1,8 @@ /* eslint-disable @typescript-eslint/no-unsafe-member-access */ /* eslint-disable @typescript-eslint/no-unsafe-assignment */ /* eslint-disable @typescript-eslint/no-unused-vars */ +/* eslint-disable @typescript-eslint/no-base-to-string */ + import { preParseContent } from '@omnivore/content-handler' import { Readability } from '@omnivore/readability' import addressparser from 'addressparser' diff --git a/packages/content-handler/package.json b/packages/content-handler/package.json index 55ead0886..70cad1d8c 100644 --- a/packages/content-handler/package.json +++ b/packages/content-handler/package.json @@ -25,7 +25,6 @@ "chai": "^4.3.6", "chai-as-promised": "^7.1.1", "chai-string": "^1.5.0", - "eslint-plugin-prettier": "^4.0.0", "mocha": "^10.0.0", "nock": "^13.2.9" }, diff --git a/packages/content-handler/tsconfig.json b/packages/content-handler/tsconfig.json index aeb8d2c3a..16309de2e 100644 --- a/packages/content-handler/tsconfig.json +++ b/packages/content-handler/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@tsconfig/node14/tsconfig.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "declaration": true, diff --git a/packages/db/migrations/0153.do.add_discover_feeds.sql b/packages/db/migrations/0153.do.add_discover_feeds.sql new file mode 100755 index 000000000..5e2cf076c --- /dev/null +++ b/packages/db/migrations/0153.do.add_discover_feeds.sql @@ -0,0 +1,206 @@ +-- Type: DO +-- Name: add_discover_feed_tables +-- Description: Add Discover Feed Tables, including counts. + +CREATE TABLE omnivore.discover_feed( + id uuid PRIMARY KEY DEFAULT uuid_generate_v1mc(), + title text NOT NULL, + link text NOT NULL, + UNIQUE (link), + description text, + type varchar(4) NOT NULL, -- RSS or ATOM + freq integer NOT NULL DEFAULT 60, + image text +); + +INSERT INTO omnivore.discover_feed(id, title, link, type) VALUES('8217d320-aa5a-11ee-bbfe-a7cde356f524', 'OMNIVORE_COMMUNITY', 'OMNIVORE_COMMUNITY', 'COMM'); + +CREATE TABLE omnivore.discover_feed_subscription( + feed_id uuid NOT NULL REFERENCES omnivore.discover_feed(id) ON DELETE CASCADE, + user_id uuid NOT NULL REFERENCES omnivore.user(id) ON DELETE CASCADE, + visible_name text +); + +GRANT SELECT, INSERT ON omnivore.discover_feed to omnivore_user; +GRANT SELECT, INSERT, UPDATE, DELETE ON omnivore.discover_feed_subscription to omnivore_user; + +CREATE TABLE omnivore.discover_topics ( + name text PRIMARY KEY NOT NULL, + description text NOT NULL, + position INTEGER NOT NULL +); + +GRANT SELECT ON omnivore.discover_topics to omnivore_user; + +INSERT INTO omnivore.discover_topics(position, name, description) +VALUES (1, 'Popular', 'Stories that are popular on Omnivore right now...'); + +INSERT INTO omnivore.discover_topics(position, name, description) +VALUES (2, 'Community Picks', 'What The Omnivore Community are recommending right now...'); + +INSERT INTO omnivore.discover_topics(position, name, description) +VALUES (3, 'All', 'All the stories...'); + +INSERT INTO omnivore.discover_topics (position, name, description) +VALUES (4, 'Technology', 'Stories about Gadgets, AI, Software and other technology related topics'); + +INSERT INTO omnivore.discover_topics (position, name, description) +VALUES (5, 'Politics', 'Stories about Leadership, Elections, and issues affecting countries and the world'); + +INSERT INTO omnivore.discover_topics (position, name, description) +VALUES (6, 'Health & Wellbeing', 'stories about physical, mental and preventative health'); + +INSERT INTO omnivore.discover_topics (position, name, description) +VALUES (7, 'Business & Finance', 'Stories about the business world, startups, and the world of financial advice.'); + +INSERT INTO omnivore.discover_topics (position, name, description) +VALUES (8, 'Science & Education', 'Stories about science, breakthroughs, and the way the world works.'); + +INSERT INTO omnivore.discover_topics (position, name, description) +VALUES (9, 'Culture', 'Entertainment, Movies, Television and things that make life worth living'); + +INSERT INTO omnivore.discover_topics (position, name, description) +VALUES (10, 'Gaming', 'PC and Console gaming, reviews, and opinions'); + +CREATE TABLE omnivore.discover_topic_embedding_link ( + id uuid PRIMARY KEY DEFAULT uuid_generate_v1mc(), + discover_topic_name text NOT NULL REFERENCES omnivore.discover_topics(name) ON DELETE CASCADE, + embedding_description text NOT NULL, + UNIQUE (discover_topic_name, embedding_description), + embedding vector(1536) +); + +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('405fe276-a5da-11ee-b807-d34e138cb969', 'Technology', 'this article is about Hardware', '[0.016794598,0.012307542,0.009711892,-0.027163787,0.015037335,0.01785432,-0.036272038,-0.014916607,-0.016351929,-0.035869613,0.01403127,0.031362437,-0.012307542,-0.0018293636,0.008940575,0.01419224,0.012669726,0.016995812,0.020389607,-0.00015614985,-0.03192583,0.020604234,-0.012099623,0.0007612567,-0.013286781,0.016043402,0.014661738,-0.039410964,-0.00028840563,0.012247179,0.030101499,-0.010275289,-0.027472313,-0.022616368,-0.025929678,-0.01201243,-0.0012810576,-0.020443264,-0.00066609966,0.007780245,0.0137160355,0.01674094,-0.001307886,0.0038196978,-0.019812796,0.0057144556,0.03383065,-0.009812498,-0.0121734,0.008880211,0.005905608,0.009960055,-0.042979147,-0.0033351092,-0.020496922,0.0076259817,-0.011992308,0.0042858417,0.013762985,-0.016338514,-0.0072503835,0.005922376,-0.015949503,0.017331166,-0.019034771,0.0062074284,-0.008450956,0.01556049,-0.0036050703,-0.012817283,0.011744145,0.020416437,0.014594667,0.014205654,-0.0051443516,-0.008189378,0.0028203388,-0.008263157,0.011878287,0.0074515967,0.009329587,-0.012200229,0.013561772,0.008450956,0.013608722,0.0013305225,-0.0025855901,-0.0026593683,0.015319034,-0.0059626186,0.0084911985,0.018189676,0.00086270174,0.011073435,-0.006425409,0.04241575,0.016043402,0.024065103,-0.009705185,-0.0032948668,0.0027398535,0.013152638,-0.014862951,-0.017036054,-0.037211034,-0.0011796126,-0.00092893443,-0.0021227996,0.02924299,-0.018444546,-0.02456143,0.012341078,0.007947923,0.0051074624,0.0007189181,-0.016553141,0.006519309,-0.016781183,0.026130892,-0.01676777,0.034474533,0.017934807,0.014514181,-0.013689207,0.025446767,-0.00054704846,-0.032945313,-0.011952066,0.010449674,-0.007465011,0.023367563,-0.011415497,-0.0043193772,0.009289344,0.018672587,-0.0067909467,0.019383542,0.019517684,-0.011536226,-0.020215223,0.00047494707,0.008846675,-0.023166351,-0.021502987,-0.011690489,0.00062879134,0.006358338,0.018136019,-0.0062376102,0.024091931,-0.009161909,-0.010858808,0.013689207,-0.0004080856,0.003796223,0.013005082,-0.017934807,-0.013018496,0.012636191,-0.015614146,-0.006036397,-0.00013728612,0.019182328,0.005915669,0.018672587,0.0406719,0.020577407,0.012964839,0.017720178,0.0019936878,-0.013977612,0.004202003,-0.010892343,0.0017874442,0.012964839,0.006583026,-0.0023038916,0.0008429996,-0.024011446,-0.016459242,0.0001599226,0.010791737,0.028196681,0.0242529,-0.024829714,0.0141117545,0.0031976136,0.0076863454,0.0153861055,-0.0076259817,0.018967701,0.03216729,-0.005902255,0.005885487,-0.6859493,-0.013669086,-0.018511618,0.026372347,-0.008786311,0.014487353,0.029269818,0.013092274,0.0059659723,0.015681218,0.0031841993,-0.009141788,0.0027314697,-0.001018642,-0.015037335,-0.0100606615,0.0064455303,-0.020738376,-0.002134537,0.012025844,-0.013669086,0.011925237,-0.021395674,-0.0074985465,-0.0019350005,-0.006831189,0.0045507727,0.0028153085,-0.015708046,0.017653108,-0.015372691,0.021596886,0.009752135,0.0031724619,0.026680874,-0.004503823,-0.0075052534,0.027244272,-0.0024615086,0.03195266,-0.02138226,-0.026640631,-0.00065687735,0.007914387,-0.021087147,-0.0020993247,0.016633628,-0.02580895,-0.0036285452,-0.017867735,0.0037492733,0.0009213889,0.0032495938,0.009557628,-0.0022653257,0.016445829,0.0355745,0.017290924,0.022763923,0.0024715692,-0.01607023,0.012414857,-0.03146975,-0.023850475,-0.022401739,-0.006267792,-0.0071430695,-0.0005198009,0.005268433,-0.0038968297,0.0007474233,0.0025906204,-0.011153921,-0.0065964404,-0.009933227,0.017357996,0.021570059,-0.020644478,-0.0031406032,0.0065964404,-0.006110175,-0.00983262,-0.0131861735,-0.031872176,0.043354746,-0.023246836,-0.01050333,-0.014219068,0.021073733,0.012280715,0.020859106,0.011931945,-0.02596992,-0.005516596,0.0011552993,0.00583183,-0.007592446,-0.0056507383,-0.0022535883,0.025688224,-0.008202793,-0.002337427,0.021999313,-0.0038867688,0.027163787,0.0028253691,-0.0021093853,0.03420625,0.015332448,-0.022441983,0.0018444547,-0.009269223,-0.015064164,0.019517684,-0.01470198,-0.034930617,0.016445829,-0.01674094,0.006066579,-0.0020775266,0.030986838,-0.018444546,0.00016945926,-0.004644672,-0.024293143,0.027579626,-0.024266316,-0.017049467,-0.028572278,-0.011999016,0.007592446,-0.0062577315,0.005862012,0.0014017855,0.023729747,0.015734876,0.0031456335,-0.009604578,0.026077235,-0.012958132,-0.011415497,-0.0058754263,-0.008913746,0.008008286,-0.015828773,-0.028357651,0.005358979,-0.00881314,-0.010650887,0.0020976479,-0.010946,-0.00932288,0.01657997,0.017344581,0.00025340292,0.00024942055,0.0011536225,-0.012555705,-0.020322537,-0.011589882,-0.012891061,0.013883713,-0.026747946,-0.006908321,-0.022012727,0.0042724274,-0.018686002,0.007082706,-0.0028874099,-0.020953005,0.010067369,0.017706765,0.0038867688,-0.0048760674,-0.014567838,0.012582534,-0.00841742,0.0045876615,0.016110472,-0.010751493,0.0017220499,-0.0066433903,-0.026184548,0.0070558772,0.026989402,0.004976674,0.027767425,0.025822366,-0.0029025008,0.020134738,-0.009296051,0.0014948467,0.00078431243,-0.004959906,-0.023166351,-0.008082065,-0.0056239096,-0.0017404945,0.012039258,0.0023391037,0.04016216,0.0025654687,0.027847912,-0.00542605,0.0101277325,-0.022039557,0.009718599,-0.0151044065,0.004517237,0.0003628126,0.030235643,-0.020027423,-0.005493121,-0.026197962,0.0113350125,0.012850818,-0.010697837,0.014782465,-0.017612865,0.0015853926,-0.00014388842,-0.015922673,0.010121025,-0.010429553,-0.016392171,0.022334669,0.032945313,0.024601672,0.012086208,-0.055642165,-0.0034474533,0.0023541949,0.0007771861,0.018176261,0.011589882,0.019450612,0.028625935,-0.014339796,0.022857822,0.0020104556,4.8102538e-05,0.033240426,0.009691771,-0.03146975,0.014219068,0.0057345773,0.020671306,0.0045843082,-0.010121025,-0.019651826,-0.0051980084,-0.0036218383,-0.024668742,0.017156782,0.01384347,-0.0031053908,0.020724963,-0.023904132,0.009443608,0.020148152,0.0247224,0.0035078174,0.019611582,0.014406867,-0.011905116,0.0040611536,-0.0042120637,-0.007974751,-0.005479707,-0.017465308,-0.0075656176,-0.0075589106,0.011422205,-0.016231202,0.011241113,0.032945313,0.013340437,0.0035447064,0.014326382,0.024132174,-0.021690786,-0.02676136,0.004735218,0.0101612685,-0.005412636,-0.02033595,-0.023394391,0.003796223,-0.015654389,-0.0015300589,-0.0048458856,0.017304339,0.037854917,0.020993248,-0.009047888,-0.0061470643,0.05210081,0.0077936593,-9.735786e-05,0.011368548,0.0035145245,0.013648964,-0.004983381,-0.025701636,0.032408744,-0.025460182,0.010013712,-0.016056815,0.017384823,-0.016204372,0.0018645759,-0.026694288,0.00016778249,-0.008799725,-0.009658235,0.022120042,-0.021140803,0.03128195,0.021851758,0.018283576,-0.0009750458,-0.007357697,-0.013487994,0.015010507,0.095992126,-0.0062074284,-0.00511417,0.036272038,-0.04222795,-0.039867047,-0.0069418564,-0.01556049,0.024641914,-0.015225135,0.01864576,-0.0025168422,0.007156484,-0.026882088,0.022790752,-0.0023994679,0.005181241,0.0050102095,0.005271787,-0.015453177,0.0052416045,-0.01307886,-0.010885635,0.0009012676,0.025688224,-0.011428911,0.04190601,0.01873966,0.010302117,0.012884354,-0.016687283,-0.011234405,-0.015842188,-0.0016264736,-0.0047821677,0.043462057,-0.0026560146,0.012709969,0.0011058344,0.006569612,-0.00044518427,0.019946938,0.010382603,-0.019705482,0.0027465606,-0.030799039,0.0056205564,0.041342612,-0.03388431,-0.014205654,0.007485132,0.005452879,-0.03315994,-0.01403127,-0.010080783,0.006787593,-0.011294769,-0.00030098145,-0.021583473,-0.03713055,-0.009309466,-0.03366968,0.013226417,-0.008202793,0.013991027,-0.028813735,0.0024531246,-0.029511275,-0.019826211,0.0072302623,-0.0044434587,-0.008759483,-0.03863294,0.006629976,0.022602953,-0.010436259,0.012924597,-0.0047419253,-0.024655327,0.025366282,-0.014380039,-0.011730731,-0.003097007,-0.035654984,0.003006461,-0.014272725,-0.028679593,-0.007713174,-0.006901614,-0.0021177693,0.013950784,0.008652169,0.029216161,0.012113037,0.012294129,0.014125169,0.0083905915,-0.015587319,0.013803228,-0.024856541,0.0018662527,-0.015667804,0.010080783,-0.020389607,-0.0059190225,0.018954286,0.0053019687,0.003375352,0.0068949065,0.012864233,0.00897411,0.0034440998,-0.02284441,-0.0012156633,-0.0055568386,0.020148152,-0.0033619378,-0.0004527298,-0.0038431727,0.002907531,0.0006317257,-0.043193772,0.009658235,0.0055568386,-0.0048458856,0.027190614,-0.014541009,-0.027606456,-0.026908915,0.008732654,-0.0016398878,0.018082362,0.007592446,-0.017237267,-0.01820309,-0.025460182,-0.021261532,0.0059860935,-0.012495342,-0.020443264,-0.007854023,0.013286781,0.016486071,0.0018813437,-0.02367609,-0.03128195,0.008296692,-0.011348426,-0.0028069245,0.016633628,-0.0006472359,0.0028572278,-0.00760586,-0.018323818,-0.036164723,-0.03729152,0.007418061,-0.01419224,0.024091931,0.04356937,0.033616025,-0.019692069,0.007813781,0.014728809,-0.019262813,-0.0009867832,-0.017907977,0.0042053564,-0.035091586,-0.0011955419,0.03485013,-0.0048760674,0.015319034,0.006157125,-0.005523303,0.0129380105,0.030316127,0.019678654,-0.021717615,-0.01521172,-0.010322239,-0.013239831,0.0052784937,0.014420281,-0.02889422,0.00511417,0.025862608,0.015775118,0.0061202357,0.00068789773,0.019182328,-0.011630124,0.011435619,0.010255167,0.0053791003,-0.033428226,0.006834543,-0.035842784,0.0029276526,0.021328602,0.0010144501,0.010114319,-0.008471077,-2.2164895e-05,-0.004225478,0.016539728,-0.005117523,-0.01769335,0.0019869807,-0.01759945,-0.016606798,-0.03517207,-0.014688566,-0.019638412,0.023032207,0.025567494,-0.015144649,0.036620807,0.0057848804,-0.030181985,0.018967701,0.014849536,0.022455396,-0.00011842237,0.015962915,0.023246836,0.009544214,-0.021167632,-0.020040838,0.0033652913,-0.0076326886,0.029323475,0.029725902,-0.0024816298,-0.0039471327,0.017223852,0.0018276869,0.011060021,-0.029108848,0.009584457,0.008450956,-0.0021881938,-0.023313906,-0.024172416,-0.034125764,0.0121734,0.011214284,0.0062342566,-0.021409089,-0.024454115,0.0052583725,0.005342211,-0.012797162,0.017867735,-0.0018377475,0.006673572,0.011060021,-0.006861371,0.001120087,-0.010811858,-0.006472359,0.017062882,-0.039089024,0.0035883025,0.014500767,0.0076930528,0.0077265883,-0.017290924,-0.0006929281,0.025406525,-0.005456232,-0.02838448,0.014245897,0.03160389,0.024454115,-0.019209156,-0.0061873067,-0.014983678,-0.008551562,-0.018136019,0.008752775,0.000902106,-0.004644672,-0.0056943344,-0.005583667,-0.025473595,0.0003846107,0.002194901,-0.0053556254,-0.014326382,-0.03144292,-0.0075723245,-0.011750853,-0.0031221586,0.010543574,-0.0050839875,0.0019333238,0.03884757,-0.04244258,0.0072101406,0.015989745,-0.009960055,0.00051183614,0.014044683,0.008330228,-0.013856885,0.038525626,-0.02122129,-0.013568479,-0.024910199,-0.017250681,0.009302759,-0.004758693,-0.0026258326,0.0031607244,0.012750212,-0.004540712,0.008665583,-0.01546659,-0.0036117774,-0.013501408,-0.01912867,0.01871283,-0.018994529,0.0044300444,-0.0037861622,-0.008256449,-0.008471077,-0.026707703,-0.022160284,-0.013085567,0.022616368,-0.00036008784,-0.002458155,-0.010677716,0.0146080805,-0.018686002,-0.014983678,-0.005764759,0.006271146,0.008524734,-0.005432757,-0.0122673,-0.003856587,-0.017867735,-0.012696555,-0.018404303,-0.01845796,-0.035815954,-0.010147854,-0.005043745,0.030342955,-0.00015950341,-0.0014722102,-0.023059037,0.00016872567,-0.040752385,-0.021637129,0.0038666476,-0.0010043894,-0.0017052821,0.009349708,0.021154217,0.0014596343,0.00837047,0.01683484,-0.017036054,-0.010322239,0.008471077,-0.016633628,-0.003202644,-0.0007117918,-0.017800665,-0.009698478,0.010469795,-0.024454115,0.0024950441,0.023354148,0.00354806,0.0035681813,-0.0136824995,-0.0035245852,0.0011033192,0.022616368,0.016754355,-0.04356937,0.0020691426,0.020228637,-0.010422845,-0.02676136,0.017156782,0.0017094741,0.012931304,-0.00050512905,-0.014259311,-0.0074583036,-0.00083126215,-0.0108521,0.0076326886,-0.0064622983,-0.017062882,0.0110533135,0.009725306,-0.013628843,-0.0014571191,0.023541948,0.00208088,0.003075209,0.0014269372,-0.019960353,-0.0013565125,0.0110399,0.008256449,-0.010248461,0.0047318647,-0.020684721,-0.006660158,-0.012341078,0.009939933,0.020483507,0.009960055,-0.02008108,-0.006267792,-0.0023340734,-0.01609706,-0.0062141353,0.0008375501,-0.04413277,-0.0054428177,0.01419224,-0.018323818,-0.018377475,0.0047419253,0.006975392,-0.02511141,0.007927801,0.19520366,-0.021435916,-0.0060095685,-0.0052952617,0.01384347,0.019329885,0.021060318,0.007236969,0.0012533908,0.01303191,0.010167975,0.01839089,-0.013776399,-0.0063650454,0.002645954,-0.020926176,-0.014997093,-0.01521172,-0.019396955,0.018887216,0.014581252,-0.041664552,-0.014071512,-0.031684376,0.03640618,-0.011683782,-0.016593384,0.012086208,0.01470198,0.020027423,-0.009356415,-0.028625935,0.02532604,0.0006346601,-0.002421266,0.0012919566,0.009517386,0.0036050703,0.02281758,0.014017855,0.012133158,0.018846972,0.024011446,-0.014004441,-0.0020557286,0.03691592,-0.0076393955,-0.007337576,-0.01435321,0.0016566556,0.0022267597,-0.009624699,-0.010295411,0.0069552707,-0.0219859,-0.0020305768,0.0035044637,0.041127983,0.0061302963,-0.0022468811,-0.0019534451,0.034313563,-0.018578688,0.01609706,-0.03093318,0.0326502,-0.010107611,0.015962915,-0.0054830606,-0.0064086416,0.0014369978,0.0009943288,-0.010510038,-0.01797505,-0.018484788,-0.032596543,0.020805448,0.014286139,0.039384138,0.010255167,0.0034608676,-0.018243333,0.00056968495,-0.015573904,-0.018565275,-0.022374911,0.016311686,-0.008947282,-0.0055132424,-0.0051980084,0.012696555,0.007163191,-0.020657891,0.002307245,0.017250681,0.026801603,0.0012500372,0.009852741,0.009852741,-0.0038498798,-0.011931945,0.051403273,0.019088428,0.003645313,-0.0099131055,0.021422502,-0.013192881,0.043327916,-0.0015895845,-0.011388669,0.00030014306,-0.018270161,0.011489276,-0.0050035026,0.016915325,0.019396955,0.007418061,-0.030718554,0.02291148,-0.024507772,0.017103124,0.00089707563,-0.008819846,-0.0110533135,-0.0005902255,-0.018431133,-0.010671008,0.025191898,-0.014433696,-0.023528533,0.044883966,0.0119453585,-0.011308184,-0.014876365,0.0007558072,-0.0012676434,0.016808013,-0.00079437305,-0.023032207,-3.4426328e-05,-0.004517237,0.013461165,0.0076863454,-0.0045440653,-0.0013271689,-0.009041181,0.013736157,0.013830056,-0.010671008,-0.018578688,-0.029082019,-0.019866453,0.012656312,-0.019745724,0.011247819,-0.0063482774,-0.027378414,-0.009242394,0.0072570904,0.0067607644,-0.009363122,0.016714113,0.027767425,-0.0011896732,-0.023448048,0.006673572,-0.17427748,0.0042120637,0.004886128,-0.022898065,0.015855603,0.007840609,0.019557927,0.018914044,0.018431133,0.016365344,-0.0014227452,0.0050605126,-0.010349067,-0.007035756,0.01922257,0.0052852007,-0.027499141,0.017170196,0.018833559,-0.00035547672,0.020698134,-0.011220992,0.0076125674,-0.013662378,0.018659174,0.012166694,-0.013729449,-0.00015856021,-0.0053053224,-0.025527252,2.3632076e-05,-0.0005566899,0.030289298,0.024212658,0.010771615,-0.012797162,-0.0020993247,0.012629484,-0.005684274,0.03176486,0.009859448,0.020309122,0.027096715,-0.012113037,0.012481928,0.0068747853,0.013950784,-0.023756575,0.027740598,-0.021395674,0.03144292,-0.037667118,-0.0072503835,-0.0105569875,0.024521185,0.003164078,-0.025030926,0.0022988613,0.00019062858,0.027311342,-0.0012886031,-0.015359277,0.017572623,-0.006479066,0.001180451,-0.017170196,0.012897768,-0.003870001,-0.019893281,0.0064555914,-0.019745724,-0.014500767,0.008779604,-0.0103423605,0.01607023,0.0011737439,-0.027740598,-0.001992011,0.0048894817,-0.010671008,0.015265377,-0.010382603,-0.00055585155,-0.012153279,-0.010208218,0.014138583,-0.013709328,-0.00044811863,-0.021342017,-0.003645313,0.023059037,-0.034474533,-0.0015652713,-0.03573547,0.014688566,0.011777681,-0.00092558085,-0.024816299,0.0013992704,-0.028572278,-0.00020163243,-0.004275781,0.0027365,-0.013722742,0.00841742,-0.004644672,0.0023776698,0.032972142,0.0357623,0.019906696,-0.020054253,0.018256748,0.0053053224,0.01702264,0.0011234406,-0.0006803522,0.020671306,-0.024977269,0.009108252,-0.005811709,0.03672812,0.0009968439,-0.022978552,0.027579626,0.01384347,-0.0359501,-0.071953855,-0.024708984,0.034340393,0.018444546,-0.0057312236,0.008759483,-0.0016834841,0.040591415,-0.018511618,0.033374567,0.00092390407,-0.040430445,-0.021690786,-0.027740598,-0.0045675403,-0.01403127,-0.028196681,-0.0005462101,-0.016848255,0.027458899,-0.0028739956,-0.018256748,-0.0012097945,-0.019142086,0.0077265883,0.020832276,-0.03640618,0.022924894,0.020322537,-0.011241113,0.00026367317,-0.015654389,-0.0036017168,-0.015761703,0.0023592252,-0.0007453273,-0.0059592654,-0.009088131,0.031389263,-0.017384823,-0.018095776,-0.015198306,-0.0062107816,-0.022187112,0.009121667,-0.010664301,-0.024776056,0.009088131,0.013233123,-0.023729747,-0.02284441,0.0035514135,-0.026989402,-0.01683484,0.0047687534,-0.026721118,0.0044904086,-0.012247179,-0.016526313,-0.008061944,-0.031040495,0.0040175575,0.008303399,0.05859329,0.016298272,-0.02128836,-0.0110399,-0.0043260846,7.571696e-05,-0.012394735,0.014433696,0.018860387,-0.024051689,0.013152638,-0.018028706,0.019866453,-0.023220006,0.00014084927,0.024480943,0.021328602,-0.019638412,-0.02131519,0.017559208,0.003712384,0.010476503,0.0065528443,0.007914387,0.003021552,-0.008772897,-0.026586976,0.020859106,0.023823647,0.010449674,0.01303191,-0.0056641526,-0.00016830649,-0.018055534,0.013373973,0.008316814,0.0050336844,-0.0073845256,-0.0143934535,-0.08080723,0.01692874,-0.00020194682,-0.0035916562,0.0038230515,-0.002263649,0.009550922,-0.023367563,0.0043026097,-0.009638114,-0.007411354,-0.013628843,-0.014165412,-0.011965481,0.0026643986,-0.00876619,0.014272725,-0.00032529474,0.009886277,-0.006847957,0.0037626873,0.0030953302,0.025124826,0.021529816,-0.033079457,0.017760422,-0.015869018,-0.004554126,-0.02138226,-0.016204372,-0.0024564783,-0.0030869464,0.0012441685,0.019437198,-0.0016675546,0.009846034,-0.009544214,0.008357056,0.0011578145,0.028143024,0.012146572,-0.029645417,-0.013581893,-0.011677074,-0.0023642555,-0.0084911985,-0.008564977,0.002112739,0.02008108,0.01855186,0.027418656,0.012622776,-0.015453177,-0.015050749,-0.032569714,-0.0017388177,0.023152936,0.00795463,-0.01393737,-0.0053187367,0.02348829,0.020792034,0.0117642665,-0.0070022205,0.0072101406,0.009597871,-0.015962915,0.010711251,0.011200869,-0.03195266,0.017988464,-0.0069351494,0.01686167,0.0012022491,0.02045668,0.0148897795,-0.017129954,-0.007666224,-0.0054193432,-0.006576319,0.0074985465,0.006606501,-0.02001401,0.0061235894,0.019732311,0.011100263,-0.013642257,0.0025822364,-0.0060934075,0.011174042,-0.027324757,0.02838448,-0.002285447,0.0115831755,-0.0066333297,-0.003200967,-0.014742223,0.010020419,0.016942155,0.011160627,0.003930365,0.01667387,-0.016633628,-0.011750853,-0.030477097,0.02959176,-0.011180748,-0.01829699,-0.0190616,0.014876365,-0.008692412,0.019517684,0.0073912325,0.0039504864,-0.030825866,0.016982397,-0.02077862,0.0054864143,-0.040993843,0.025272382,0.0009180354,0.018176261,0.0136824995,-0.020657891,0.012978254,0.00031795882,0.007807073,-0.020590821,-0.007511961,-0.025768708,0.011120385,0.009356415,0.003006461,-0.020255465,-0.009778963,-0.011234405,-0.003923658,0.0033267254,-0.0049666134,0.055856794,0.0036117774,-0.0011100264,-0.0015988068,0.0108386865,0.016365344,0.006043104,0.00876619,-0.043113288,-0.033616025,-0.00014755638,0.022951722,-0.0039035366,0.0049800277,-0.018068949,0.021663958,-0.009027767,-0.0042858417,-0.020926176,0.020617649,0.022120042,0.0053992216,0.0041919425,-0.0061906604,-0.005358979,0.0029863396,0.027847912,0.012327664,-0.0047016824,-0.02959176,0.00765281,0.005546778,-0.044347398,-0.010067369,0.014983678,-0.01609706,-0.009846034,-0.00897411,0.006244317,0.023528533,0.0058519514,0.017223852,-0.018860387,-0.0035983634,-0.004004143,-0.013514822,-0.0020121324,0.0011184103,0.019517684]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('411f6e66-a5da-11ee-b807-cfc064fd59c0', 'Health & Wellbeing', 'this article is about physical health and working out', '[0.007814475,0.005247892,0.011859383,-0.030287646,-0.02484636,0.023640098,-0.016520534,-0.02826847,-0.014816035,-0.027612893,-0.002853398,0.03212326,-0.016389418,0.006067363,-0.00127018,-0.002115874,0.041301336,-0.010646567,0.007644025,-0.0073227924,-0.0054543987,0.003926905,0.0046742624,0.0045398693,-0.010830129,0.023613876,0.014619362,-0.026419744,0.0032680503,-0.0127640795,0.024964362,-0.0032811617,-0.0011521762,-0.016035408,4.4200217e-05,0.015471612,-0.005267559,-0.015327385,0.018946169,-0.023154972,0.013118091,0.001212817,-0.005470788,0.0192084,-0.023967886,0.0052085575,0.027088432,-0.00751291,0.003187742,0.008994513,0.007113008,0.0215947,-0.055383123,0.0026075565,-0.0026878647,-0.0011251336,0.0011997055,0.0192084,0.012750968,-0.015812512,0.0018487265,-0.018893722,-0.019942645,0.007276902,-0.024190784,-0.012908307,0.0013742528,0.013144314,0.008745394,0.003302468,0.018041473,0.006850777,-0.0178448,0.024859471,0.013688443,-0.027534224,-0.013937562,-0.015838735,0.013885116,0.0027485057,-0.002792757,-0.016638538,-0.0009923794,0.018080806,0.037551437,-0.024020333,-0.0019667302,0.0007637469,0.020427773,-0.008220932,-0.006811443,-0.002877982,0.008384827,-0.0037892337,-0.023679433,0.019614857,0.0017077775,-0.013124647,-0.010607232,-0.0140949,-0.018211922,0.022512507,-0.02672131,-0.01088913,-0.038967483,-0.0157994,-0.0035925608,-0.015130712,0.022879628,-0.024321899,-0.02270918,0.0019831196,-0.009197742,-0.050689194,0.0012619853,-0.017897246,0.00050274545,-0.007054006,-0.0037925115,-0.022433836,0.023299199,0.014724255,0.024374343,0.017871022,-0.0075194654,0.005185612,-0.030340092,0.00785381,0.00845694,-0.010784238,0.009132184,0.0023862994,0.024898805,-0.0049594385,-0.008096373,0.011505372,0.0030828498,-0.0034614452,-0.032306824,-0.01203639,0.0096042,0.031048115,-0.027429331,-0.021896264,-0.012010166,0.021516029,0.018316815,0.0086732805,0.007945591,0.0057133515,-0.013976897,-0.0013537661,0.038233235,0.00142506,0.008869953,0.013052533,-0.02066378,0.013478658,-0.021162018,-0.029422285,0.011328367,-0.031992145,0.0078275865,0.00074899645,-0.0062607583,0.024295675,0.021148907,0.005588792,0.021253798,0.011793826,0.020335991,0.038075898,-0.026275517,0.015445389,0.013649108,0.025764167,-0.011053024,0.001592232,-0.037944783,0.0009964767,-0.017385896,0.020808006,0.05055808,0.04292717,-0.0019241178,0.01054823,0.018815054,-0.003694175,0.0049823835,-0.007054006,-0.0082799345,0.023076301,-0.011112026,-0.0032500217,-0.6755063,0.0076505807,0.02134558,0.00048430733,0.020021314,0.011780715,0.013131202,0.009348525,-0.0020781783,0.021725815,-0.0050676083,0.0006293537,0.00072236365,-0.008942067,0.01426535,-0.0048152115,0.0029517345,-0.035846937,0.00109973,0.0021912653,-0.020309769,0.0034057214,-0.015183158,-0.00219946,0.009538642,0.028216025,-0.0068179984,0.0039367387,0.022394503,0.014920928,-0.014934039,0.026262404,0.0073293485,0.029500954,0.03996396,-0.02484636,-0.010902242,0.027403109,0.011033357,0.027481778,-0.033329524,-0.0048578237,0.0055429013,-0.0014217821,0.002112596,-0.003753177,0.036922082,0.0101221055,0.026852425,0.00879784,0.009945099,-0.00031016977,0.013688443,0.015012708,-0.014645585,0.0073490157,0.024190784,0.00209129,0.011538151,0.03440467,0.008791285,0.01572073,-0.038207013,-0.02484636,-0.026537748,0.011728268,-0.0071064522,0.010941576,-0.013740889,-0.011695489,0.029238723,0.003468001,-0.0093223015,0.0073293485,0.02459724,0.027429331,0.013727778,-0.013091868,0.005841189,0.009558309,0.008273379,0.0018241423,-0.011387369,0.0020191765,0.036423843,-0.01366222,-0.019260846,0.002763256,0.002251906,-0.0059100245,0.038652807,-0.00024502183,-0.0063132043,-0.0025239706,0.008129152,-0.012731301,-0.008319269,0.0061558657,0.009191186,0.0054838997,-0.015301161,0.0015447028,0.007637469,0.02332542,0.015681397,0.007080229,-0.006916335,0.016179634,0.014632474,-0.02134558,0.00853561,0.011721713,-0.018461041,0.028137354,-0.006267314,-0.029081386,0.024256341,-0.0070146713,-0.0074080173,-0.005975582,0.026826201,-0.009905765,0.02596084,-0.006772108,-0.0063525387,0.03424733,-0.032909952,0.00078382395,-0.02007376,-0.039754175,0.019234622,0.0058182436,0.03167747,-0.004484145,0.032333046,-0.006719662,-0.007840699,0.025331486,0.021384913,-0.014789812,-0.031625025,-0.02417767,0.010069659,-0.0018929779,-0.0076046903,-0.04143245,-0.006398429,-0.0022355167,-0.0038580692,0.021870041,-0.015982961,-0.023626987,-0.0285307,0.020178653,-0.002761617,-0.00013613461,-0.0050413855,-0.034273554,-0.0039006819,-0.0063722064,-0.008614278,0.018552823,-0.027350662,0.0031189064,-0.009394415,0.00085143035,-0.017884133,0.023836771,0.008214377,-0.01699255,0.013570439,0.0044120317,-0.01263952,0.007165454,-0.016166523,0.013098423,-0.0022928796,0.0007830045,-0.012134726,0.00068753614,-0.006654104,-0.016769653,-0.034902908,-0.00717201,0.011675823,-0.0041071884,0.017884133,0.00704745,-0.004933215,0.01327543,0.0002622307,0.0061558657,-0.018382372,0.013675331,-0.0065557677,-0.013111535,-0.030785885,0.007250679,0.03563715,-0.006434486,0.02535771,-0.0020126207,0.015392942,-0.01502582,0.0285307,-0.0099713225,0.0067852195,-0.0066999947,0.018880611,-0.017477676,0.010076215,-0.0077948077,-0.03665985,-0.00836516,-0.007919367,-0.01011555,-0.0043890863,0.0020749005,-0.029763184,-0.013675331,0.012973865,-0.022420725,0.0049791057,-0.0020503164,-0.019798419,0.03917727,0.008338937,0.025226595,-0.011610265,-0.02066378,0.006565601,0.010980911,0.019942645,-0.002204377,0.0024911917,-0.0010063103,0.016166523,-0.030104086,0.032254376,0.014671808,0.009938544,0.020191764,-0.011938053,-0.025003698,0.013052533,-0.003217243,0.03235927,-0.0067131063,-0.010974355,-0.0229583,-0.011308699,0.009014181,-0.030497432,0.027140878,-0.013635997,-0.00811604,0.0010005741,-0.011472593,0.022866517,0.015655173,0.00986643,0.012370734,0.0096238665,0.0076309135,0.016192745,0.01674343,-0.0010374503,-0.01059412,-0.0075784675,0.002086373,-0.012200284,0.006441042,0.0009407527,-0.015681397,0.016415643,0.037971005,0.013452435,-0.009754982,0.030917,0.034352224,-0.01110547,-0.02510859,-0.0013750723,0.033093516,-0.022538729,-0.004825045,-0.027245771,0.023207417,-0.017149888,-0.0006514794,-0.009158407,0.024348121,0.010338445,-0.006411541,-0.021988045,0.0015979684,0.025659274,-0.00051872514,0.015851846,-0.0075981347,0.009551753,-0.0032090482,-0.0024403846,-0.020978456,0.021502918,0.0035925608,-0.018159477,-0.0040121297,0.015760066,-0.024636574,0.012233063,0.003923627,0.000292756,-0.0059296917,-0.008915844,0.000726461,-0.018041473,0.016494311,0.0154585,-0.019142842,0.0069294465,-0.021070236,-0.0085815,0.0033041069,0.11223474,0.0065819905,0.017949691,0.017753018,-0.003074655,-0.0011398841,0.0038744586,-0.016336974,0.024203895,0.0020683447,0.010436782,-0.028294694,-0.008679836,-0.0033926098,0.001045645,0.0013808085,0.0023027135,-0.0044644778,-0.0070933406,-0.0036810637,0.005982138,-0.022145383,-0.00096615625,0.04313695,0.038652807,0.0030795718,0.008470052,0.029160054,0.011531595,-0.0014168653,0.0041891355,0.0054150643,0.0059591928,-0.00068179984,-0.009695981,0.020506442,0.0032024926,-0.0042120805,0.0059329695,-0.012882084,0.021122683,0.020742448,0.012147837,-0.0016381225,0.0076702484,-0.0056805727,-0.0023076301,0.02366632,-0.004264527,0.014042455,0.02868804,0.0071588983,-0.009335414,-0.055960033,0.0056314045,0.005605181,-0.013386877,0.0073817945,-0.013006643,-0.036345176,-0.012678855,-0.01768746,-0.0023502428,0.015681397,0.0144095775,-0.0295534,-0.000621159,-0.00913874,0.011813493,0.018998615,0.012973865,-0.014199792,0.008548721,0.013819559,0.016035408,-0.0014512831,0.01827748,-0.0037794001,-0.013557328,-0.006936002,-0.012757524,0.00043390988,-0.02603951,-0.037603885,0.0072113443,0.0013103341,-0.003756455,-0.0072179004,-0.012849305,0.021030903,0.008961734,0.02331231,0.010318778,0.010102438,0.012823082,0.02211916,0.01140048,-0.011282477,0.0029795964,0.01947063,0.0011177583,-0.02169959,0.0075522442,-0.0030090974,0.012101947,-0.0047562094,0.009682869,0.01956241,-0.00655249,-0.038023453,0.02603951,-0.0020372048,0.002147014,0.013767112,0.011171028,0.018919945,0.012174061,0.0019634524,-0.003132018,-0.022420725,-0.0027337552,-0.031546354,0.018880611,0.014435801,-0.013354098,0.015209381,-0.0134131005,-0.036581185,-0.01631075,0.016520534,-0.0062476466,-0.004513646,-0.03175614,-0.04345163,-0.019326404,-0.020519553,-0.036161613,0.021017792,-3.444339e-05,-0.028399585,-0.018998615,0.008692948,0.004772599,0.002874704,0.033067293,-0.035479814,0.0004597232,-0.010987466,-0.029658293,0.0164812,-0.0011390647,0.0040022964,-0.022355167,-0.0078275865,-0.011053024,-0.020650668,-0.010653122,-0.0057133515,0.011374257,0.01827748,0.019903312,0.0031352958,-0.0013717944,0.023168083,-0.004149801,-0.024374343,0.0069228904,-0.0021879876,-0.030130308,0.0063394275,0.024859471,3.4212913e-05,0.022027379,0.004729986,0.012672299,0.027770232,0.0052806707,-0.017215446,-0.028661815,-0.031834807,-0.01016144,-0.0058084102,-0.013675331,0.0059624705,-0.028819155,-0.018946169,0.03338197,0.016690984,0.0040776874,0.0046644285,-0.010915353,-0.009768094,0.023797436,0.006096864,-0.023023857,-0.04038353,0.0031992146,-0.025987063,0.011623376,0.028871601,0.022053603,0.03474557,-0.010561341,0.0016979438,-0.02255184,0.01646809,-0.012042945,-0.020034427,-0.008417605,-0.011341478,-0.0044480884,-0.009112517,-0.013340987,-0.022342056,0.013754001,-0.0062607583,-0.027534224,0.046913072,-0.00011001398,-0.0363714,-0.002114235,-0.0070015597,0.011728268,-0.0028976493,0.03141524,0.009938544,0.011964276,-0.032857507,0.0011325089,-0.0073424596,0.003864625,-0.0007608788,0.014789812,-0.012895195,-0.029841855,0.010358113,0.0019896755,-0.01861838,-0.03340819,0.027245771,0.008437273,0.009945099,0.007591579,0.0069097793,-0.032726392,0.014396465,0.0033663868,0.0029468175,-0.012750968,-0.025895283,6.907884e-06,0.02314186,-0.02433501,0.026695086,0.0027239216,-0.0071588983,-0.008994513,0.0046513174,-0.019509964,-0.0047791544,0.013399989,0.0063033705,-0.02620996,0.0020208154,0.033093516,0.0041858577,0.021201354,0.00452348,0.013649108,0.02758667,-0.02417767,-0.025056144,0.0028845377,-0.0021404582,0.007768585,0.02221094,0.0018815054,-0.014462023,-0.009027292,-0.0073817945,0.0031107117,0.013793335,-0.044631667,-0.0041399673,0.0060444176,-0.026144402,0.0024813581,-0.006162422,-0.022538729,-0.0073621273,-0.030130308,-0.029002717,-0.006185367,0.031100562,0.006296815,-0.017438343,0.002458413,0.026826201,-0.039675508,0.01895928,-0.0060640853,0.005162667,-0.010325334,0.013478658,-0.0008415967,-0.025501937,0.022237163,-0.005185612,-0.0271671,-0.017635016,-0.003220521,0.017189223,-0.006378762,-0.017149888,0.015183158,0.011302143,-0.014160458,-0.0035630597,-0.036607407,-0.012783747,0.0010333529,-0.013124647,0.027114656,-0.017281003,0.014593138,-0.02281407,0.029160054,0.0055101225,-0.004798822,-0.018067695,-0.034824237,0.017857911,-0.007427685,0.004146523,-0.02255184,-0.0037105645,-0.017556345,0.014357131,0.01733345,0.0010841601,0.0020388437,0.0056510717,0.010659678,-0.014619362,-0.011439814,-0.025580605,-0.021752037,0.0034286664,-0.017713685,0.0017143332,0.016100965,0.009302635,0.043949865,-0.04124889,-0.01434402,-0.001158732,-0.03836435,-0.019195288,0.020165542,0.024820136,-0.0039203493,0.0035138915,-0.00060108193,0.008443829,0.027534224,-0.0076112463,-0.014619362,-0.02083423,0.018054584,-0.005670739,-0.01646809,-0.01485537,-0.009230521,0.0042088027,0.017884133,-0.01417357,-0.012993531,-0.0013660581,-0.008188154,0.001976564,-0.0136097735,0.003105795,0.0052413363,0.007696471,0.012947641,-0.032411717,0.0026993374,0.015379831,-0.01502582,-0.002284685,0.02366632,0.0052806707,0.0046185385,-0.0030156532,-0.009892654,-0.013596662,-0.006060807,-0.01758257,0.014671808,0.007585023,0.0032106873,0.016756542,-0.00298943,-0.00811604,-0.0065361005,-0.0010095882,-0.015012708,-0.020899788,-0.00012394498,0.013885116,-0.007283458,-0.017792353,-0.0125215165,0.011551263,-0.005021718,-0.016808989,-0.008502831,0.003923627,0.00089568173,-0.008181598,-0.031703692,-0.029343616,-0.013504881,0.012003611,0.0045070904,-0.014724255,-0.009545198,-0.01971975,-0.02631485,-0.009636979,-0.0075391326,-0.013819559,-0.01310498,0.002514137,-0.007394906,0.010404003,0.19898066,-0.029658293,-0.0054904553,-0.002569861,0.019916423,-0.0017438342,0.038390577,-0.017530123,-0.011177584,0.0052806707,0.0052806707,0.019798419,-0.018657714,0.007099896,-0.017438343,-0.025515048,-0.03367042,0.017412119,-0.021647144,-0.017739907,-0.013701554,-0.033277076,-0.011066136,-0.022446949,0.02365321,-0.0014414494,-0.011990499,0.0005732199,0.024007222,0.011485705,-0.0072703464,-0.012488738,0.0066114916,-0.0012193727,-0.012010166,0.007316237,0.014370243,-0.029474732,0.023705656,-0.019614857,0.0039957403,0.0035138915,-0.0033696645,-0.0033926098,-0.017110555,0.0099713225,-0.02594773,0.022945186,0.0038351242,0.010148329,-0.03655496,0.005752686,0.01183316,0.017359672,-0.021384913,0.0030025416,0.029946746,0.0077948077,-0.010902242,0.01242318,0.009040403,0.014042455,-0.013937562,0.018329926,-0.012455959,0.013858893,0.015274938,0.021371802,-0.017530123,4.6504978e-05,0.0106203435,0.0052577257,-0.023744991,-0.009105961,-0.012691966,-0.0021601254,0.025567494,0.01691388,0.026445966,0.0292125,-0.017438343,0.012285508,0.008502831,0.012495293,-0.0056215706,-0.013268874,0.001329182,6.248466e-05,-0.021896264,0.002399411,0.0032565775,0.007912812,-0.0030697382,-0.0023633542,0.008692948,0.010449894,-0.010384336,0.0014307963,-0.016848322,-0.00999099,-0.017569458,0.05732363,-0.015773177,0.010921909,-0.018172588,-0.023443425,-4.1485717e-05,0.031205455,-0.007506354,-0.009315746,0.008915844,-0.01707122,0.014317797,0.012973865,0.024479236,0.013091868,0.017635016,-0.012967308,0.010902242,-0.034509562,0.004195691,-0.0033696645,0.017044997,-0.010345002,0.002740311,-0.013242651,-0.016625427,-0.012075724,0.0022109326,-0.039570615,0.03149391,-0.014619362,-0.015038931,-0.003471279,-0.013570439,8.7990695e-05,0.0050118845,0.0031500463,-0.008358603,0.0041924133,-4.8476828e-05,-0.029920524,-0.024925029,-0.0050086067,0.017320339,-0.021004679,-0.0074670194,0.027822677,-0.009761538,-0.011328367,-0.014632474,0.005024996,-0.019234622,-0.0020158985,0.029396063,-0.013439324,-0.015117601,-0.017254781,-0.011210362,0.0008915844,-0.008955179,0.013596662,0.025121702,-0.02416456,-0.027508002,-0.008889621,-0.16782765,0.013452435,0.018592156,-0.03618784,0.0157994,-0.008011148,0.021647144,0.010810461,0.0031811863,0.02963207,0.010292555,-0.0039695175,-0.014645585,0.011452926,-0.0013595023,0.007637469,-0.007821031,0.015891181,0.020794895,0.005752686,0.020899788,-0.0025993618,0.010928465,-0.004913548,-0.0022453505,-0.017871022,-0.015314274,0.022092937,0.0035401145,0.001157093,-0.019037949,0.0060345843,0.021332469,0.006267314,-0.016874546,0.014186681,0.0140949,-0.02690487,-0.0114201475,0.018120142,0.033801537,0.007939035,-0.0105744535,-0.00031836447,0.009446861,0.020349102,0.01570762,-0.008037372,0.008168487,-0.02826847,-0.016638538,0.0011505373,0.013819559,-0.008037372,0.038521692,0.010194219,-0.0074145733,0.0028861768,-0.0021191519,-0.017254781,-0.0013529465,-0.011754491,0.007257235,-0.014029343,0.011446371,-0.014632474,-0.0061066975,9.308678e-06,-0.030497432,-0.00024850457,-0.014881592,-0.022315834,0.008319269,0.0023912163,0.02656397,-0.00501844,-0.019614857,-0.023771213,0.0039006819,0.0049725496,0.0005174959,0.009492751,-0.01183316,-0.0004666887,0.009794317,0.017975915,-0.00047775157,0.0061329207,-0.011695489,-0.0073293485,0.021148907,-0.03621406,-0.027822677,-0.023377867,0.011112026,0.021502918,0.023535205,0.00065188913,0.017556345,-0.032595277,0.021122683,0.001597149,-0.016690984,0.0055396236,0.024439901,-0.006355817,0.03293618,0.014501358,0.021384913,0.0013521271,0.0021371802,0.008273379,0.008692948,0.030444985,0.00010274117,0.020165542,0.006739329,-0.042848498,0.017648127,-0.016402531,0.044815227,0.022827184,-0.032988623,0.02118824,-0.012455959,-0.0178448,-0.09823162,-0.018828165,0.024833247,0.025921505,0.0157994,0.020519553,-0.0070081158,0.018579045,-0.025580605,0.022145383,0.014816035,-0.009197742,0.0006535281,0.009768094,0.0112234745,-0.033696644,-0.016114077,-0.024125226,-0.004690652,0.0271671,0.012390401,-0.016415643,-0.008915844,0.002596084,0.00012988615,0.020611333,-0.037761223,0.020886676,0.018382372,-0.005674017,-0.0018356149,-0.0024862748,0.025921505,-0.024374343,0.012049501,-0.020047538,-0.019273957,-0.005021718,0.014934039,-0.009800873,-0.0151044885,-0.012685411,0.0027763676,-0.04132756,0.0011923303,-0.031887256,-0.025318375,0.005500289,0.008607723,-0.016415643,-0.018015249,-0.006516433,-0.024243228,-0.01905106,0.011138249,-0.021044014,0.0054576765,0.0124166235,0.016087854,0.002535443,-0.012396957,-0.0035532261,-0.013714666,0.021476695,0.03133657,-0.014042455,-0.011033357,0.013570439,0.01191183,-0.005552735,-0.006601658,-0.013937562,-0.012154393,0.026655752,-0.0028386475,0.006463987,-0.017189223,-0.0054380093,0.020021314,-0.0018175866,-0.009571421,-0.005778909,0.0043136952,-0.015170046,0.006709828,-0.010023769,0.013622886,0.0018388928,-0.0070408946,0.00576252,-0.009886098,0.04442188,0.022525618,-0.019667303,-0.002035566,-0.0073752385,-0.002991069,-0.019641079,0.003107434,0.0065393783,0.012685411,-0.01860527,-0.061099753,0.021450471,-0.003582727,0.0010898964,-0.016874546,-0.010738348,0.0028550369,-0.0005863315,-0.00772925,-0.00053224637,-0.01733345,0.015930515,0.01768746,-0.010915353,-0.025633052,-0.0367123,0.023338532,-0.0053495066,-0.007316237,0.016612316,0.012770635,0.010535118,0.039780397,0.0073424596,-0.024662798,0.029736962,-0.0048709353,0.016533647,-0.026183736,0.004231748,0.006018195,-0.011721713,-0.0033926098,0.024741467,-0.0075719114,0.000359338,-0.0053429506,0.023705656,0.0075784675,0.023390979,-0.009099405,-0.009256744,0.0011079247,-0.0065328223,-0.011262809,-0.010862907,-0.021017792,-0.011210362,0.01827748,0.021935599,0.019549299,0.008057038,-0.02058511,-0.008017704,0.0035335587,0.0012996809,0.006575435,0.018395483,-0.009256744,-0.029160054,0.022237163,0.014553804,0.0038187345,0.0011341478,0.005562569,0.0295534,-0.010705569,0.007958702,0.019850865,-0.021988045,-0.0034909463,0.01758257,-0.005513401,0.0059329695,0.011459482,0.0053134495,-0.006404985,0.0043038614,-0.014829147,0.014645585,0.011380813,0.009591088,-0.017123666,0.023967886,0.014737366,0.02322053,-0.022696069,0.028399585,-0.009151852,0.01809392,0.00209129,0.014816035,0.0005252809,0.010259776,0.006601658,0.020873563,0.009656645,-0.011112026,0.013793335,0.007657137,0.03458823,0.0048348787,-0.009315746,-0.030366316,-0.013006643,0.0046447613,-0.0027730898,-0.031572577,-0.017661238,0.007781696,0.0040973546,0.028976493,-0.0062607583,0.0011562735,0.0018356149,0.0040449086,0.0092764115,0.0049299374,-0.034640677,0.033014845,-0.022184718,-0.0074866866,-1.4199895e-05,-0.00452348,0.016179634,0.0029730406,-0.0022896018,-0.006398429,-0.004231748,-0.01298042,0.0014168653,-0.010345002,-0.01922151,-0.015406054,-0.008234045,-0.027376886,0.0037269539,0.010725236,-0.0168221,0.0431894,0.013963785,-0.0017323616,0.007925923,0.008188154,0.009781205,0.009204298,0.0068770004,-0.029684516,-0.014698031,-0.02365321,-0.0155109465,-0.02571172,-0.032490384,-0.016638538,0.030943224,0.004408754,0.002933706,0.010200774,0.017766131,0.010489228,0.012547739,-0.01623208,0.0013095146,-0.004287472,-0.018395483,0.006903223,-0.010607232,-0.0047824327,-0.01742523,-0.0029304281,-0.0021191519,-0.039491944,-0.0097287595,0.031520132,-0.02929117,-0.0058182436,-0.00039170712,0.002009343,0.02929117,0.0042153588,0.028976493,-0.020099984,0.003184464,-0.0292125,-0.0065492117,0.011315255,-0.00025260192,-0.020794895]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41236a2a-a5da-11ee-b807-87ed520a41b0', 'Health & Wellbeing', 'this article is about sexual advice', '[0.012156291,0.02280452,0.015106847,-0.020483416,-0.009172951,0.02496826,-0.004665157,-0.03236432,-0.012398892,-0.04091438,-0.00023051219,0.015919888,-0.021519389,0.011277681,0.00013369707,0.012248086,0.047602303,0.0017309929,0.019381875,-0.0154478,-0.014674099,-0.003406253,0.0021686587,-0.009415552,-0.013533217,0.0006564987,0.012595596,-0.015644504,-0.018109858,0.00015152335,0.010903944,0.0069567556,0.0069829826,-0.026397642,-0.008654964,0.025689509,-0.005311001,0.0011302269,0.021244004,-0.015670732,0.0063109114,-0.0057994816,-0.0050421725,0.008248444,-0.016955862,0.0027899146,0.014529849,-0.0110809775,0.0010572826,0.012077609,0.016300183,0.015159301,-0.06320747,0.0069829826,0.0056257267,0.010405628,-0.0068911877,0.0049044797,0.018162312,-0.007900934,0.007133789,-0.028089294,-0.013375854,0.0051765866,-0.018254107,-0.006301076,0.001922779,0.0127660725,0.00570113,0.016549341,0.019814624,0.004258636,-0.0151330745,0.025348555,0.0057306355,-0.023788039,-0.024666648,-0.0053175576,0.013572558,-0.00021985741,0.0077435705,-0.006615802,-0.01771645,0.035485353,0.0263583,-0.00045897538,-0.0030341551,0.023237268,0.0061437134,-0.023670016,0.0037144222,-0.007959944,0.006156827,-0.004330761,-0.018437697,0.025899325,0.018319674,0.0213358,0.0061371564,-0.0074222875,-0.004855304,0.006373201,-0.030213693,-0.008517272,-0.036403306,-0.0053798473,0.0026997589,-0.011697316,0.023840493,-0.0067403815,-0.033360954,0.008261557,-0.003920961,-0.045399223,0.0031111974,0.008641851,-0.0008380399,-0.0006495321,-0.019394988,-0.020430962,0.029558014,0.0011744852,0.02738116,0.0006642849,-0.0021670195,0.013428308,-0.037688438,0.009953209,-0.0007413272,-0.004134057,0.028272884,0.0053503416,0.03194469,0.02203082,-0.0054323017,0.019617919,0.018240994,-0.01019581,-0.021139095,-0.012044826,0.014726553,0.05227074,-0.03469854,-0.00012826723,-0.004606146,0.0199851,0.032731503,-0.0015195364,-0.011139988,0.01628707,0.010189254,-0.029531788,0.033360954,-0.004294698,0.003770155,0.026620572,-0.0196966,0.0066715353,-0.019906418,-0.0056552324,-0.0009466367,-0.012025155,0.018686855,0.0012171044,-0.012287427,0.030843146,0.012844754,0.012746402,0.020627664,-0.005471642,0.005579829,0.053136237,-0.018240994,0.019119604,0.0012293983,0.022647157,-0.017073885,-0.0057076868,-0.022909429,0.0017982,-0.034069087,0.01405776,0.05032993,0.05439514,-0.020142462,0.007999285,-0.0030472688,-0.009861414,-0.0043471525,0.008543499,0.018319674,0.031787325,-0.013192264,-0.026292732,-0.6634424,-0.019224511,0.014398714,0.024207674,0.024627307,-0.0043471525,0.017073885,0.027905703,0.0076780026,0.019644147,-0.019552352,0.007789468,-0.0028063066,-0.007481299,-0.0065338425,0.00054913125,0.0022260307,-0.034829676,0.0072649247,0.0023145473,0.0026653355,0.00913361,0.0030538256,-0.009920425,0.01628707,0.00823533,-0.0035078833,0.001160552,-0.0005212649,0.0006208462,-0.0066321944,0.024574853,-0.005999464,0.018949127,0.04191101,-0.02016869,-0.01929008,0.01702143,0.015395346,0.04550413,-0.032600366,-0.012877538,0.0032521684,-0.009028701,-0.0006728907,-0.008412363,0.03598367,-0.0035439457,0.012143177,0.012798857,0.020706346,-0.0027817187,0.018542606,-0.0010597414,-0.017559087,0.009186065,0.018896673,-0.016037911,0.013028344,0.025833758,-0.0050159455,0.008891009,-0.018031176,-0.028482702,-0.01738861,0.010779365,0.0022899592,0.01845081,0.0028112242,-0.025545258,0.0010392515,0.005507705,-0.028640063,0.0018588504,0.019276965,0.023224154,-0.0034029747,-0.0062355082,0.0023768367,0.0023522489,0.010772808,0.015224869,-0.0074616284,-0.019421216,0.03459363,-0.025886212,-0.012451347,0.008799214,0.007041994,0.0048782527,0.044822223,-0.013349627,-0.001334307,0.0052487114,0.0167985,-0.0077501275,-0.0029800616,0.00093680155,0.011690759,-0.0017391889,0.001056463,0.00275877,-0.0036488543,0.015933003,-0.0031554557,0.009166394,-0.01841147,0.023932287,0.015985457,-0.010313832,0.011815337,0.017821359,-0.013965965,0.006346974,-0.01841147,-0.031236554,0.011605521,-0.0022899592,0.0075796507,-0.0010687569,0.030056331,0.0040816027,0.005412631,-0.0023112688,-0.0024145383,0.035380445,-0.029190835,0.014726553,-0.017847586,-0.03257414,0.016850954,-0.013388968,0.00893035,-0.0012670999,0.0029292465,-0.011376033,-0.0012621824,-0.007002653,0.019172058,-0.009002474,-0.031472597,-0.013336513,0.017991835,0.00702888,-0.008897565,-0.023879834,0.008635294,-0.005543767,-0.013041458,-0.0072190273,-0.007035437,-0.02858761,-0.011920246,0.02609603,-0.002709594,0.004268471,-0.012359551,-0.024614194,-0.023276608,-0.006622359,-0.0038193308,0.034934584,-0.03970793,-0.004524186,-0.0114284875,-0.0028226986,0.0029554737,0.0012171044,0.009494234,-0.014031533,0.005124132,0.00063068134,-0.012234973,0.00094171916,-0.03071201,0.010536764,0.007933717,-0.015578936,-0.013533217,0.012202188,-0.021532502,-0.01369058,-0.031131646,-0.0026374692,0.020417849,-0.009035259,0.024587967,0.020522757,0.01508062,-0.006281406,-0.016077252,0.004317647,-0.014070874,0.016169047,-0.014870803,-0.010215481,-0.010766251,0.011343249,0.019198285,-0.0022850418,0.038081843,-0.014359373,0.02793193,-0.017755792,0.015421573,-0.014372487,-0.0024473222,-0.0087861,0.03042351,-0.028902335,0.015434687,-0.012254643,-0.032049596,-0.0032128277,0.009559802,-0.022634042,-0.0042160167,0.014031533,-0.02262093,-0.008628737,0.0031095583,-0.010202367,0.011835008,0.0062781274,-0.013861056,0.044428818,0.022712724,0.007618991,-0.014700326,-0.031761095,-0.012615266,0.00012714029,0.0130873555,0.015001939,0.0029292465,0.006996096,0.011290794,-0.03674426,0.018359015,0.0075862072,0.0077370135,0.0210473,-0.0015760887,-0.008694305,0.010549877,0.007664889,0.023263495,0.023237268,0.0049372637,-0.011631748,-0.012713619,0.00913361,-0.02533544,0.012595596,-0.0039734156,-0.0063207466,-0.0047044978,0.0037472062,0.0013048014,0.0137954885,0.021322684,0.014660985,0.010851489,0.0037308142,0.018004948,0.006510894,-0.0039012907,-0.0114416005,-0.0073239356,-0.01369058,0.0058388226,-0.002966948,0.005127411,-0.023433972,0.0055536022,0.03404286,0.0023342178,-0.0064256554,-0.0046848273,0.02521742,-0.004199625,-0.013847943,0.011251453,0.021073528,-0.0144905085,-0.026764821,-0.0005188061,0.0093827685,-0.00463893,0.003563616,0.012189075,0.019814624,0.008838555,0.0032603645,-0.0065240073,-0.0030849702,0.016378865,-0.0075271963,0.009448336,0.0044455044,0.019394988,-0.01017614,-0.0043832147,-0.008556613,0.012700505,-0.01896224,-0.03181355,-0.02540101,0.002478467,-0.013834829,0.021493161,-0.0138086025,-0.023079906,-0.009022145,-0.0137954885,0.00404554,-0.016746044,0.012634937,0.003970137,-0.01559205,0.02441749,-0.010517093,-0.011756327,0.0036324624,0.12368731,-0.0052257627,0.018162312,0.014726553,0.004609424,0.013520104,-0.0027063156,-0.0120841665,0.027118888,-0.001093345,0.025007602,-0.022188181,-0.014713439,-0.010287605,0.01947367,0.0030620215,-0.01577564,0.0007380488,0.0009089352,-0.0047602304,0.0005298707,-0.0040357052,-0.007599321,0.05326737,0.019355647,-0.016208388,0.024719102,0.02294877,-0.0020703068,-0.003504605,-0.008812328,0.008995918,-0.00088598643,0.015028166,-0.017178793,0.009172951,-0.0068649603,-0.0024571575,-0.014005306,0.0011080977,0.015408459,0.021257117,0.011828451,-0.0070551075,0.009553245,-0.026555004,0.0007741112,0.03441004,0.002462075,0.011959587,0.017126339,0.013231604,-0.017414838,-0.037347484,0.01691652,0.0049372637,-0.015277323,0.011290794,-0.011317021,-0.019421216,-0.006281406,-0.03191846,0.0007798484,-0.00080156774,0.0033046228,-0.029872742,-0.026253393,-0.008877896,-0.0035734512,0.0090745995,0.0090614855,-0.014503622,0.0034488721,0.016929636,0.006074867,0.013467649,0.01720502,0.013638126,-0.021414481,0.011880905,-0.010936728,-0.009415552,-0.013965965,-0.020614551,-0.0127660725,0.008536942,-0.0050520077,-0.008445147,-0.018857332,0.01136292,0.0075534233,0.023774926,-0.0009507347,-0.009835186,-0.001064659,0.01618216,0.01209728,0.007999285,0.008268114,0.0077763544,-0.010471196,-0.03257414,-0.009822073,-0.016234616,-0.0021391532,0.00929753,0.0091139395,0.02405031,-0.011671089,-0.04235687,0.023774926,-0.00561917,0.0059306175,0.008222216,0.011802224,0.02108664,0.017231246,0.016247729,-0.011684202,0.0011048194,-0.0054585286,-0.042619143,0.010976069,0.021952137,-0.020339167,0.02401097,-0.02284386,-0.024325695,-0.017454179,0.012385779,0.006996096,0.0014482313,-0.017978722,-0.033518318,-0.035380445,-0.01943433,-0.0357214,0.0076780026,0.0025423958,-0.0399702,0.0011728461,-0.0003040712,-0.008759873,-0.017768905,0.04387805,-0.03393795,-0.0068649603,-0.026214052,-0.038737524,0.0138217155,-0.005294609,-0.01123834,-0.029190835,0.00033152776,0.00041492193,-0.017454179,-0.00070321583,0.0066354726,0.019132717,0.012313654,0.027617205,-0.022266863,-0.023565108,0.023407744,0.001367091,-0.013664353,-0.0051405244,0.012182518,-0.049726706,0.02515185,0.034855902,0.011920246,0.0058781635,0.0045700837,0.019932644,0.03333473,-0.0043209256,-0.023329062,-0.020627664,-0.026266506,-0.020824369,-0.018227879,-0.008510715,0.004088159,-0.03894734,0.007625548,0.03553781,0.026882844,0.0063961498,-0.0073632766,0.0037931036,-0.005819152,0.024614194,0.006156827,-0.024365036,-0.02572885,-0.008287784,-0.004225852,0.009487677,0.03042351,0.014910143,0.020181803,0.0075665372,0.009448336,-0.026082916,0.016811613,-0.006605967,-0.0051897,0.012720175,-0.023119247,0.00084418687,-0.006884631,-0.031341463,-0.01651,0.013454536,-0.007664889,-0.013270945,0.046867944,0.0018047568,-0.032495458,-0.02057521,-0.004399607,0.010097459,-0.007251811,0.030869374,0.015946116,0.00839925,-0.013716808,0.009874527,-0.0020342446,0.0058125956,0.002196525,0.040468514,0.014765894,-0.0077107865,0.006812506,0.028141748,-0.021716092,-0.043615777,0.018188538,0.011461271,0.012359551,0.001403973,0.0041471706,-0.02979406,0.02913838,0.012307097,-0.0014424941,-0.0059371744,-0.009068042,0.0057634194,0.01910649,-0.011907133,0.017926266,0.011494055,0.00551754,-0.0030751352,-0.0144642815,-0.01669359,0.0035013265,0.005445415,0.019670373,-0.019224511,0.0003714832,0.025925552,0.0017424673,-0.00093188393,0.011985814,0.016195275,0.025794417,-0.016588682,-0.0114153735,0.014765894,-0.016391978,-0.009717165,0.014831462,0.007094448,0.0025882933,-0.027695887,-0.020090008,0.013041458,0.02405031,-0.022240635,-0.002080142,0.0005909308,-0.01052365,0.0022506185,-0.008694305,-0.012346438,0.0011121957,-0.0242339,-0.037268803,-0.027407387,0.025715735,0.013356184,-0.015513368,0.024273241,0.0245224,-0.026397642,0.004550413,-0.0038094956,0.026882844,-0.013729921,0.019486783,0.025164966,-0.008963133,0.012549698,-0.0076124347,-0.019027809,-0.023604449,0.006638751,0.004117665,0.0014826544,-0.010608888,-0.011821895,0.014280692,-0.013743035,-0.004756952,-0.0354329,-0.011212113,-0.0032111886,-0.036691803,0.027040208,-0.02584687,0.0137954885,-0.012077609,0.040206242,0.003920961,-0.018634401,-0.009815517,-0.02090305,0.013965965,-0.008327125,-0.0137823755,-0.0014269217,-0.0042881416,-0.024496172,0.010536764,0.0075009693,0.0015555987,0.00075485057,0.016273957,-0.002660418,0.0065666265,0.0071141184,-0.007973058,-0.04385182,-0.0111072045,-0.005343785,-0.00055609783,0.009553245,0.015670732,0.031157872,-0.034357585,-0.048992343,-0.0038390013,-0.040835697,-0.013847943,-0.003504605,0.023709357,0.006091259,0.004012756,0.0049012015,0.0043864935,0.028482702,0.00034095315,-0.024469946,-0.021257117,0.03162996,-0.0009523739,-0.0003686146,0.0046356516,-0.023604449,-0.003357077,0.021427594,-0.022712724,-0.009841744,-0.0075337533,-0.008346795,-0.0064945016,0.0005778172,0.011900576,0.006786279,-0.007953388,0.0069829826,-0.043038778,0.004632373,0.0034488721,-0.01563139,-0.021139095,0.01101541,0.003173487,0.0025915718,-0.0051470813,-0.030056331,0.0006782181,-0.0012482491,-0.0097302785,-0.003812774,0.0065174503,0.0008167303,0.020968618,-0.008451704,0.0043045334,-0.009094269,0.003222663,-0.020273598,-0.018857332,0.009979436,0.002245701,-0.0013949573,-0.0042094598,-0.029741606,0.008969691,0.017060772,-0.009527017,-0.012982447,-0.005668346,0.016628023,8.913138e-05,-0.03181355,-0.010228595,-0.0057371925,0.012405449,-0.008215659,-0.020378508,-0.0062617357,-0.030738238,-0.0029948144,0.0037144222,-0.012248086,0.0005274119,0.00302432,0.0114678275,-0.010130242,0.005137246,0.20320807,-0.011736657,0.010792478,0.009376211,0.0062519005,-0.023774926,0.044192772,-0.007507526,-0.0032210236,0.0031767653,0.001483474,0.018201653,-0.018634401,0.0053995177,-0.006753495,-0.030397285,-0.03949811,-0.003612792,-0.012182518,-0.025545258,-0.012654607,-0.009553245,-0.0060781455,-0.022568475,0.030239921,-0.012943106,-0.02572885,-0.017768905,0.009671267,0.015933003,-0.006156827,-0.02572885,0.0036095136,0.00404554,-0.0072452542,-0.003580008,0.0068059494,-0.018804878,0.020339167,-0.0151199605,-0.000866316,0.010530206,-0.0060847024,8.713361e-05,-0.020916164,0.01665425,-0.021466935,0.0111203175,-0.009009032,0.009002474,-0.03488213,0.00055568805,0.0266468,0.015696958,-0.01738861,0.012248086,0.019906418,0.007815695,-0.027564751,0.017427951,0.0053175576,0.016352637,-0.020824369,0.018726196,-0.023106132,0.032862637,0.012575925,0.0035570592,-0.0036652463,0.0068977443,0.0151724145,0.002768605,-0.021821002,-0.0017096833,-0.016431319,-0.004117665,0.019355647,0.012333324,0.025099397,0.022450453,-0.020273598,-0.0026636964,0.0019670373,0.013428308,-0.0069436417,-0.029662924,0.00020100664,-0.0041897898,-0.018608173,0.00858284,-0.0012244808,0.0013023426,-0.010169583,-0.005576551,0.020299826,0.026568118,-0.005855215,0.016090365,-0.011172772,-0.0067043193,-0.023945402,0.041596282,0.00035775494,0.014792121,-0.027695887,-0.020889936,-0.021322684,0.037216347,-0.014595417,-0.02913838,0.01246446,-0.011323579,0.013585672,0.005474921,0.017808245,0.016418206,0.020942392,-0.011926803,0.008622181,-0.021034187,0.0010540042,-0.019211398,0.020483416,-0.0042717494,-0.012575925,-0.010458082,-0.03202337,-0.02591244,-0.007868149,-0.0354329,0.052873965,-0.008759873,-0.018057402,0.002766966,-0.0054814774,0.0055536022,0.02342086,-0.0015965786,-0.006268292,0.006455161,0.017847586,-0.010444968,-0.0062551787,0.011303908,0.017768905,-0.019670373,0.011376033,0.0167985,0.0018555719,0.007068221,-0.021060413,-0.012189075,0.012556255,0.0041897898,0.006422377,-0.01767711,-0.01228087,-0.025007602,-0.014175783,-0.0058716065,-0.008117308,0.01434626,0.023879834,-0.01698209,-0.017441064,-0.00893035,-0.16753913,0.011480941,0.015316664,-0.03191846,0.006422377,0.005196257,0.025374781,0.035931215,-0.001640837,0.012864425,-0.01317915,-0.014188896,-0.018070517,0.0138086025,0.00076140737,0.011953031,-0.020653892,0.0117628835,0.015539595,0.005579829,0.016234616,-0.005927339,0.0029866183,0.005091348,0.0036586896,-0.015251096,-0.018568832,0.005989629,-0.0075730938,0.010530206,-0.0069174147,0.01873931,0.041386466,0.0069239717,-0.009448336,0.0058289873,-0.010281049,-0.008504158,-0.016418206,0.019709714,0.037426166,0.0019162223,-0.002130957,0.008425477,0.0073960605,0.0178607,-0.011867792,-0.013559444,0.0019785117,-0.031210326,-0.004524186,0.0199851,0.022634042,-0.017362384,0.020076895,0.02057521,-0.00041942974,0.019644147,0.02247668,-0.009664711,-0.018057402,-0.01845081,0.019027809,-0.010064675,0.0023424136,-0.012851311,-0.018437697,0.0010015499,-0.01910649,0.023079906,-0.01808363,-0.013467649,-0.0077370135,-0.016785385,0.03107919,-0.011579294,-0.03590499,-0.013061129,0.009599143,-0.0021063692,-0.015054393,0.010385958,-0.018975355,-6.643873e-05,-0.007822252,0.020955505,-0.0047995714,-0.010018777,0.0034587074,0.010353173,0.027564751,-0.030764464,-0.014805235,-0.033544544,-0.0011835009,0.00997288,0.015946116,0.007986172,0.0076386617,-0.017126339,0.012674278,0.00402587,-0.024168333,0.0031866005,0.026305847,-0.03378059,0.017126339,0.0031357855,0.022397999,0.010254822,0.0037144222,0.008104194,0.010353173,0.015828094,-0.021716092,0.033282273,0.017939381,-0.04597622,0.026332073,-0.004350431,0.030397285,0.010825262,-0.0031144759,0.005851936,-0.022384886,-0.0074878554,-0.09231962,-0.009749949,0.020916164,0.032915093,-0.006281406,0.02492892,0.01877865,0.001732632,-0.02961047,0.01489703,-0.0016514917,-0.0021014516,-0.004084881,-0.0050585642,0.013847943,-0.026082916,-0.02441749,-0.013284059,-0.010169583,0.02738116,0.020771915,-0.02266027,-0.017873812,0.0017670552,0.0013318482,0.015841208,-0.030475965,0.02127023,0.023971628,0.0036455758,-0.012910322,-0.015500255,0.01121867,-0.021152208,-0.003422645,-0.012536584,-0.014320032,-0.008163205,0.0016834561,-0.03404286,-0.022738952,-0.0114153735,0.003396418,-0.03220696,0.01710011,-0.01841147,-0.02654189,0.007763241,0.005855215,-0.006655143,-0.01804429,0.0013375854,-0.04736626,-0.021571843,0.03236432,-0.033911724,-0.004671714,-0.007664889,0.016116593,-0.0032833132,-0.014097101,-0.00080033834,-0.020942392,0.028063066,0.039839063,-0.0004417638,0.0014031533,0.024365036,0.0042094598,-0.015290437,-0.009920425,-0.021821002,-0.015972344,0.018188538,-0.01749352,0.007251811,-0.0014072513,-0.0006138796,0.0051503596,0.0120841665,-0.0048094066,-0.003157095,0.010694127,-0.0018293448,0.0019129438,-0.006963312,0.038658842,0.0024128992,-0.012759516,-0.0015998571,-0.02090305,0.043589547,0.0045209075,-0.027958158,0.002062111,-0.0034324802,-0.017834472,-0.0051077404,0.02401097,0.0011507169,0.00020131397,0.00018307791,-0.07107562,0.012582483,0.00014045877,-0.008956577,-0.028272884,-0.008812328,0.014660985,0.010976069,-0.017978722,0.008025512,-0.007317379,0.019211398,-0.00031513578,-0.0078091384,-0.012739846,-0.032075822,0.014923257,-0.011664531,0.010300719,0.021388253,0.0011482581,0.0036193489,0.037347484,0.0028866273,-0.018726196,0.022227522,0.0046913843,-0.001011385,-0.029584242,0.019093376,0.009389325,-0.022699611,-0.0104646385,0.025978006,-0.012366109,0.007107562,-0.00029321152,0.023670016,0.0025702622,0.03162996,-0.013211934,-0.021388253,-0.0062289517,-0.006373201,-0.0058683283,-0.0019195006,-0.022450453,-0.006166662,0.048179302,0.009454893,0.03441004,0.0031521774,-0.017834472,0.0038980125,-0.018896673,-0.0043799365,-0.0050520077,0.0033095405,-0.023106132,-0.028089294,0.010976069,0.03795071,0.0013367658,-0.003116115,0.013198821,0.01910649,-0.016680477,0.022830747,0.022896316,-0.03396418,-0.010025334,0.0035406672,-0.006422377,0.02090305,-0.0058781635,-0.0027128723,-0.013061129,-0.0011335053,-0.026633685,0.020614551,0.012156291,0.0036062351,-0.008130421,0.009140167,0.001040071,0.025650168,-0.026161596,0.032311868,-0.0009794207,0.008779543,0.014097101,0.008654964,0.018765537,-0.0026046853,0.006619081,0.020181803,-0.0027210684,-0.006514172,0.009415552,-0.011297352,0.030371057,0.008268114,-0.010884274,-0.029767832,-0.01734927,-0.010779365,0.005550324,-0.040284924,-0.014779007,0.0005028239,-0.0027161508,0.018804878,0.00043438742,0.009461449,-0.0023555274,0.0023981463,0.008609067,-0.0022932377,-0.03202337,0.03383304,-0.023748698,0.014477395,0.002304712,-0.004199625,0.027512295,0.002476828,0.016300183,-0.011448158,0.0012900487,-0.018018063,-0.0080714105,-0.009395882,-0.01211695,-0.008123864,-0.011021966,-0.025125625,0.008543499,0.009205735,-0.014726553,0.04770721,0.0138217155,-0.01350699,0.010300719,0.007094448,0.020981733,-0.00843859,0.003340685,-0.034357585,-0.017441064,-0.0045372997,-0.005461807,0.008622181,-0.022647157,0.0023014338,0.018254107,-0.0060781455,0.002321104,-0.010700683,-0.008687749,0.018359015,-0.005891277,-0.025833758,0.00333085,0.0048749745,-0.005602778,0.0042553577,-0.0067075975,0.0023997857,-0.020876823,-0.018988468,0.008936906,-0.021466935,-0.015539595,0.013218491,-0.0144642815,-0.0075206393,0.01647066,0.013965965,0.03580008,-0.00024116698,0.027774567,-0.011887463,0.0058978335,-0.027223798,0.003314458,0.004465175,0.00845826,-0.028482702]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('412d91c6-a5da-11ee-b807-27dd99e150b1', 'Health & Wellbeing', 'this article is about self help', '[0.008062081,0.026550313,0.0099344775,-0.023694571,-0.02452974,0.021013945,-0.0070854714,-0.018090852,-0.01831985,-0.013968886,-0.0066510485,0.011726052,-0.021579707,0.025378382,-0.001053223,-0.0010086021,0.049409714,-0.005745159,0.008311285,-0.0035258976,-0.010769648,0.010480032,-0.000119129545,0.003461913,-0.018131264,0.011894432,0.0152620515,-0.031493977,0.0040411437,-0.016043339,0.011045792,-0.0041758483,0.009543834,-0.017646326,-0.008654783,0.0031504082,-0.004798858,-0.005499323,0.02083883,-0.021727882,0.015235111,0.004310553,-0.009739156,0.0139823565,-0.036127824,0.0029146748,0.018239027,-0.011025586,-0.009974889,0.01633969,0.022576522,0.015612285,-0.05943175,0.013968886,0.007098942,0.013308832,0.008250668,0.023290457,0.021849116,-0.01857579,0.0034215015,-0.021674,-0.023923568,0.011079469,-0.015814342,-0.008755811,-0.0024128994,0.004408214,0.019491782,0.0076781726,0.02420645,0.013645594,-0.025728613,0.019357078,0.0058293496,-0.025849847,-0.014777115,0.0034012957,0.0208523,-0.0044115814,-0.0055026906,-0.009139719,-0.016838098,0.015922105,0.023196163,-0.0027984919,-0.013012482,0.020771477,0.0024785679,-0.011187232,-0.0069305613,0.00055186864,0.011476847,-0.007300999,-0.005240016,0.028261064,0.012857571,0.006105494,-0.0035831472,-0.018346792,-0.020663714,0.00929463,-0.03014693,-0.009537099,-0.017686738,-0.014763644,-0.0031908196,-0.003788572,0.014049709,-0.011786669,-0.036451112,-0.0079610525,-0.006166111,-0.041542955,0.0040781875,-0.018346792,-0.0139823565,-0.0057721,-0.010069182,-0.024381565,0.026631135,0.009213807,0.028288005,0.003229547,-0.0037043814,0.008560489,-0.04954442,0.008708664,-0.0001725905,-0.0039704232,0.02086577,0.022334052,0.037555695,-0.0011938211,-0.0109312935,0.023990922,0.009698744,-0.001504484,-0.027695304,-0.010089388,0.01141623,0.039037447,-0.023842746,-0.019788133,-0.014575058,-6.893096e-05,0.01605681,0.01111988,-7.535049e-05,0.012972071,-0.0023303928,-0.027830008,0.00857396,-0.0045900657,0.015315934,0.028557414,-0.009510158,0.0032177605,-0.034484424,-0.016784215,-0.006593799,-0.015612285,0.0056710714,0.0006604744,-0.005640763,0.02504162,0.027466305,0.011436436,0.012992276,0.016824627,0.0110121155,0.048924778,-0.0054252353,0.012911454,-0.006098759,0.01631275,-0.018710494,0.016514806,-0.015989458,0.0026604196,-0.03602006,0.040384494,0.043725174,0.04140825,-0.0075838794,-0.00082380394,0.0039872616,-0.0071662944,0.006398477,-0.006957502,-0.002310187,0.017336506,0.009840184,-0.010628208,-0.6694289,-0.021135181,0.017242212,0.011672169,0.009234013,0.0067082983,0.008493137,0.014332589,-0.0038963358,0.022724697,0.00023299718,0.013093305,-0.0060516126,-0.0027025146,-0.00260317,-0.007745525,0.0057855705,-0.045179985,-0.000318661,-0.0049537686,0.010345328,0.014413412,-0.026671547,-0.0034046634,0.01633969,0.003461913,0.011907903,-0.0030308575,0.00817658,0.015033054,-0.0109110875,0.023600278,-0.00029803434,0.027008308,0.039522383,-0.017915737,-0.022091584,0.015531462,0.005977525,0.04165072,-0.03041634,-0.014830996,0.0018606099,-0.011059263,-0.0057754675,-0.017754091,0.02001713,0.0019767927,0.019262783,0.0044654636,0.013746623,-0.0010203887,-0.0008966287,0.0027412423,0.002160328,0.004950401,0.013564772,-0.0019818442,0.029688934,0.026981369,-0.0010759544,0.01409012,-0.020407775,-0.014561587,-0.012352428,-0.0045732274,-0.006189685,0.00843252,-0.008014934,-0.0023522822,0.007913906,0.010291445,-0.018265968,0.0013495735,0.03631641,0.031467035,0.0045732274,-0.010506973,0.002726088,0.0016476079,-0.0059169075,0.008533548,-0.0098940665,-0.0009681906,0.042135656,-0.018966433,-0.011793404,0.003089791,-0.004879681,0.008762546,0.024947325,-0.011806875,-0.008048611,0.0025273985,-0.0014918555,-0.00050135434,-0.0038693948,0.009112778,0.02478568,0.010352062,-0.0035764119,-0.014426882,0.010096123,0.015639225,-0.0012409678,0.003832351,-0.011490318,0.021310296,0.02562085,-0.0098738605,0.021795234,0.015935576,-0.0172018,0.020461656,0.0067756507,-0.030793514,0.017282624,-0.005805776,-0.009489952,-0.012527545,0.028126359,-0.005556572,0.023815805,0.0066072694,0.0004727296,0.031682566,-0.035077125,0.0040478786,-0.017080566,-0.030066108,-0.0034551776,-0.008674988,0.011577876,0.0071999705,0.019181961,-0.010520443,-0.01198199,0.0016897031,0.02082536,-0.010459826,-0.018481497,-0.015396757,0.0160164,-0.0055397344,-0.013901534,-0.0320328,0.006886782,-0.009644862,-0.009469747,0.008486401,-0.016191514,-0.025540026,-0.03348761,0.01693239,-0.001017863,-0.0011517259,-0.0025694938,-0.031035982,-0.0109717045,-0.004566492,0.0040680845,0.030928219,-0.033325963,-0.010405945,-0.014736704,0.0043846406,0.0028540576,0.02590373,0.011537464,-0.019882426,-0.0012274974,0.0031453567,-0.01942443,-0.00054723816,-0.017861854,0.016124163,-0.0023051356,-0.0028288004,0.0020912918,0.017026685,-0.015625754,-0.029203996,-0.01687851,-0.0073616165,0.010150005,-0.007920641,0.03459219,0.01195505,0.0055195284,0.012480398,-0.0099344775,0.019828543,-0.0006882572,0.022724697,-0.018750906,-0.003886233,-0.022037702,0.006186317,0.025849847,-0.005617189,0.018548848,-0.0012325487,0.030604927,-0.02337128,0.024031334,-0.02451627,-0.0014910136,0.0007421392,0.02000366,-0.0037649986,-0.00775226,-0.0032329147,-0.019289725,-0.0055363667,-0.010601266,-0.0049167247,0.00068741536,0.008257403,-0.03914521,-0.005718218,0.015935576,-0.017767562,0.0047954903,-0.0046170065,-0.008971338,0.038552508,0.010352062,0.024368094,0.0013883011,-0.0074693803,-0.0067082983,0.010702295,0.025311029,0.0053174715,0.009126249,0.011375819,0.029931402,-0.036531936,0.022778578,0.007132618,0.0057586296,0.022576522,-0.013295362,-0.013605183,0.006782386,0.0069103553,0.030551044,0.008264138,-0.013295362,0.0020121527,-0.01027124,0.01041268,-0.019949779,0.012931659,-0.0005640763,-0.0025896993,-0.0045193452,-0.010392474,0.013733152,0.01633969,0.020677185,0.008055346,0.006310919,-0.0074491743,0.009799773,-0.00022057908,-0.0046607857,-0.004539551,-0.007947582,-0.008493137,-0.010277975,-0.0036673376,0.007098942,-0.013167392,0.026253963,0.034753833,0.00014322907,-0.0010136535,0.016851569,0.029527288,-0.037286285,-0.010493503,0.017929206,0.02283246,-0.014884879,-0.012150371,-0.018454555,0.03354149,-0.022360994,0.007516527,-0.001752846,0.037367105,0.007078736,0.0011492001,-0.014763644,0.0045799627,0.02366763,-0.0031133643,0.0044688312,-0.0087356055,0.0066712545,-0.010634943,0.007779201,-0.011321937,0.01693239,-0.0033524653,-0.013315568,-0.008749075,-0.011618287,-0.027493246,-0.001549105,0.0009673487,0.006566858,-0.009766097,-0.0020054174,-0.007321205,-0.022616932,0.020394305,0.022576522,-0.00915319,0.023196163,-0.008567224,0.00022647242,0.020394305,0.11444518,-0.0027900727,0.007523262,0.011146821,0.008553754,0.004381273,-0.0089780735,-0.022158938,0.017686738,-0.0073077343,0.013915004,-0.018683553,0.0052164425,-0.007779201,0.021000475,0.009031956,-0.015235111,-9.329359e-05,-0.01690545,-0.0041994215,0.008243932,-0.02734507,0.007927377,0.03259856,0.029042352,-0.0033389947,0.030470222,0.020232659,0.006391742,-0.0038997035,-0.0074424394,0.008412314,0.009516893,0.013167392,-0.021539295,0.014844467,0.0025105604,0.02087924,0.011800139,-0.011086203,0.009597716,0.003603353,0.017026685,-0.016474394,0.008553754,-0.022926753,0.0053174715,0.033029612,-0.013174128,0.0008225411,0.009799773,0.010109594,-0.014857938,-0.043832935,0.015302463,0.0028894176,-0.023047987,0.0058933343,-0.00887031,-0.028261064,-0.015962517,-0.030119989,-0.003778469,-0.0020592993,0.013174128,-0.022495698,-0.008850104,-0.0036168233,0.0046304767,0.011577876,0.03405337,-0.013820711,-0.000103764774,0.023896629,0.008136169,-0.0015423697,0.015733518,0.012776748,-0.00775226,0.009665068,-0.00529053,-0.015342874,-0.01029818,-0.03122457,-0.008156375,0.0071056774,-0.014615469,-0.0023691203,-0.025405321,0.030685749,0.004556389,0.022051172,0.013140451,0.0041994215,0.010938028,0.0012628573,0.013888063,0.0046271095,-0.0011710897,0.009025221,0.012076284,-0.023438632,-0.009355247,-0.018050442,0.005469014,0.009166661,0.0064153154,0.01631275,-0.013766829,-0.024920385,0.030658808,0.0061459057,-0.0032026062,0.0035932502,0.001585307,0.0120695485,0.009631392,-0.0017595813,-0.009530364,-0.00299213,-0.017525092,-0.04536857,0.0033861415,0.00803514,-0.01973425,0.016002929,0.0044823014,-0.028746001,-0.012487133,0.001097844,4.796227e-05,0.00408829,-0.014588528,-0.03100904,-0.017094037,-0.023209633,-0.029069291,0.027425895,-0.0022024233,-0.02985058,-0.010022036,-0.007213441,-0.010022036,-0.0021855852,0.022859402,-0.03294879,-0.0030342252,-0.00872887,-0.022630403,0.013760094,-0.002337128,-0.007072001,-0.01942443,-0.01690545,-0.018818257,-0.008951133,-0.010352062,0.0013209488,0.023034519,0.023196163,0.018697023,0.00090252206,0.00095977157,0.011571141,0.004532816,-0.026873603,0.0036808082,0.0050413264,-0.026967898,0.0073414105,0.015800871,0.00563066,0.019815074,-0.009449541,0.008196786,0.026792781,-0.0026503166,-0.035400417,-0.017471211,-0.03685523,-0.0064489916,0.004007467,-0.023721512,0.0052029723,-0.03464607,-0.0025526555,0.0354543,0.023977451,-0.0033255243,0.010379003,0.0033777223,-0.00056954863,0.020717595,0.013281891,-0.021781763,-0.03717852,0.0040344084,-0.02280552,-0.006374904,0.038687214,0.026051905,0.0074761156,-0.00521981,0.0014623888,-0.020367363,0.018225556,-0.008452725,-0.020973535,-0.008196786,-0.011072733,0.01252081,-0.0160164,-0.01629928,-0.009503422,0.01714792,-0.019020315,-0.0071528237,0.045799624,0.004815696,-0.03294879,0.010816794,-0.016124163,0.014696292,0.012244665,0.022630403,0.018333321,0.0007160401,-0.025311029,0.018697023,0.0034484423,-0.0157874,0.010513708,0.03184421,-0.0036976463,-0.020609831,0.014413412,-0.009335041,-0.027250778,-0.030335518,0.016474394,0.030012226,0.013423332,-0.009927742,0.005142355,-0.025661262,0.035427358,0.010837,0.0037313225,-0.0049975473,-0.010304916,-0.012716131,0.013787035,-0.00843252,0.012527545,-0.0015364764,-0.005745159,-0.020717595,0.002106446,-0.022387935,-0.013504154,-0.0073750867,0.015423697,-0.0174308,0.006950767,0.034268897,0.00083937915,0.0050413264,-0.004108496,0.008223727,0.027587539,-0.026833193,-0.017107507,0.010998646,-0.013059628,-0.0052871625,0.024866503,-0.00087979063,0.0005367144,-0.027991654,-0.011860756,0.0060583474,0.013430066,-0.03720546,-0.0055060578,0.0099142715,-0.026940957,-0.0039805262,-0.011651964,-0.016097222,-0.0053174715,-0.020987006,-0.044964455,-0.014871408,0.032544676,-0.0016324535,-0.018373732,0.008089022,0.025513086,-0.026698489,0.012143636,-0.0073144697,0.018683553,-0.0015575241,0.0078196125,0.016838098,-0.020731065,0.03373008,-0.0021670633,-0.028826823,-0.027210366,0.012527545,0.008755811,-0.0060852887,-0.0020862403,0.001424503,0.015450639,-0.013019217,-0.0048897834,-0.042970825,-0.012574691,0.0027934404,-0.014292178,0.026725428,-0.003973791,0.010379003,-0.020461656,0.026792781,0.0050076502,-0.016433984,-0.009463011,-0.0107225,0.018521907,-0.0057384237,0.010392474,-0.009456276,-0.0032497528,-0.021808704,0.0060078334,-0.002347231,0.003231231,0.0017216955,0.0022108422,0.000592701,-0.005654233,-0.0017427431,-0.01577393,-0.046931148,0.010062447,-0.014682821,-0.0018201984,0.0043509644,0.023021048,0.027493246,-0.028934587,-0.027102603,-0.0019448003,-0.044156227,-0.017376916,0.011113144,0.029123174,-0.00018458765,0.009119513,-0.002832168,0.0057518943,0.013874592,-0.007132618,-0.0072336467,-0.020434715,0.013180863,-0.0026435812,-0.025742084,-0.009759362,-0.013329038,0.012823896,0.02056942,-0.008533548,-0.019559134,-0.007415498,0.0071528237,0.007516527,0.012433251,-0.00070635823,0.010675354,0.006526447,0.0039603207,-0.02365416,0.010405945,0.013968886,-0.010877411,0.00327501,0.018373732,0.015127347,0.00704506,-0.0003321315,-0.029985284,-0.016541747,-0.008607635,-0.012480398,0.010675354,0.00514909,0.013672535,0.028934587,-0.014049709,0.0034417072,-0.0028978367,0.006583696,-0.010203888,-0.021471942,0.005724953,-0.0087760165,-0.0019599546,-0.006425418,-0.021808704,0.0037279548,0.016757274,-0.017888796,-0.000964823,-0.011025586,0.004051246,0.003160511,-0.022118526,-0.017552033,-0.028503532,0.00043568577,-0.001425345,-0.014575058,-0.014022768,-0.024112156,-0.013409861,-0.013672535,-0.010123065,-0.0019128079,0.0021670633,-0.013692741,0.0010944763,0.017807972,0.20712207,-0.026833193,0.0022142099,0.006236831,0.017296094,-0.017969618,0.035966177,-0.012002196,-0.01772715,0.0039771586,-0.0004053772,0.007799407,-0.024691386,0.004950401,-0.017538562,-0.032841027,-0.035696767,0.008971338,-0.016555218,-0.012897983,-0.017296094,-0.019815074,-0.016272338,-0.014804056,0.030766573,0.0031571432,-0.014628939,-0.00345181,0.018279439,0.009368718,-0.0060549797,-0.020919653,0.0139823565,0.005327574,-0.013396391,0.0058192466,0.025459204,-0.020394305,0.024597093,-0.00092188583,-0.009617922,0.012527545,-0.008452725,-0.0034282368,-0.0015095355,0.024219919,-0.026456019,0.022401405,0.01662257,0.0075973496,-0.025593909,0.010203888,0.033379845,0.0067318715,-0.03777122,0.008762546,0.020488597,0.013544566,-0.011995461,0.004142172,0.022603463,0.021350708,-0.015235111,0.01664951,-0.02280552,0.017659796,0.004718035,0.007159559,-0.006853106,-0.006984443,0.011247849,-0.003141989,-0.021498883,-0.010372268,-0.008311285,-0.015113876,0.028018596,0.0098940665,0.026671547,0.035966177,-0.013355979,0.0015474212,-0.010089388,-0.0044385227,-0.0047348733,-0.035939235,-0.015652696,0.0024415243,-0.023196163,-0.009213807,0.008358432,0.008755811,-0.010803323,0.0017898898,0.020434715,0.014144002,-0.013517625,0.019006845,-0.010998646,-0.0027058823,-0.018239027,0.059000693,-0.022940224,0.021593176,-0.019774662,-0.007516527,-0.015127347,0.020178776,-0.014346059,-0.0053073685,-0.0030308575,-0.023155753,0.004647315,0.009368718,0.016716864,0.018966433,0.010392474,-0.010277975,0.0076781726,-0.03289491,0.015194699,-0.015814342,0.008344961,-0.0009757678,-0.015598814,0.011113144,-0.03238303,-0.012116695,-0.005886599,-0.046338446,0.022940224,-0.006822797,-0.020165306,-0.010163476,-0.0030796882,0.007159559,0.0003984315,-0.010311651,-0.0008200154,-0.0072538527,-0.008607635,-0.01605681,-0.026173139,0.0016139317,0.009186866,-0.015423697,0.0042196275,0.019047257,-0.0047348733,-0.0036134557,-0.019491782,0.010756177,-0.000708042,-0.003433288,0.027210366,-0.017861854,-0.008695194,-0.022307113,0.001672865,-0.004610271,-0.018346792,0.02031348,0.0141035905,-0.026307844,-0.019909367,-0.008425784,-0.1737153,0.0037818367,0.017578974,-0.04846678,0.015113876,0.010958234,0.01914155,0.027964713,-0.0007484534,0.019464841,0.0022243126,-0.008930927,-0.03443054,-0.00010350168,0.0071393535,0.0039872616,-0.011079469,0.018670082,0.015127347,0.012466928,0.02054248,-0.0067655477,0.0067049307,0.006869944,0.0040310407,-0.0070585306,-0.0118876975,0.002264724,0.0012401259,0.0039401148,-0.00513562,0.008890515,0.036424175,0.015868224,-0.0152216405,0.014736704,0.008930927,-0.0022714594,-0.00011986621,0.017767562,0.02985058,-0.0018841831,0.0016080383,0.015517991,-0.0001394405,0.024260331,0.0029517186,-0.023263516,-0.00013533622,-0.0035831472,-0.014319118,0.0012140268,0.0018690289,-0.016433984,0.03518489,0.0027766023,0.0021401222,0.013201069,0.005125517,-0.002247886,0.0036403968,-0.018670082,0.006752077,-0.013342509,0.016662981,-0.01240631,-0.0058293496,-0.009260953,-0.016528277,0.01209649,-0.023842746,-0.0034854861,-0.0005304001,-0.0022192614,0.0047045643,-0.007368352,-0.029473407,-0.0130461585,0.00096650684,0.0018572422,0.0053410446,0.012076284,-0.0029635052,-0.01435953,0.008142904,0.02901541,0.0031268348,-0.013019217,-0.0038121454,-0.0026873604,0.018979903,-0.03429584,-0.027668362,-0.033110436,-0.00095135253,0.021727882,0.005428603,0.0040310407,0.016110692,-0.024341155,0.0047382405,0.0098940665,-0.011712581,-0.0036067206,0.03408031,-0.03375702,0.0151004065,0.002380907,0.025149383,-0.005724953,0.0008747392,0.01338292,0.0031487243,0.01972078,-0.010655148,0.016487865,0.015396757,-0.036774404,0.001424503,-0.01363886,0.03373008,0.013012482,-0.019464841,0.0025779128,-0.0014506021,-0.011550935,-0.10927252,-0.024112156,0.0394685,0.026267432,0.004505875,0.016757274,-0.004320656,0.00598426,-0.027937772,0.015383286,0.0058663934,-0.019666899,-0.0026604196,-0.00775226,0.010702295,-0.013659065,-0.019855484,-0.019666899,-0.008782752,0.025378382,0.0034720157,-0.027937772,-0.019545663,-0.004674256,0.004835902,0.032248326,-0.048628427,0.036962993,0.015706578,-0.005708115,-0.021229474,-0.003071269,0.023559866,-0.029769758,0.017026685,-0.009409129,-0.008957868,-0.0049537686,0.013369449,-0.008964603,-0.01803697,-0.016393572,0.010567591,-0.035669826,0.0039098063,-0.033595372,-0.019181961,-0.0097526265,0.017255682,-0.016824627,-0.020219188,0.00095808774,-0.036774404,-0.027075661,0.013167392,-0.032086678,-0.00520634,-0.012891248,0.020892711,-0.0016097222,-0.0063479627,0.005869761,-0.014790585,0.03270632,0.04248589,-0.00086632016,-0.0047315056,0.01608375,0.005980892,0.0015112193,-0.0023842747,-0.00844599,-0.009537099,0.023869688,-0.016501335,0.009341776,-0.01945137,-0.022185877,0.016474394,-0.0018791318,-0.0043240236,-0.0017141184,0.005825982,-0.013470478,0.005980892,-0.012695925,0.028880706,0.026321314,-0.003630294,-0.011294996,-0.0021468576,0.044587284,0.014588528,-0.013726417,0.019060727,0.005054797,-0.01223793,-0.0063951095,0.009065632,0.0068362677,0.0066005345,-0.016258867,-0.06244914,0.01041268,-0.0013158973,0.010810059,-0.022845931,-0.012015667,0.003088107,-0.0037144844,-0.012567956,0.0054218676,-0.006199788,0.039091326,0.0068025915,-0.0016972802,-0.017040156,-0.04062696,0.021175591,-0.015666166,0.00059775246,0.038983565,-0.004798858,5.8670248e-05,0.037501812,0.0030679014,-0.009213807,0.02339822,-0.0041118637,0.025001207,-0.025849847,0.008021669,-0.011173761,-0.024610564,-0.011348878,0.020717595,-0.006950767,-0.0018606099,0.0061728465,0.01721527,0.014696292,0.03857945,-0.01380724,-0.010729236,0.00040243054,-0.0037751016,-0.01266225,0.00060069916,-0.035077125,-0.00036875435,0.033972546,0.0048190635,0.034215014,0.013140451,-0.029608112,-0.008802958,-0.014440353,-0.013712947,0.00050977344,0.012163842,-0.019478312,-0.025243675,0.011530729,0.016029868,0.00387613,0.007523262,-0.0026301108,0.026051905,0.00066889345,0.018548848,0.009631392,-0.03243691,-0.001698964,0.004064717,-0.003081372,0.007462645,0.01466935,0.014804056,-0.026227022,0.0051659285,-0.018158205,0.018952962,-0.003088107,-0.0038121454,-0.01226487,0.02451627,0.015733518,0.021808704,-0.026631135,0.029796697,0.0039333794,-0.006657784,0.0025341336,0.013268421,0.015800871,0.0022714594,0.017228741,0.02562085,0.001584465,0.004765182,0.024610564,0.01687851,0.037313223,0.0031655624,-0.001558366,-0.03300267,-0.022711227,0.021081299,0.005724953,-0.025082031,-0.016851569,0.0044823014,-0.00078886485,0.010742706,-0.0028793148,0.0064826678,-0.023559866,0.020434715,0.013632124,-0.0005594458,-0.03688217,0.04076167,-0.015517991,0.00210813,0.0074693803,-0.009287895,0.011880962,-0.003468648,-0.0024415243,0.002690728,-0.010877411,-0.023761924,-0.014763644,-0.00027235624,-0.033325963,-0.004815696,-0.013194334,-0.04146213,0.0049874447,-0.0017949413,-0.0202596,0.042432006,0.016784215,-0.012770013,0.010587796,0.009947948,0.019303195,-0.0015448955,0.020784948,-0.02877294,-0.01996325,-0.002894469,-0.019842014,-0.014601998,-0.03973791,-0.0062637725,0.020151835,-0.0028624765,-0.0003205553,0.01029818,0.014790585,0.025782496,0.017323036,-0.016999744,-1.8574527e-05,-0.0087154,-0.014615469,0.023479044,-0.019410959,-0.0035124272,-0.018387202,-0.012877777,0.02030001,-0.04232424,-0.012197518,0.02254958,-0.0253245,-0.0034585453,0.003744793,0.010587796,0.025364911,0.0013655698,0.03747487,-0.027547128,-0.006984443,-0.01774062,-0.018939493,0.018979903,0.0028018595,-0.021418061]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('4134d0c6-a5da-11ee-b807-877f81fb9fd3', 'Health & Wellbeing', 'this article is about self care', '[0.02080381,0.028293181,0.016207159,-0.025994854,-0.025572175,0.024158835,-0.011002904,-0.012647395,-0.0072450093,-0.011029321,-0.0023940892,0.023564441,-0.02423809,0.016088279,-0.0038437515,-0.0048443154,0.048898857,-0.0037611965,0.0114718145,-0.005534474,-0.015308962,0.007931865,-0.0073242616,0.009298973,-0.0138559975,0.007812986,0.011973748,-0.02808184,-0.011095365,-0.016590212,0.013056867,-0.011095365,0.012370011,-0.020275459,-0.0015107528,0.008169623,0.0012647395,-0.0107849585,0.022243565,-0.029825397,0.010573619,0.000352509,-0.008275293,0.021186864,-0.021952972,-0.0067034494,0.020856645,-0.011769013,-0.013591822,0.011392563,0.017845046,0.012568142,-0.06128868,0.0070600864,0.007086504,0.009120654,-0.0039956523,0.016880805,0.022653036,-0.015810896,-0.00075331255,-0.022322817,-0.025308,0.004689113,-0.016656255,-0.0138559975,-0.008275293,0.0068883724,0.01563918,0.0029191377,0.029032871,0.0065119225,-0.017343111,0.018241309,0.010890629,-0.026602458,-0.012871944,0.001703931,0.02969331,0.002478295,-0.0015528557,-0.009292368,-0.022534158,0.021186864,0.020909479,-0.0020737764,-0.01119443,0.008301711,0.020288667,0.00040678878,0.0018541808,-0.0059307367,0.011438793,-0.0028993245,-0.008645139,0.034923982,0.01929801,0.010170751,-0.0049499855,-0.024158835,-0.01215867,0.022349235,-0.022798333,-0.011894495,-0.023287058,-0.010837794,-0.007449745,0.0012804249,0.017211024,-0.0022933723,-0.04041883,-0.0029356487,-0.012521911,-0.033418182,0.0025674542,-0.008744204,-0.014886281,-0.0041211355,-0.013671075,-0.025043823,0.026100526,0.016458124,0.017646914,-0.0041178335,0.0009832276,0.016141115,-0.043562517,0.0012110788,-0.0051877433,-0.007852612,0.015018369,0.012753066,0.024449429,0.004424937,-0.003355027,0.0148730725,0.0017452084,0.0012919826,-0.023973914,-0.015110831,0.0060859397,0.04224164,-0.026655294,-0.013096494,0.0018376699,0.0024370176,0.023855034,0.014991951,0.000279448,0.009358412,-0.009180093,-0.02476644,0.016577004,-0.0079847,0.007964887,0.028002588,-0.008460216,-0.0024056467,-0.031436868,-0.019047042,0.0029901348,-0.020883061,0.013605031,0.001961502,-0.0065581533,0.021358578,0.025387252,0.01651096,0.015084413,0.019971658,0.003044621,0.035531584,-0.011412376,0.0016337595,-0.010329257,0.01586373,-0.02413242,0.005861391,-0.02466077,-0.0059142257,-0.037222307,0.03376161,0.056797702,0.038622435,-0.0057359072,0.0008412334,0.010732124,-0.00073267386,0.0025558965,0.0045339097,0.004831107,0.03011599,0.0073837014,-0.01221811,-0.66825795,-0.013671075,0.027500654,0.017078936,0.01007829,0.011868078,0.012964405,0.0065416424,-0.005828369,0.024185253,-0.008242271,0.015401423,-0.0023016278,0.006736472,0.004352289,-0.0058580884,0.006739774,-0.03516174,0.0011681505,-0.0020209416,-0.0015627623,0.016035443,-0.026668502,-0.005078771,0.009226324,0.015665598,0.006828933,-0.002854745,0.0012795994,0.013400295,-0.011920913,0.023696529,0.009523521,0.028372433,0.040683005,-0.02401354,-0.018452648,0.022071851,-0.0027556792,0.03561084,-0.029508388,0.00034858764,0.0013497709,-0.02069814,-0.005405688,-0.014093755,0.021028358,0.00033372777,0.018413022,0.0051976503,0.017845046,-0.002788701,0.005646748,0.006607686,-0.00083875674,0.012548329,0.018518692,-0.010223586,0.035954267,0.026959095,0.003011599,0.020618886,-0.0124822855,-0.01628641,-0.008664952,0.010639663,-0.0022603504,0.0033005408,0.00229007,-0.0107651455,-0.0010624803,0.006076033,-0.020077327,0.00375129,0.031991635,0.032625657,0.0030049947,-0.00959617,0.0055311713,-0.0007941772,-0.0005894413,0.01141898,-0.012654,0.0026846821,0.046257105,-0.021886928,-0.0059802695,0.0064293677,0.00093369477,-0.0018624363,0.027183644,-0.009048006,-0.006828933,0.00010763082,0.0033087963,-0.015533511,0.00049615436,-0.00040245464,0.02508345,0.0054122927,-0.0018789473,-0.0051811393,0.013050263,0.009107445,-0.009272555,-0.001031935,-0.0012259388,0.016748717,0.016484542,-0.01544105,0.011432189,0.018518692,-0.016444916,0.03162179,0.006350115,-0.027183644,0.0047716675,0.0030049947,-0.018373396,-0.007905448,0.025730679,-0.007535602,0.016365664,-0.004269734,-0.0016651303,0.02273229,-0.032018054,0.007086504,-0.014622106,-0.032546405,0.0026714732,-0.012865339,0.014054129,0.001050097,0.0222964,-0.007258218,-0.013241789,0.006535038,0.019958448,-0.019377261,-0.02541367,-0.021028358,0.010633058,-0.010395301,-0.007898843,-0.023511607,0.0009832276,-0.011306705,-0.0062378407,0.0025360833,-0.016946848,-0.023022883,-0.03558442,0.015110831,-0.007469558,0.0074959756,0.0047254367,-0.02219073,-0.013070076,-0.0030743408,0.0036720375,0.032678492,-0.03273133,-0.014912698,-0.009424455,0.009695236,0.006247747,0.02283796,0.0097414665,-0.021358578,-0.008909314,0.0012870294,-0.013426713,-0.0019449911,-0.01328802,0.011716177,-0.0031304779,0.00019121755,0.005253787,0.011379354,-0.013406899,-0.026721338,-0.014727776,-0.012720044,0.0076148547,-0.0066043837,0.036244858,0.01313612,0.0100848945,0.011174617,0.0012928081,0.012198297,-0.013472944,0.018730033,-0.018069595,-0.013750327,-0.030142408,0.011669946,0.037063804,-0.012469077,0.020433964,-0.0016799902,0.035240993,-0.012541725,0.027817665,-0.018624363,0.0037017572,-0.0025889184,0.017937507,-0.006726565,-0.0003252659,0.00039956524,-0.029640475,-1.2460615e-05,-0.012376616,-0.00781959,-0.005237276,0.008513051,-0.036482617,-0.0031717555,0.017237442,-0.026813798,-0.0013728864,-0.010481157,-0.010976486,0.03772424,0.00078633445,0.02005091,-0.0037876142,-0.012224714,-0.014674941,0.009252742,0.023921078,0.0025525943,0.007687503,0.011973748,0.01919234,-0.033154007,0.024026748,0.009503708,0.006987438,0.026457163,-0.012561538,-0.009926389,0.015176875,0.005745814,0.033603106,0.0068355375,-0.003800823,-0.005366062,-0.011742595,-0.0044282395,-0.020817017,0.016761927,-0.004180575,-0.0055410783,-0.008262084,-0.016339246,0.016524168,0.013321042,0.01768654,0.010454739,0.00063402083,-0.0049995184,0.015995817,-0.0008981962,-0.0053825728,-0.013538987,-0.0053528533,-0.0050457492,-0.009642401,-0.0010484459,0.0023329987,-0.014450392,0.016326036,0.03566367,-0.0011210942,-0.010487761,0.012581351,0.039837644,-0.025730679,-0.017924298,0.009365017,0.02411921,-0.017541243,-0.011894495,-0.015850522,0.0263647,-0.020671722,0.0074233273,0.0031222224,0.03569009,0.009001776,-0.0061024507,-0.012515307,0.004352289,0.020301877,0.00314864,0.0020589167,0.003457395,-0.004028674,-0.019813152,0.0107651455,-0.008480029,0.0006843793,-0.0025889184,-0.02122649,-0.00015303596,-0.012191692,-0.020711347,0.0066043837,-0.0065812687,-0.0050424472,-0.01393525,0.0017237442,-0.002836583,-0.018479066,0.022653036,0.025096659,-0.016735509,0.01575806,-0.007278031,0.0011367796,0.015824104,0.113172725,-0.012125649,0.009649005,0.017818628,0.00852626,-0.0032724722,-0.0073374705,-0.018796077,0.023960704,-0.01586373,0.008400776,-0.009338599,-0.000834629,-0.005346249,0.02541367,0.011669946,-0.014173008,0.00254599,-0.014582479,-0.0015759711,0.020790601,-0.039309293,0.004064998,0.045068316,0.031384032,-0.005861391,0.025492921,0.022864377,0.00894894,-0.0077139204,-0.0060859397,0.013618239,-0.005233974,0.0009361714,-0.023326684,0.013908832,0.0059967805,0.018875329,0.014608897,-0.017594079,0.018003551,0.009120654,0.012165275,-0.012845526,0.012687022,-0.026245821,-0.0011978701,0.032916248,-0.011438793,0.007918656,0.020605678,0.011828451,-0.008413985,-0.046917543,0.02895362,0.00043877875,-0.020605678,0.0038305426,-0.013816371,-0.03880736,-0.013922041,-0.025677845,-0.018505484,-0.0032642167,0.010705707,-0.023194596,-0.004140949,-0.0029868325,0.016907223,0.008136601,0.030697176,-0.006264258,0.0031585465,0.02273229,0.006954416,0.010976486,0.023643695,0.012838922,-0.01456927,0.014278678,0.003165151,-0.00667373,-0.014450392,-0.03679963,-0.00027263723,-0.0055410783,-0.000778079,-0.0035564606,-0.024185253,0.025691053,0.012772879,0.032652073,0.018056385,0.009932993,0.016761927,0.014371139,0.007581833,0.0048575243,-0.007053482,0.005861391,0.015269335,-0.020552842,-0.005610424,-0.020011283,0.009767883,-0.005537776,-0.000109281915,0.01940368,-0.0009873554,-0.03204447,0.02734215,0.004005559,-0.004517399,0.0069279987,-0.00814981,0.0012779483,0.0036159002,-0.0052570896,-0.014093755,-0.0025575478,0.005861391,-0.041422695,0.0042069927,0.0107651455,-0.010831189,0.013882415,-0.012119045,-0.016960058,-0.013466339,-0.00328403,0.0017732771,0.0067001474,-0.018109221,-0.027527072,-0.017871464,-0.021081194,-0.02047359,0.023722947,0.0055113584,-0.032863416,-0.017752584,0.0057425117,-0.0083941715,-0.0029422531,0.038516767,-0.037116636,0.0052868095,-0.0042763385,-0.017316695,0.020949105,-0.012165275,-0.012805901,-0.023287058,-0.009411247,-0.017779002,-0.011927517,-0.01012452,0.0009048006,0.020539634,0.023947496,0.022137895,-0.005501452,0.00023569395,0.022771915,0.006934603,-0.027632741,0.0020044304,0.004847618,-0.022970047,-0.0039329105,0.013869206,0.0027589814,0.008539468,0.0032576125,0.008790435,0.028108258,-0.0052702986,-0.03355027,-0.0293763,-0.031040605,-0.015044786,2.8739389e-05,-0.021966182,0.009444269,-0.028689444,-0.0053561553,0.030802846,0.026192987,0.002580663,0.009932993,0.0029174865,-0.0014315002,0.016009027,0.011749199,-0.013215372,-0.031331196,0.00023280454,-0.021041567,-0.008123392,0.031568956,0.024106001,0.014516436,-0.002650009,0.0028861158,-0.01843944,0.025453296,-0.0037644987,-0.021503873,-0.0030297611,-0.019773526,0.007284635,-0.013895623,-0.018888539,-0.012812505,0.014542853,-0.009041402,-0.021530291,0.045279656,-0.0033484227,-0.03505607,-0.0022388862,-0.015308962,0.011359541,-0.0035894827,0.03159537,0.0063402085,0.0025856162,-0.021305742,0.021266116,0.0010311095,-0.021279326,0.006399648,0.037671406,-0.008473424,-0.017224234,0.00959617,-0.0034739058,-0.030327331,-0.040286742,0.023498397,0.027685577,0.0073572835,-0.0068685594,0.0022603504,-0.02895362,0.03302192,0.013043658,-0.0062576537,-0.005128304,-0.013631448,-0.010382092,0.017620496,-0.016669465,0.021688797,-0.01173599,-0.0018162056,-0.025334416,0.008975358,-0.011385958,-0.010547201,-0.006208121,0.013406899,-0.023934288,0.008499842,0.030248078,-0.008539468,0.014925907,0.005296716,0.009087632,0.026338283,-0.020552842,-0.018294143,0.019562185,-0.010494366,-0.0047452496,0.012198297,0.0020985429,0.0002173255,-0.03257282,-0.014582479,0.00093699695,0.010058477,-0.03476548,-0.007456349,0.01131331,-0.021992598,0.0004490981,-0.011234057,-0.011557672,-0.0014257213,-0.025691053,-0.033946533,-0.009926389,0.025057033,-0.0056170286,-0.020235833,0.0024799462,0.017620496,-0.02314176,0.016854387,-0.008968754,0.015573137,0.0034111643,-0.0010418416,0.012944592,-0.023973914,0.031568956,0.0043258714,-0.040286742,-0.023062509,0.008129996,0.01291157,-0.008757413,-0.0080243265,0.001618074,0.020037701,-0.02250774,-0.012502098,-0.04234731,-0.007330866,0.00016366488,-0.016484542,0.036059935,-0.00825548,0.014595688,-0.024687188,0.0230493,-0.000761568,-0.010930255,-0.0066341036,-0.020209415,0.030433001,0.0017022799,-0.0005749942,-0.01238322,0.0022108175,-0.020883061,0.0128323175,-0.003457395,-0.0036324111,0.0042565255,-0.0063864393,0.0062147253,-0.007568624,-0.005111793,-0.016312828,-0.046547696,0.0016585259,-0.012984219,-0.004864129,0.004164064,0.018782867,0.036826044,-0.028689444,-0.025981646,-0.0070072515,-0.03867527,-0.02238886,0.009470686,0.029455552,-0.0017798814,0.0035729718,0.0035993892,0.0011128387,0.012264341,-0.008803643,-0.011022717,-0.018109221,0.012852131,-0.0015008462,-0.026747754,-0.015520303,-0.011617111,0.011161408,0.017092146,-0.0052438807,-0.018241309,-0.0026797287,-0.00051679305,0.008882896,0.0035828783,0.0028514427,0.004907057,0.0148730725,0.008598908,-0.017197816,0.01479382,0.012508703,-0.0072912397,-0.0037017572,0.021900138,0.01884891,0.0036786417,-0.0012573096,-0.017633704,-0.0032708212,-0.0070072515,-0.022137895,0.016326036,0.0025724075,0.013479548,0.027289314,-0.017237442,-0.003837147,-0.0069808336,0.008222458,-0.007812986,-0.025875976,0.0065878727,-0.0009303926,0.00045116196,-0.01157088,-0.032335065,0.014991951,0.0024749928,-0.016101489,-0.0070138555,-0.012706835,-0.0047782715,-0.008935732,-0.029032871,-0.011267079,-0.03281058,0.011650133,-0.005864693,-0.01253512,-0.0038800756,-0.019892404,-0.013657866,-0.007535602,-0.010276421,-0.0019400378,-0.00022165963,-0.012330385,0.0073044486,0.018452648,0.21292533,-0.017237442,-0.010329257,0.011002904,0.009946202,-0.013281416,0.040075403,-0.0124888895,-0.01983957,0.015176875,0.0048443154,0.01087742,-0.014265469,0.005881204,-0.019469723,-0.02669492,-0.034897566,0.008222458,-0.023168178,-0.015176875,-0.019218758,-0.026959095,-0.012647395,-0.002476644,0.03183313,0.0045372117,-0.006861955,-0.0027160528,0.019654647,0.012680417,-0.009351808,-0.011352936,0.0028431872,0.0063864393,-0.01563918,0.0077007115,0.015242918,-0.018782867,0.020301877,-0.0068553505,-0.006535038,0.015837312,-0.010976486,0.0019747107,-0.00091470714,0.026483579,-0.021173654,0.008420589,0.01960181,0.017818628,-0.03249357,0.011656738,0.02089627,0.0032229393,-0.036192022,0.018611154,0.03109344,0.018584736,-0.015242918,0.010520783,0.02979898,0.0155599285,-0.019905614,0.013618239,-0.010527388,0.017765792,0.0033731891,0.009899971,-0.003183313,-0.0093980385,0.013776745,-0.006310489,-0.016114697,-0.0014232447,-0.0026417535,-0.0114520015,0.03806767,0.011551067,0.023287058,0.037222307,-0.014450392,-0.0020919386,-0.006049616,-0.011366145,0.011656738,-0.03986406,-0.0104415305,0.0027375172,-0.021081194,-0.012753066,0.009668818,0.0083809635,-0.016894015,0.006317093,0.015203292,0.016339246,-0.0047947825,0.01779221,-0.014437183,-0.0052603916,-0.020447172,0.05006123,-0.015718434,0.024753232,-0.017594079,-0.0074761626,-0.012924779,0.025136285,-0.016907223,-0.008849874,0.0042565255,-0.03281058,0.009873554,0.0017237442,0.010137729,0.028927201,0.0035762738,-0.009365017,0.008552677,-0.031885967,0.005022634,-0.014674941,0.014212634,-0.008202645,-0.013109702,-0.005458523,-0.030248078,-0.014212634,-0.007892239,-0.04607218,0.028768696,-0.004834409,-0.01832056,-0.0030858985,-0.0016874201,0.0053825728,0.008764017,-0.0060265004,-0.0064062523,-0.011049135,-0.0075091845,-0.020328294,-0.022468114,-0.0054486166,0.0033599804,-0.019641438,0.009635796,0.020064117,-0.0051316065,-0.00819604,-0.026523206,0.007852612,-0.011603902,-0.013228581,0.03228223,-0.02464756,-0.00840738,-0.008163018,0.0024535286,-0.007317657,-0.012805901,0.012336989,0.014608897,-0.020526426,-0.02336631,0.0043687997,-0.16907223,0.008882896,0.01456927,-0.048000664,0.009906576,0.010481157,0.0070402734,0.022481322,0.0019400378,0.01843944,0.008156414,-0.010553805,-0.024396595,0.003936213,0.011927517,0.01221811,-0.016193949,0.01736953,0.010335861,0.010329257,0.03288983,-0.0055707977,0.012119045,0.0058382754,0.0064954115,-0.01618074,-0.020037701,0.0038998886,0.0015990864,0.01393525,-0.004002257,0.012099232,0.040762257,0.024198463,-0.012396429,0.007964887,0.0013926994,-0.009246137,-0.005316529,0.01479382,0.03228223,0.0062906756,0.0036720375,0.011280288,-0.0033764914,0.022745498,0.001976362,-0.020856645,0.0061982144,-0.015282544,-0.01983957,0.010553805,-0.00094855466,-0.017131772,0.027077975,0.0056335395,0.004405124,0.021424621,0.0071459436,-0.003477208,0.0050424472,-0.019337635,0.0053528533,-0.008605512,0.019575395,-0.010626454,0.0013018892,-0.0013778396,-0.017303485,0.018413022,-0.02163596,-0.0100981025,-0.006052918,-0.0016279806,0.010256608,-0.0135059655,-0.02958764,-0.012403033,-0.008136601,0.011980352,0.0003108188,0.016709091,-0.01468815,-0.019139504,0.0057127923,0.021305742,-0.0033847468,-0.0057260008,-0.0023990425,0.0068553505,0.022705872,-0.039996147,-0.027632741,-0.03473906,0.001720442,0.019496141,0.009946202,-0.0038965866,0.01961502,-0.027844083,0.0062543517,0.0066208947,-0.012898361,0.0011087109,0.019245174,-0.028557356,0.019707482,0.0015858777,0.02551934,-0.0018739939,-0.00021402331,0.0042433166,0.015308962,0.011907704,-0.011049135,0.015929773,0.017633704,-0.030063156,0.0039989543,-0.022468114,0.032414317,0.011432189,-0.02283796,0.0066836365,0.0015214849,-0.007654481,-0.1054588,-0.020526426,0.038992282,0.03529383,0.008268689,0.014727776,-0.00578544,0.0008792086,-0.027949752,0.0068223285,0.009820719,-0.020962315,-0.006019896,-0.008202645,0.011504836,-0.022745498,-0.0111482,-0.031701043,-0.007740338,0.01661663,0.014516436,-0.023617277,-0.019865986,-0.0064029503,0.0052438807,0.024911735,-0.04160762,0.028398851,0.012640791,0.0046329754,-0.031463284,-0.008968754,0.017184608,-0.034686223,0.011927517,-0.0043390803,-0.0005304146,-0.009312182,0.014159799,-0.0138427885,-0.009946202,-0.010025455,0.0009799255,-0.028715862,0.00020525187,-0.021807676,-0.016431708,-0.00932539,0.0080441395,-0.020671722,-0.01832056,0.009371621,-0.032863416,-0.012521911,0.019879196,-0.040233906,0.0013662819,-0.006171797,0.026668502,-0.002872907,-0.0064293677,-0.006036407,-0.017924298,0.039943315,0.032757744,-0.0014257213,-0.00495659,0.017871464,0.00578544,0.003132129,-0.0041937837,-0.019258384,-0.006762889,0.024515472,-0.023749365,-0.0021067983,-0.011339727,-0.013671075,0.0052868095,0.00025963483,-0.005458523,-0.0017650216,0.013644657,-0.018611154,0.0065416424,-0.008063952,0.021186864,0.02175484,-0.008750808,-0.0022669549,0.00071987783,0.044460714,0.011894495,-0.018373396,0.02197939,0.00021061793,-0.010104707,-0.010646267,0.005957154,0.00578544,0.015361797,-0.02262662,-0.06340209,0.007469558,-0.0072912397,0.0053363424,-0.018096011,-0.010811376,0.009615983,-0.0015776223,-0.020526426,0.007482767,-0.010738729,0.034342796,0.007469558,0.0007058435,-0.021807676,-0.045596667,0.025730679,-0.017646914,0.0028811626,0.033920117,-0.0038239383,0.0012886804,0.040260322,-0.004124438,-0.020024491,0.023405936,0.0012804249,0.021939764,-0.027817665,-0.00013528668,0.003267519,-0.016907223,-0.0048212004,0.03064434,-0.009285764,-0.007885634,0.006719961,0.0230493,0.010474552,0.017184608,-0.017224234,-0.012693626,0.0056005176,-0.004847618,-0.014912698,-0.0014554411,-0.029534806,-0.0012738205,0.023287058,0.01307668,0.033365346,0.019535767,-0.02690626,-0.0026434048,-0.012310572,-0.010857607,0.0019581998,0.018346978,-0.020328294,-0.028583774,0.021424621,0.030063156,0.010197169,0.0019515954,-0.002976926,0.024026748,-0.006472296,0.014133382,0.009979224,-0.024092792,-0.013056867,0.006158588,-0.00884327,0.020566052,0.012786088,0.0048443154,-0.019681064,0.008499842,-0.027394984,0.022573784,0.009490499,0.006251049,-0.016867597,0.023339892,0.009034798,0.019469723,-0.02508345,0.025440088,-0.00080738595,0.00412774,0.0020935896,0.011861473,0.02454189,0.0074761626,0.018294143,0.02541367,0.006330302,0.0043952176,0.013895623,0.012013374,0.035927847,0.0073704924,0.002323092,-0.03183313,-0.013406899,0.012548329,0.0044810744,-0.025202328,-0.010659476,0.00750258,-0.0051216995,0.018716823,-0.0018228099,0.005422199,-0.016801553,0.0009857042,0.008777226,0.010223586,-0.035875015,0.039045118,-0.025123077,-0.00072276726,-0.0020523123,-0.0057359072,0.0124822855,-0.008070557,0.0010600036,-0.0035168345,-0.0050721667,-0.021028358,-0.006178401,-0.0074761626,-0.03180671,-0.009602774,-0.008176227,-0.040339578,0.009642401,0.017065728,-0.016999684,0.042373728,0.011379354,-0.009014984,0.0124756815,0.010600036,0.020024491,0.0003064847,0.017078936,-0.030380165,-0.014410766,1.7581593e-05,-0.016788343,-0.018928165,-0.030934934,-0.009147071,0.026430745,-0.0083875675,0.004798085,0.013433317,0.014410766,0.021054776,0.012693626,-0.022864377,-0.0021728424,-0.010368883,-0.021622753,0.02134537,-0.013776745,-0.004025372,-0.020962315,-0.0056995833,0.006006687,-0.04224164,-0.015335379,0.028319597,-0.015295753,0.003112316,-0.005266996,-0.0056995833,0.034157872,-0.0018954582,0.03635053,-0.026708128,-0.0056368415,-0.02454189,-0.018162055,0.03183313,0.005689677,-0.019852778]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('4146031e-a5da-11ee-b807-f7e2f7af0358', 'Health & Wellbeing', 'this article is about dating', '[0.0023454356,0.0053500026,0.027128091,-0.024946602,-0.021413393,0.018602885,-0.010157978,-0.008612199,-0.017010264,-0.030326717,-0.0028891352,0.031798888,-0.024545101,0.016608763,0.0024525027,0.012647285,0.044807523,-0.011188498,0.016113577,-0.02287218,-0.012921644,0.0019606638,0.0064474386,-0.0075348374,-0.0065177013,0.017478682,0.012433151,-0.020824524,-0.00019845029,-0.0066046934,0.015819144,-0.009401818,0.0025863363,-0.022310078,-0.006758602,0.006524393,-0.010258353,0.0039681694,0.024076683,-0.008043406,0.013891938,-0.01766605,-0.020396257,0.0017364923,-0.016394628,0.014346973,0.020141972,0.0040350864,0.0025612426,0.0046206084,0.031236786,0.025856672,-0.0589939,-0.0029242665,0.00786273,0.008123706,-0.004633992,0.019017769,0.011134964,-0.0006950988,-0.0029911832,-0.010526021,-0.017679432,0.008625582,-0.029148981,-0.009354976,-0.012372926,0.012754352,0.008491749,0.014025772,0.013891938,-0.0033441696,-0.013758105,0.02692734,-0.0038544107,-0.022390379,-0.008746033,-0.0003419033,0.009917078,0.0012295971,0.009957228,-0.016528463,-0.018428901,0.028399512,0.022724964,0.016274178,-0.001074852,0.024317585,0.0072203283,-0.013905322,0.0069861193,-0.0019690283,0.00395144,0.0044499706,-0.020182123,0.0141060725,0.016300945,0.019620022,-0.00048263778,-0.0053667314,-0.0034361803,0.032173622,-0.029041914,-0.0071065696,-0.012674051,-0.002255098,-0.004633992,-0.009462043,0.027074559,-0.018696569,-0.016086811,0.009314826,0.0003623966,-0.038811773,0.0017331465,1.0978546e-05,-0.008946783,-0.006460822,-0.022965863,-0.010325271,0.032066554,0.007394312,0.011221956,-0.005236244,0.0015466157,0.017211014,-0.03286956,0.008270923,0.008899941,0.010037527,0.028934848,0.014012389,0.03236099,0.008411448,-0.012252476,0.0076619796,-0.006825519,-0.005256319,-0.01711733,-0.028105078,-0.008070173,0.041354615,-0.035813898,-0.0067251436,0.0038744858,0.0069392775,0.02235023,0.010887371,0.0017699507,-0.0047845547,-0.0015223584,-0.006290184,0.031531222,-0.00028167813,0.008792874,0.016341096,-0.012526834,-0.0031634942,-0.005035493,-0.014628024,0.00074654113,-0.011563232,0.017692816,0.0031116337,-0.0010355383,0.033056926,0.012292625,0.021627527,0.021627527,-0.0054972195,-0.008143781,0.03744667,-0.02620464,0.017384999,0.0026030655,0.01096098,-0.017224398,-0.0010045893,-0.04001628,0.0023454356,-0.04344242,0.015029525,0.044780757,0.04467369,-0.018375367,0.019446038,-0.006270109,0.004734367,-0.0046072253,0.006865669,0.010780305,0.022658046,0.007414387,-0.0025612426,-0.67623496,-0.0113825565,0.014132839,0.015323959,0.0070731114,0.011342406,0.02394285,0.019794004,0.0017482027,0.018643035,-0.020516707,0.006377176,-0.0033040196,0.00027770494,-0.0016871411,-0.0015616721,0.022818647,-0.042559117,0.0072805537,0.005627707,-0.01945942,0.01024497,-0.012660668,-0.013430213,-0.0038008771,0.008819642,-0.01024497,0.014213139,-0.0041823033,-0.005483836,-0.020677308,0.02458525,-0.0060492833,0.027181625,0.041434914,-0.021266175,-0.010030836,0.023461048,0.0032789258,0.030647919,-0.027998012,-0.0032856173,0.00090505043,0.0031400733,0.0018753448,-0.0073207035,0.020048289,-0.00052069675,0.018830402,0.0071266447,0.021614144,0.005436994,-0.0004705091,0.0006704232,-0.0134904375,-0.00052864314,0.0066649183,-0.02386255,0.036349233,0.015538093,-0.0039146356,0.007247095,-0.01838875,-0.016060045,-0.022310078,-0.002106208,0.0018251571,0.024933219,0.0025528779,-0.016193878,0.011623457,-0.003700502,-0.018254917,0.0073006283,0.040096577,0.01970032,0.01219225,-0.008565357,0.0004495976,0.0032889633,0.007481304,0.0011158385,-0.014052539,-0.005370077,0.042344984,-0.032789256,-0.019713705,0.00913415,0.012740969,-0.0037205769,0.02044979,-0.0028941538,-0.013891938,0.014748475,0.01084053,-0.0008807931,0.0067452188,-0.002808835,0.023260297,-0.008792874,0.002935977,0.0017147444,0.031905957,0.018107701,0.0053065065,0.008043406,-0.012941719,0.019713705,0.015538093,-0.009870236,0.004935118,0.02036949,-0.029443415,0.012198942,-0.017973866,-0.026177872,0.023688566,0.0012471628,0.011583307,-0.0016955057,0.02481277,-0.0032187006,0.009020392,-0.022684813,-0.009167609,0.041354615,-0.02315323,0.018134467,-0.009930461,-0.037312835,0.018763484,-0.009301443,0.016220644,8.4534804e-05,0.013798255,0.0037941856,-0.012573676,0.00565782,0.019794004,-0.008598816,-0.025120586,-0.020168738,0.0071734865,-0.000430359,-0.0057682325,-0.018549351,-0.0010062621,-0.01274766,-0.01433359,0.011543157,0.0009903694,-0.017010264,-0.02235023,0.02521427,0.0018753448,0.0088062575,0.005035493,-0.020048289,-0.010947597,-0.005828458,-0.0025194194,0.031156486,-0.022376996,-0.00573812,-0.01540426,-0.0054671066,0.0046875253,0.014039155,0.021132343,-0.011094814,0.0031618213,-0.00167794,-0.01326292,0.012138717,-0.031745356,0.023849167,-0.008050097,-0.007160103,0.001958991,0.007233712,-0.010900755,-0.017612515,-0.040685445,-0.009870236,0.0028673871,-0.0008205679,0.013035403,0.01540426,0.0043864,0.0046273004,-0.017184248,0.0042023784,-0.02053009,0.014079305,-0.014213139,-0.024277434,-0.009990686,0.015712077,0.023969617,-0.009114075,0.03423466,-0.0060693584,0.039534476,-0.0071534114,0.019486187,-0.012767735,0.0015482886,-0.0022801918,0.014387123,-0.022617895,0.014802008,-0.015578243,-0.036161866,-0.0006361283,0.0103587285,0.003230411,-0.010753538,0.013416829,-0.023889316,-0.0039614774,0.012078492,-0.012386309,-0.00030509903,0.005681241,-0.011027897,0.03482353,0.025388254,0.0179471,-0.01143609,-0.03169182,-0.002209929,0.010472488,-0.0013266266,0.01651508,0.00806348,0.00049309357,0.0103587285,-0.025762988,0.021948727,0.009535652,0.009395126,0.032066554,-0.0072069447,-0.013343221,0.013349912,0.00084357057,0.01929882,0.015832527,0.0051793642,-0.005838495,-0.006695031,0.0062333047,-0.021346476,0.0053667314,-0.004901659,-0.0057782703,-0.0054737986,-0.00778243,0.0022199666,0.012868111,0.022283312,0.0001372841,0.0032253922,-0.0071534114,0.014440657,0.0048313965,-0.0043295203,-0.024678934,-0.011630149,-0.010967672,0.0056477822,-0.002378894,-0.01683628,-0.030514084,0.016943347,0.02176136,-0.00097029435,-0.00395144,0.013343221,0.02168106,0.0028422934,-0.014641407,0.0087326495,0.039802145,-0.022002261,-0.033351358,-0.0068188272,0.025455171,-0.020034906,0.0007201926,0.016327713,0.02032934,0.008317765,-0.014360356,-0.002527784,0.010546096,0.033351358,-0.009595877,-0.0001550589,0.0049418095,0.021185875,-0.00357336,-0.0089334,-0.037259303,0.029282814,-0.013369987,-0.021747977,-0.0075214542,-0.0061596963,-0.019111453,0.014868924,0.008177239,-0.015671927,-0.006966044,-0.011817516,0.00778243,-0.005547407,0.013717955,0.01453434,-0.02624479,0.006072704,-0.025829906,-0.01925867,-0.0040250486,0.12569661,-0.008986933,0.026472306,0.013610887,-0.0018101009,-0.008812949,-0.0020694037,-0.011737216,0.014306823,0.0037607271,0.006524393,-0.021426776,-0.017291315,0.00056251977,0.013851789,0.0013751413,-0.0027937787,-0.0022433875,0.0016085139,0.0096694855,0.009983994,-0.03407406,0.005169327,0.054925352,0.027730344,-0.005376769,0.020503324,0.026967492,0.015029525,-0.012995252,-0.01361758,0.02553547,0.0031785504,0.010117828,-0.021507077,0.025107203,0.0054972195,0.0121521,0.017840033,0.0028958267,0.021092191,0.018736718,0.008424832,-0.008204006,0.006782023,-0.02335398,0.0034529096,0.030540852,-0.012172176,0.003083194,0.026940724,0.0011543157,-0.0239027,-0.038490575,0.002932631,0.004085274,-0.0001737747,0.00046047158,-0.014681557,-0.04654736,-0.0013375006,-0.028238911,0.013202695,0.0021580686,0.0069794278,-0.039588008,-0.0145744905,-0.030674685,0.01838875,-0.00091592444,0.022376996,-0.026271556,0.009221142,0.012051725,0.009656101,0.009930461,0.02247068,0.0048280507,-0.023916082,0.00011344498,-0.010338654,0.0081036305,-0.013523896,-0.024210516,-0.017773116,0.0003946003,-0.014708324,-0.0010715061,-0.016849663,0.03383316,0.008672424,0.02723516,-0.0022919022,0.0024190443,0.0041956864,0.018910702,-0.011937967,0.008853099,-0.0031852422,0.01195135,0.003677081,-0.0144272735,-0.017103948,-0.016689062,0.008558665,-0.007989872,-0.005661166,0.014387123,-0.006611385,-0.03351196,0.03121002,-0.020021522,0.004510196,0.022336844,0.01679613,0.012118642,0.014815391,0.010157978,-0.0023855858,-0.013704571,-0.0005202785,-0.043710086,0.008779491,0.016180495,-0.00841814,0.009348284,-0.024237284,-0.035947733,-0.012272551,0.014868924,0.00391129,-0.004741059,-0.026044039,-0.0357336,-0.01877687,-0.005948908,-0.029871684,0.015497943,-0.008505132,-0.023380749,-0.0041990327,0.009047158,0.007815888,-0.015016141,0.037179004,-0.038651172,-0.013784871,-0.019044535,-0.012306009,0.029443415,-0.0056477822,-0.015323959,-0.0358942,-0.015658543,-0.005507257,-0.021212643,-0.0015959669,-0.0005863589,0.023527965,0.0010196455,0.017251164,-0.0051760185,-0.0020844599,0.006554506,0.0059656375,-0.021587376,0.0026465615,0.01437374,-0.018589502,0.00030238053,0.0057448116,0.0019941223,0.00088162953,0.014320206,0.005845187,0.04148845,0.003549939,-0.03276249,-0.020717457,-0.023139847,-0.009408509,-0.025950355,-0.025200887,-0.008357915,-0.02513397,0.0045135417,0.037179004,0.017451916,0.0069593526,-0.001043903,0.0071333363,-0.014025772,0.01909807,-0.0045838044,-0.026017273,-0.035920966,-0.009990686,-0.01151639,-0.00391129,0.035465933,0.020623773,0.029844915,0.013851789,0.0007762355,-0.007936339,0.016260795,-0.00794303,-0.024879685,0.009167609,-0.02517412,0.010472488,-0.017585749,-0.02858688,-0.028319212,0.0026315053,-0.015859295,-0.022738347,0.049331103,-0.0050522224,-0.03940064,-0.01822815,0.0022467333,-0.0049853055,-0.0062466883,0.033886693,0.005938871,0.0016612109,-0.024344351,0.009983994,-0.004342904,-0.011482932,-0.0013860153,0.040391013,-0.0024090067,-0.015952978,0.009033775,0.02235023,-0.023635032,-0.032494824,0.01469494,0.015444409,0.009060542,-0.0045269253,0.009234525,-0.026432157,0.025481937,0.026967492,0.0066281143,-0.00637383,-0.024357734,0.011161731,0.01715748,-0.010773613,0.018335218,0.0005750667,-0.004995343,-0.00948881,-0.010298504,-0.0064942804,-0.008009947,0.002529457,0.018402135,-0.027034407,-0.0067452188,0.03228069,-0.0066013476,0.008679116,0.0014470769,0.0036436226,0.028399512,-0.007119953,-0.0011292219,0.011462857,-0.014614641,-0.007876113,0.012239092,0.0034696388,-0.0022350228,-0.03755374,-0.024411269,0.010479179,0.017277932,-0.01937912,0.00011720905,0.0012187231,-0.019151604,0.010452412,-0.0034495636,-0.010024144,-0.00331573,-0.015096442,-0.031879187,-0.021788128,0.022617895,0.02000814,-0.013999006,0.02275173,0.018763484,-0.02184166,0.013865172,-0.006263417,0.01695673,-0.014775241,0.016367862,0.013296379,-0.021453543,0.020971742,0.0038042231,-0.012533526,-0.016367862,0.0038042231,0.01330307,-0.013416829,-0.023956234,-0.0037473438,0.010666546,-0.010412262,-0.016180495,-0.03303016,-0.006119546,-0.009455351,-0.023380749,0.024906453,-0.023889316,0.020034906,-0.018495819,0.020851292,-0.012178867,-0.016260795,-0.01274766,-0.0354927,0.016996881,-0.0080300225,-0.013570738,-0.006119546,0.002805489,-0.016073428,0.006564543,0.009375051,-0.0029460145,0.01469494,0.014802008,-0.010171361,-0.0016177149,0.0024173714,-0.023969617,-0.043736853,-0.0021647601,-0.004781209,-0.0029393227,0.016354479,0.0132562285,0.048180133,-0.03418113,-0.040498078,-0.0026432157,-0.023139847,-0.017732967,0.007695438,0.024571868,0.010385496,-0.0068188272,-0.0075549125,0.0068121357,0.018014017,0.007461229,-0.013731338,-0.034047294,0.020222273,0.002785414,-0.007849347,0.011128273,-0.021052042,0.0024591943,0.03013935,-0.020851292,-0.0054771444,-0.009709635,-0.0077891215,0.0052395896,3.2935637e-05,-0.017224398,-0.010546096,0.019847538,-0.004737713,-0.032816023,0.0034395263,0.0027770493,-0.015471176,-0.007929647,0.019245287,0.009897002,0.0011777366,0.010572863,-0.019512953,-0.019004386,-0.007467921,-0.027864177,0.0012864765,-0.0066013476,0.015631776,0.02949695,2.7001995e-05,-0.0041588824,-0.006209884,0.0069258944,-0.00633368,-0.016648913,0.004978614,0.017384999,0.0072136368,-0.023046164,-0.014079305,0.0051994394,0.015698694,0.0009075598,-0.013825022,0.004319483,0.009375051,-0.00059932406,-0.030969119,-0.018375367,-0.010178053,0.020195507,-0.03514473,-0.0130220195,0.0046841796,-0.015993128,-0.03252159,-0.0008331148,-0.008023331,0.0035633224,-0.0024123525,-0.0014152915,-0.014520957,-0.0011961387,0.21081485,-0.011014514,0.0018937469,0.010894064,0.0066046934,-0.012848035,0.031584755,-0.02073084,-0.0029225936,0.0121587925,-0.0013659402,0.019151604,-0.011228648,0.0052161687,-0.009595877,-0.0122324005,-0.026860425,-0.0024775965,-0.0023052855,-0.022029027,-0.01040557,-0.027395759,-0.0121587925,-0.02890808,0.022283312,0.014507573,0.0019807387,-0.016421396,0.0061998465,0.015859295,0.0024307547,-0.027489442,0.0069058193,0.0038008771,-0.00028105077,-0.0040350864,0.013644346,-0.026512457,0.019646788,0.0013433557,0.0068154815,-0.003657006,0.0047745174,-0.0019740472,-0.004995343,0.019432655,-0.0074879956,0.016903197,0.009047158,0.013162545,-0.041916717,0.002932631,0.026887191,-0.003784148,-0.02386255,0.015966361,0.042585883,0.012024959,-0.03246806,-0.008986933,0.009053851,0.0048180134,-0.0053868066,0.01469494,-0.02053009,0.025307953,-4.8645416e-05,0.017773116,-0.0029443414,0.008444907,0.016849663,-0.004737713,-0.025388254,-0.0067920606,-0.00778243,-0.013109012,0.023635032,0.0045168875,0.018428901,0.030621152,-0.021292942,0.00013216079,0.003359226,0.003971515,0.0060459375,-0.022136094,0.009187683,-0.014788624,-0.026833657,-0.00617308,0.013430213,0.011931275,-0.005634399,0.0018368675,0.015230276,0.016889814,0.0011091469,0.035439163,-0.007815888,-0.0076084463,-0.020182123,0.025843289,0.020757608,0.0243845,-0.031986255,-0.01560501,-0.024826152,0.030995887,0.00057004794,-0.017251164,0.005671203,-0.002912556,0.013972239,0.006420672,0.0007503052,0.023701949,8.772381e-05,-0.0111483475,0.0037038478,-0.017451916,0.0019272054,-0.020878058,0.018937469,0.012580368,-0.013878555,-0.0044934666,-0.0118509745,-0.025522087,-0.017973866,-0.02858688,0.032976624,-0.004018357,-0.013309762,-0.0039447485,-0.0042927163,0.010311887,0.026860425,-0.0077222046,-0.008478365,-0.007568296,0.0045603835,-0.021025276,-0.01004422,-0.0068991273,0.009642718,-0.026231406,0.009234525,0.011489623,-0.009395126,0.0095088845,-0.01925867,0.0028121807,0.0061463127,-0.007588371,0.009127459,-0.018522585,-0.02176136,-0.010613013,-0.00722702,-0.012888186,-0.0087728,0.013644346,0.030407017,-0.019325586,-0.007989872,0.0065946556,-0.17312728,0.017371615,0.015738843,-0.03768757,0.0036001266,0.02144016,0.020302573,0.0062333047,0.008050097,0.024290817,0.010117828,-0.00806348,-0.02247068,0.018709952,-0.0016821224,0.00913415,0.00031890062,0.009970611,0.025642538,-0.00242239,0.014025772,-0.008779491,0.012212326,0.003549939,-0.0071266447,0.0012521816,-0.0001668739,0.0119981915,-0.013001944,0.017612515,-0.03137062,0.0060459375,0.0358942,0.017224398,-0.022136094,0.009053851,0.0024558485,-0.014213139,0.006444093,0.018589502,0.0239027,0.0051291767,-0.009247909,0.00019583634,0.0118309,0.01957987,0.001063978,-0.020918207,0.004975268,-0.015096442,0.0008833024,-0.009020392,0.027128091,-0.006377176,0.02279188,0.020235656,-0.011268798,0.005145906,0.007983181,-0.015752226,0.0009786589,-0.014975991,0.015497943,-0.018629652,-0.00041760298,-0.006507664,-0.012814577,0.018763484,-0.027302075,0.012955102,-0.013383371,-0.016541846,0.00066665915,-0.0010054257,0.0017021975,-0.004500158,-0.013543971,0.0004219944,0.0039213276,0.007414387,-0.010753538,0.0017247818,-0.010465796,-0.0070731114,-0.008612199,0.02525442,0.0012605462,0.0029844916,-0.0072537865,-0.0020359452,0.023380749,-0.04017688,-0.011429398,-0.027783876,-0.0081036305,0.014346973,0.010224895,-0.0029476874,0.013216078,-0.018415518,0.01453434,-0.0011325678,-0.0015959669,-0.0060057873,0.022069179,-0.028265677,0.016220644,-0.003483022,0.021359859,0.014012389,-0.007949722,-0.0072069447,0.021774743,0.011569924,-0.021908578,0.032066554,0.016193878,-0.029015146,0.022457296,-0.014119456,0.04927757,0.011021205,-0.016247412,0.014909075,-0.01195135,-0.009736402,-0.08843731,-0.015738843,0.018000633,0.02783741,-0.0007268843,0.023635032,-0.0020777683,-0.0057715783,-0.032387756,0.016622147,0.0015064656,-0.0012279243,-0.012105258,-0.0020476556,0.017023647,-0.028024778,-0.016207261,-0.023300448,-0.008438215,0.021413393,-0.0006026699,-0.015377493,-0.006316951,0.0013015327,0.015738843,0.0099036945,-0.03418113,0.028774247,0.014065922,0.0015800742,-0.01743853,-0.009267984,0.009087308,-0.024116833,-0.02759651,-0.026539223,-0.019285437,-0.015979744,0.011007822,-0.02315323,-0.020275807,0.0057983454,-0.0008991952,-0.020543473,-0.0017900257,-0.016461546,-0.021493692,0.0073876204,-0.0024692318,-0.01838875,-0.018683186,0.0021948728,-0.0354927,-0.02612434,0.025508704,-0.041247547,0.007929647,-0.006798752,0.018870553,-0.0011601709,-0.0044834292,-0.0064909346,-0.037152234,0.03391346,0.028105078,-0.0019104761,-0.019901073,0.020864675,0.008056789,-0.0068489397,-0.011911199,-0.023715332,-0.02040964,-0.0010029164,-0.015310576,0.01318262,-0.013202695,0.006999503,0.0020175432,0.0038176065,-0.0054068817,-0.014092689,0.013972239,0.0009192703,-0.007956414,-0.0066615725,0.016341096,0.008438215,-0.003081521,0.0076753628,-0.0025261112,0.03434173,0.01361758,-0.02057024,-0.0024357734,0.0053466563,-0.020195507,-0.009247909,0.020891441,-0.00510241,-0.00045419813,0.002827237,-0.07157426,0.021132343,0.005212823,-0.0035465932,-0.020262422,-0.01846905,0.008478365,0.0075080707,-0.0180274,-0.00031116337,-0.004356287,0.024344351,-0.012794502,-0.0068054437,-0.021935344,-0.042585883,0.03080852,-0.015778994,0.0061128545,0.029951982,0.009843469,-0.001646991,0.02040964,0.013015328,-0.0148823075,0.014400506,-0.0066649183,0.0071333363,-0.01766605,0.0050087264,0.01449419,-0.022015644,0.003041371,0.013550662,-0.006845594,-0.01691658,-0.0064909346,0.027703578,0.003740652,0.027998012,-0.008117015,-0.022524212,0.0010924176,-0.0043462496,-0.01623403,0.00088162953,-0.013657729,-0.011757291,0.035412397,0.009375051,0.03940064,0.010673238,-0.02815861,-0.0030982501,-0.020851292,0.006721798,0.0009937152,0.012968486,-0.030166117,-0.02032934,0.02224316,0.03990921,-0.0039213276,-0.0010221549,0.018817019,0.005423611,-0.01679613,0.018843785,0.01564516,-0.025481937,-0.0064240177,0.008792874,-0.0010522675,0.016461546,0.012004883,0.008297689,-0.022591129,0.0058987206,-0.012827961,0.01612696,0.01580576,0.008471673,-0.018214768,0.017933717,0.012145408,0.020168738,-0.02192196,0.03005905,-0.0036436226,0.012894877,0.013115703,0.012332776,0.028533345,-0.008311073,0.0017699507,0.01429344,7.601336e-05,-0.0075214542,-0.004362979,0.0024257358,0.03013935,0.010392187,-0.005169327,-0.02489307,0.0005144233,0.010512638,0.0044265497,-0.030166117,-0.0064307093,0.017853417,0.007996564,0.018375367,-0.0033324591,0.014146223,-0.00734747,-0.011670299,0.0036670435,-0.007314012,-0.03359226,0.030969119,-0.020262422,0.012185559,-0.0021530497,-0.012526834,0.01723778,0.0006411471,0.0024039878,-0.01560501,-0.0050689518,-0.02040964,0.002148031,-0.007421079,-0.008110322,-0.006229959,-0.0063939053,-0.03201302,0.009368359,0.012593752,-0.0130220195,0.046279695,0.022484062,-0.009515576,0.008859791,0.006678302,0.014895692,0.0032387755,0.0051124473,-0.029630782,-0.0103721125,-0.014922458,-0.01838875,-0.01671583,-0.034555864,-0.0044332417,0.018763484,-0.019727089,-0.005550753,0.0070864945,-0.012520143,0.00076327036,-0.001349211,-0.015310576,0.009957228,-0.0033726094,-0.008873175,0.0011994846,-0.0007022087,0.007380929,-0.008130398,-0.0011133291,-0.008719265,-0.035465933,-0.01024497,0.019780621,0.0032822716,-0.015631776,-0.007293937,-0.00067084143,0.044780757,-0.0002952706,0.0065846182,-0.010753538,-0.003697156,-0.015966361,0.004379708,0.025642538,-0.0155113265,-0.018562734]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41564d50-a5da-11ee-b807-431aa4c6eafa', 'Business & Finance', 'this article is about investments', '[0.01896573,-0.027005129,0.010402024,-0.04427495,-0.011968477,0.011936111,-0.029956792,-0.00434011,0.0066930256,-0.028998796,0.0097547285,0.03443607,-0.011269398,0.01184549,0.008628436,0.014771262,0.019146973,-0.004573136,0.025477514,-0.0024257363,-0.030060358,0.018926892,-0.0037413626,0.0068095387,-0.007042565,0.004414549,0.009573487,-0.018577354,-0.007838737,0.013114188,0.0064535267,-0.0039743884,-0.0124086365,-0.014771262,-0.004848236,-0.008712585,0.0036701602,0.0011699849,0.02325082,-0.02199507,0.019367052,0.022461122,-0.025244487,0.0053369435,-0.009353407,-0.0034371342,0.039407294,-0.019833105,-0.0018447895,0.008136492,-0.001533279,0.03894124,-0.049893465,0.02340617,-0.0046443385,-0.008537815,0.0057415026,-0.003320621,-0.01013016,-0.0061428254,0.007838737,-0.005731793,-0.027807774,0.006537675,-0.03932962,-0.0061104605,0.005922745,-0.004003517,-0.00070676475,-0.0016684018,0.033400398,0.019703647,0.0013407088,0.008557234,0.007372685,-0.014214588,-0.0025713777,-0.006796593,0.0014337575,0.008557234,-0.016260039,-0.015625691,-0.029309498,0.0069195786,0.024131142,-0.00096446887,-0.013153025,0.013644969,-0.015716312,-0.004333637,0.03627439,0.012758176,0.0004203369,0.0009126853,-0.025089137,0.015483286,0.004204178,0.0073144287,0.015573907,-0.018538516,0.017230982,0.0077740075,-0.004880601,-0.011489478,-0.035627093,-0.0013520365,0.019483566,-0.0017541683,0.02845507,-0.027367614,-0.027445288,7.954643e-05,0.0078322645,-0.029024689,0.009961863,-0.0017671142,0.01808541,0.014434668,0.024856111,-0.02388517,0.020998236,0.011599518,0.008136492,-0.0031685068,0.023924006,-0.0133601595,-0.025115028,-0.0031134868,-0.015211422,-0.009664108,0.012311542,0.021024127,-0.00093534065,0.006550621,-0.006816012,-0.00918511,0.005408146,0.011016954,-0.03720649,-0.023898115,-0.0051103905,0.02731583,-0.019988457,-0.017541682,-0.016001122,0.0032947294,0.0037284167,0.0065344386,0.010699779,0.0026992182,0.010052484,-0.018797433,0.04013226,0.013826212,-0.0058677252,0.028377393,0.010596212,0.002833532,-0.010162525,-0.010809819,0.0012476603,-0.014719478,0.012958837,0.027160479,0.008641383,0.020467455,0.026979238,0.03166565,-0.00089003,0.012136773,-0.0047543785,0.007767535,-0.022253986,0.016726092,-0.0026781813,0.016376553,-0.0049323845,-0.013839157,-0.041142043,0.0066930256,0.014123967,-0.0050294786,0.019768376,0.02366509,0.014654749,0.0022202204,-0.0050683166,-0.011353547,0.01118525,-0.008032925,0.005058607,0.03065587,0.007942304,0.012253286,-0.6785718,-0.006139589,0.00015605867,0.033892345,-0.009172164,0.0027510019,0.017839437,0.0053045787,-0.0015567434,0.015548015,-0.0043304004,-0.013903887,-0.026901562,-0.011379438,0.0029079707,-0.014266372,0.00428509,-0.047563203,-0.0076833866,0.004236543,-0.0159105,0.023328496,-0.012563988,-0.0019629207,0.02199507,0.017127413,0.0017331311,-0.022953065,0.0011481388,-0.0060554408,0.002943572,0.029827334,-0.003456553,0.017606411,0.033322725,0.018538516,0.0067448094,0.020583967,0.023742765,0.03658509,-0.008201222,-0.012932945,-0.0067253904,-0.00054939126,-0.017800601,-0.0036442683,0.038630538,-0.006330541,0.019923726,0.008207695,0.011029899,0.012013787,-0.017502844,-0.0023917535,0.011049318,0.0041912324,0.009450501,-0.0052333763,0.027212264,0.0075021437,-0.0017557865,0.005427565,-0.015716312,-0.023341442,0.007262645,-0.0063726148,-0.011916692,0.023898115,0.012318015,-0.029801441,-0.02142545,0.009152745,-0.003744599,0.008816152,0.008893827,-0.0029014978,0.023289658,-0.006265811,-0.0021716733,0.014046292,-0.0013245265,-0.005667064,-0.0280408,-0.03021571,0.02498557,-0.016842604,-0.0049032564,-0.017684087,0.0024322092,0.007638076,0.017658196,0.0010138251,0.012453947,-0.0011724123,0.009728837,0.01292,0.015638636,0.0027768936,0.0024953205,0.01966481,0.0032558916,0.0022396392,0.017321602,0.004893547,0.018447895,0.015742203,0.010589739,0.033478074,0.0040909015,-0.022616472,-0.0062528653,0.0019321742,-0.008259479,0.008809679,-0.016156472,-0.03819038,0.034073584,-0.02309547,-0.0055214227,-1.4058429e-05,0.0090621235,0.010143106,0.02599535,-0.011567154,-0.01736044,0.008660801,-0.0185903,-0.014214588,-0.020829938,-0.030086251,0.01052501,-0.018629137,0.019897835,-0.0041944687,0.007172024,-0.0024969387,0.0077869534,-0.008052344,0.0020486873,-0.02788545,-0.014874829,-0.02340617,0.0026587625,-0.0022962776,-0.009379298,-0.031329058,0.0011902129,0.0026959819,-0.02892112,0.018124247,-0.002867515,-0.0021716733,-0.022914227,0.01597523,0.0034144789,-0.0052269036,0.0009596142,-0.008045872,-0.008997395,-0.008602545,-0.023496792,0.0065020737,-0.04404192,0.00015494613,-0.011644829,0.00013835922,-0.018409057,-0.00072861096,0.0087643685,-0.008408356,0.0067383363,0.009651162,-0.0036798695,0.00058013777,-0.00467023,0.025127975,-0.0011012099,0.00901034,-0.0038222743,-3.438752e-05,-0.004107084,-0.022331662,-0.022383446,0.013657915,0.024894949,-0.013463727,0.0204804,0.018059518,0.00089003,0.0051427553,-0.0026619988,0.021891503,-0.005537605,0.0020163225,-0.01235038,0.0013156262,-0.027108695,0.0036442683,0.0062755207,-0.009793567,0.03689579,0.007573346,0.027134588,-0.01635066,0.0020211772,-0.011094629,0.0055796793,-0.016376553,0.019625971,-0.00024860157,0.031795107,-0.0022299297,-0.016544849,-0.0016077178,0.0052333763,-0.0040617734,-0.002608597,-0.011916692,-0.010512063,-0.002704073,-0.007379158,-0.00969,-0.0027704206,-0.015560961,0.0014135295,0.026098916,0.008952084,-0.0021959469,-0.02092056,-0.020402724,0.0017590229,0.022461122,-0.0071655507,-0.00045998368,0.012816432,0.028636312,0.034928013,-0.016467173,0.025076192,-0.01474537,0.02416998,0.03272721,-0.009353407,-0.0007569301,0.020247374,-0.0066800797,0.008071763,0.01581988,0.008265952,0.00077028055,-0.028947012,0.014188697,-0.0044857515,-0.00029411446,0.0072950097,-0.027704207,0.014421723,0.0015988175,0.011107574,0.012363326,0.020583967,-0.0009458592,-0.005492294,-0.002854569,0.012803487,-0.0005121718,-0.0185903,-0.008123547,0.01091986,-0.011418276,0.009333988,0.008272424,0.011444168,-0.0025373946,0.012311542,0.014758316,0.0017606412,-0.018486733,-0.0008087136,0.008977976,-0.00412003,-0.026642645,0.016104689,0.02602124,-0.00969,-0.023289658,0.013567294,0.010609157,-0.01030493,0.026487293,-0.0047123046,0.0056120437,0.0013746918,-0.0012929708,-0.0032121993,0.002231548,0.029024689,-0.022046853,-0.0014507489,-0.012149719,0.022694146,-0.01975543,0.014628857,0.011068737,0.020752264,-0.011249979,-0.009424609,0.0027704206,-0.0028982614,-0.015832825,0.027678315,-0.01940589,-0.027160479,0.011444168,0.007864629,-0.011256453,-0.017774709,0.025904728,0.03078533,0.022059798,0.01843495,-0.008052344,-0.036533304,0.035886012,0.12158781,-0.003819038,-0.012894108,0.021930339,0.0035245188,-0.031147813,-0.020816993,-0.039562643,0.0025373946,-0.015340881,0.015444448,-0.009994228,-0.0009426227,-0.004602264,0.029361282,-0.00087061117,-0.032079916,0.004906493,0.010602685,-0.0094763925,0.017761763,-0.015871663,-0.019962564,0.034643203,0.021114748,-0.004689649,0.047899798,0.023742765,0.0036539778,-0.00039727704,0.011016954,-0.007372685,-0.008401884,0.0133989975,-0.013347214,-0.018163085,-0.0058385967,0.004922675,0.010932805,0.010816292,0.012874689,0.015573907,0.012641663,-0.019211702,0.0063499594,-0.031769216,-0.0013674097,0.016726092,-0.0021927103,0.008265952,-0.0068548494,-0.007968196,-0.045388293,-0.015444448,0.023199037,0.011204668,-0.017852385,0.02183972,-0.01799479,-0.04691591,-0.02215042,-0.031484406,0.00590009,-0.00077796716,0.02391106,-0.02949074,-0.012861743,-0.0050974446,-0.0033109116,0.0047608516,0.016311822,-0.010052484,-0.015742203,-0.010298456,0.035212822,0.007981142,0.020027293,0.011709559,-0.027393505,0.0018350801,0.00043692382,-0.019185811,-0.016622525,-0.04287679,-0.019302323,0.012136773,-0.015211422,-0.00020025675,-0.015120801,0.0054534567,0.00019337925,0.025568135,0.019354107,-5.5222317e-05,0.007728697,0.0030503755,-0.0019402654,-0.020467455,0.01808541,-0.0024888476,0.0006428444,0.004828817,-0.00894561,-0.013463727,0.0056638275,0.0072432263,0.01395567,0.008375991,-0.007968196,0.0014183841,0.0056314627,-0.000361069,-0.006990781,0.01679082,-0.020169698,0.011288817,0.021464288,0.0011044464,0.009359879,0.0010704633,0.019328216,-0.009036232,0.0066930256,0.01584577,0.005201012,-0.0023610068,0.0007508617,-0.03358164,0.0026619988,0.018939838,-0.0018124247,0.0029678456,-0.019289378,-0.026797995,-0.012227395,-0.023432063,-0.032364726,0.0039161323,-0.022344608,-0.022253986,-0.005783577,-0.0068095387,0.022124527,-0.027963124,0.028972905,-0.040002804,0.002301132,0.0072432263,0.01380032,0.01997551,-0.004796453,-0.0015090054,-0.030604087,-0.008732003,0.00773517,-0.018486733,0.019703647,-0.012104408,0.014978396,0.024817273,0.042022362,-0.0030714127,-0.0044825147,0.015781041,-0.0031507062,-0.013826212,0.0065797493,-0.0058515426,-0.029335389,0.009113908,0.019289378,0.0011465205,0.03578244,0.0074374145,0.0014418486,0.032079916,0.0019337925,0.0159105,-0.045673102,-0.0020648697,-0.012686973,-0.0069325245,-0.019729538,-0.0047673243,-0.055253062,-0.01017547,0.023147253,0.02107591,0.013424889,-0.00076380756,0.005812705,-0.002157109,0.0215808,0.005641172,-0.013994508,-0.018137194,-0.014201643,-0.04427495,-0.0137355905,0.031872783,0.0017509317,0.0065829856,0.01997551,-0.019367052,0.0077869534,0.003408006,0.004757615,-0.014797154,0.01279054,-0.011055791,-0.007948777,-0.027082805,-0.019043406,-0.0067318636,0.031121923,0.00934046,-0.019638916,0.036947574,-0.013308376,-0.02555519,0.01584577,-0.006359669,0.020583967,-0.015069017,0.022215148,0.010149579,0.023872223,-0.03692168,0.008440721,0.020739317,-0.009482865,0.013502564,0.023574468,-0.012809959,-0.032183487,0.027522964,0.008874408,-0.016402444,-0.014253426,0.022189258,-0.0023512975,0.015431502,0.0010728907,-0.026474347,-0.015573907,0.023639197,0.015522123,0.013541402,-0.020286212,-0.038734104,-0.014059238,-0.0022202204,-0.009787094,0.01140533,0.0045763724,-0.015392665,0.002977555,0.010868075,-0.02060986,0.014784208,0.007884048,0.020842886,-0.024118194,0.03570477,0.0053919638,0.006751282,-0.0159105,0.0012306687,0.0068872143,0.020972343,-0.004922675,-0.011573627,0.004472805,0.010932805,0.006256102,-0.00258756,0.0064243986,-0.017088577,-0.017269818,-0.016894387,0.025037354,0.015263205,-0.013994508,0.00901034,-0.0014564127,0.007282064,-0.0061169337,-0.0061169337,-0.014369939,0.013282484,-0.025891783,-0.025464568,0.0022347844,0.004683176,-0.001992049,-0.018512625,0.012182084,0.020907614,-0.023949899,0.0107904,-0.020143807,0.011152885,-0.002784985,0.013489619,0.015962284,-0.012473366,0.026616752,-0.023924006,-0.0076963324,-0.0075992383,-0.006816012,0.0026069789,-0.013916833,0.0003847357,-0.01235038,0.008544289,-0.019936671,-0.0016166181,-0.028351502,-0.0070814025,-0.003553647,-0.010110741,0.021412505,-0.03720649,0.012952364,-0.0013981563,0.0060198396,-0.012887634,-0.0061169337,-0.012214448,-0.021982122,0.025464568,0.013107715,-0.0021312174,-0.0037769638,-0.022707094,-0.011897274,-0.0011966858,-0.008421302,0.0029128254,0.018797433,-0.0022250751,0.009275731,0.0022978957,-0.0048093987,-0.016997956,-0.026616752,-0.02076521,-0.012583407,-0.0060975146,-0.006327304,0.026642645,0.016881442,-0.030189818,-0.042074148,0.0097741475,-0.027678315,-0.013230701,0.0087449495,0.023043687,0.01742517,-0.0066994987,-0.0042753806,0.02173615,0.004492224,0.014551181,-0.013839157,0.00016131793,0.0153797185,-0.029568415,-0.017062685,-0.0017201853,-0.020299157,-0.004845,0.01650601,-0.015107855,0.016959118,0.021218315,-0.0022218386,-0.015457394,0.008291843,-0.0069648894,-0.0035827754,0.029231822,0.013321322,-0.039873343,4.020306e-06,0.035601202,-0.008544289,-0.025632864,0.027497074,0.00061250245,0.013865049,-0.0059033264,-0.009243366,-0.0018674448,-0.0024419187,0.0009385771,-0.0019014277,-0.023846332,0.026344888,0.02070048,0.007968196,-0.01474537,0.0025228306,0.019159919,-0.008259479,-0.028506853,0.015483286,-0.007722224,0.01852557,-0.013515511,-0.02628016,0.017787654,0.0065409113,-0.011605991,-0.012499258,-0.0040779556,0.011178777,0.009178637,-0.02731583,-0.0071784966,-0.011942585,0.013644969,-0.023328496,-0.021283045,-0.011133466,-0.02432533,-0.019198757,-0.0040747193,-0.006447054,-0.007864629,-0.005832124,-0.011787234,-0.03617082,0.013632024,0.19159919,-0.016972063,0.015742203,0.0014499398,0.01235038,0.026163645,0.03720649,0.0036377953,-0.016389498,0.009113908,-0.0052689775,0.01789122,-0.0053045787,-0.0032607464,-0.026720319,-0.019574188,-0.030707654,-0.0009563777,-0.03197635,0.02573643,0.0014604584,-0.014835991,-0.01540561,-0.014732424,0.0046993583,-0.012648135,-0.011049318,0.021114748,0.023341442,0.026616752,0.004702595,-0.026073026,0.0027267283,-0.018344328,-0.013541402,-0.0039743884,0.008071763,-0.023652144,0.011949058,-0.0040132264,0.012117354,0.03267543,0.0001177267,-0.010706252,-0.0026393435,0.02905058,-0.032778997,0.0013666006,-0.004880601,0.0075021437,-0.031199597,0.02019559,0.012816432,0.011981422,-0.008984448,0.0075539276,0.027937233,0.017787654,0.0030714127,-0.008356573,-0.010440861,0.029723765,0.0007545027,-0.00021906875,-0.019858997,0.0077934265,0.0016975299,0.02035094,0.009670581,0.0033012023,0.011884328,0.008285371,-0.017787654,-0.0063693784,-0.02573643,-0.022512905,0.028972905,0.020376833,0.04531062,0.012771121,-0.016959118,0.014162805,0.008155911,0.0007399386,-0.00093614974,-0.027186371,0.0033044387,-0.0038449296,-0.011191723,-0.011152885,0.02470076,0.012764649,-0.0076769134,-0.018926892,0.017114468,0.012622244,-0.0072885365,0.03399591,-0.011722504,0.002909589,-0.032028135,0.0627099,-0.00036774421,0.00033942508,-0.024131142,-0.018667975,-0.020998236,0.036403846,-0.013606132,-0.0015793988,0.017515792,0.013515511,0.0061622444,-0.0117548695,0.014266372,0.008162384,0.014577073,-0.010162525,0.023781601,-0.020959398,-0.008291843,-0.010913386,0.003196017,-0.022616472,-0.005929218,0.0025713777,-0.010751562,-0.010253145,-0.004689649,-0.019522404,0.042384848,-0.0133601595,-0.018447895,-0.01107521,0.0071914424,0.011237034,0.0150431255,0.010039538,0.0030034469,0.008583126,-0.014136913,0.015069017,-0.020221481,-0.007799899,-0.0061590075,-0.008667274,0.030448737,0.012732284,-0.025192704,0.008647855,-0.020169698,-0.009003867,-0.001444276,-0.023898115,0.009670581,-0.010466753,-0.02760064,-0.02555519,0.027238155,0.011593046,-0.017839437,0.009223947,0.025619918,-0.0062949397,-0.023289658,0.002979173,-0.165086,0.017878275,0.008097655,0.0015114328,0.024584247,0.005832124,0.021127695,-0.0009126853,0.0016182364,0.015314989,-0.0021441632,-0.00973531,-0.024390059,-0.0104279155,0.0039614425,0.006796593,-0.03692168,0.015056072,0.0056152805,-0.00790994,0.018952785,-0.018266652,-0.0016514102,-0.008007034,0.005291633,0.004683176,-0.008719058,0.0060263122,-0.010971643,-0.015884608,-0.031898677,0.0060133664,0.030966572,0.033141483,0.011237034,0.007269118,0.0056800097,-0.013515511,0.00091834913,0.0068419036,0.027678315,0.01292,-0.001977485,-0.0014030109,0.0074309413,-0.007916412,0.021101803,-0.004294799,0.01815014,0.0047252504,0.023186091,-0.010622104,0.0031701252,-0.010220781,0.025490459,0.033970017,-0.009204528,0.005861252,-0.004204178,-0.012285651,-0.0153797185,0.009923026,0.026797995,-0.020933505,-0.011288817,-0.022797715,-0.00019519977,-0.0016538376,-0.027186371,0.022448175,-0.003142615,-0.018007735,0.013929779,-0.007126713,0.004867655,-0.012182084,-0.029438956,0.014356993,-0.008893827,0.0040747193,-5.3705222e-05,0.029361282,-0.0052689775,0.0039938074,-0.0005704283,0.032494187,0.009923026,-0.008958557,0.0070555108,-0.002841623,0.016454227,-0.055253062,-0.0078322645,-0.0091397995,0.004019699,0.02861042,0.00045917457,-0.0007617848,0.011696612,-0.0056088073,-0.017671142,0.004922675,-0.02173615,-0.011159359,0.024817273,0.00048102078,0.028403286,0.0136967525,0.02325082,0.0036119036,-0.01714036,0.0261507,0.00267009,0.020816993,-0.023276713,0.006783647,0.02155491,-0.03195046,-0.007508617,-0.0067059714,0.03578244,0.0056573544,-0.026979238,0.0087255305,0.0035698295,-0.009107434,-0.08647855,-0.016298877,0.024856111,0.01953535,0.009463446,0.020273266,0.0137355905,0.017852385,-0.019677754,0.029775549,-0.018331382,-0.03140673,-0.002335115,0.020027293,0.017386332,-0.013198336,-0.009961863,-0.016648415,-0.012602825,0.016272984,-0.0007925313,-0.010842184,-0.005511713,-0.008382465,-0.013748537,0.02659086,-0.03541996,0.01704974,0.0057544485,-0.0024726652,-0.007282064,-0.014007454,0.017930059,-0.02848096,0.0061104605,-0.00035843937,-0.034902122,-0.018732704,0.034306612,-0.01068036,-0.00395497,0.012188557,0.0015300425,-0.06281346,0.021619638,-0.014344048,-0.03399591,-0.0064308713,0.00089488475,-0.028144367,-0.01292,-0.0029484266,-0.013386051,-0.006447054,0.03298613,0.0013827829,-0.011884328,0.021567855,-0.0073532662,-0.0068289577,6.5538574e-05,-0.003971152,-0.01597523,0.017399278,0.005181593,-0.026396671,-0.023859277,-0.007463306,0.006977835,-0.019716593,-0.025024408,0.0031377603,-0.03516104,0.009178637,-0.042799115,-0.0052560316,-0.029283606,-0.013334268,0.018344328,0.028118476,-0.028066693,-0.030474627,-0.004757615,-0.00517512,-0.0075215627,0.028532743,0.02391106,0.0054858215,0.007172024,-0.019496512,0.011780761,0.020454507,0.01830549,-0.017464006,-0.00028035947,0.015729258,-0.0022266933,-0.017852385,0.0043433467,0.016674308,0.0058547794,-0.006243156,-0.074775465,0.032649536,-0.024972623,0.00018063563,-0.0061460617,0.0010389078,-0.002710546,-0.008498978,-0.0063985065,0.006770701,-0.017036792,0.0023593886,-0.009424609,-0.0033918235,-0.0036733965,-0.035834227,0.014331101,-0.01380032,-0.017399278,0.018849218,0.0070360918,-0.007722224,0.049323846,-0.009780621,-0.013994508,0.01085513,-0.004751142,0.01817603,-0.021308936,-0.008660801,-0.0058418335,0.0011748396,-0.003874058,0.007236753,-0.015962284,-0.0056444085,-0.008233586,0.034772664,0.012913526,0.002683036,-0.010557374,-0.01815014,0.0053369435,-0.014447615,-0.0077740075,-0.01496545,-0.008498978,-0.012195029,0.026823886,-0.0076639676,0.02775599,0.013230701,-0.01380032,-0.008861463,-0.011366492,-0.0012031588,0.016985008,0.00045917457,-0.016091743,-0.0036669236,0.03358164,0.022978956,-0.008071763,-0.01940589,0.012201502,0.02630605,-0.028377393,-0.006333777,0.0039193686,-0.031821,-0.016039958,-0.0043239277,0.009702945,0.00019590775,0.0066800797,-0.0023237874,0.004592555,-0.011249979,-0.010770981,0.0027704206,0.0024872294,0.009282204,-0.027704207,0.013133607,-0.0043660016,0.012512204,-0.00839541,0.014784208,-0.019082243,0.0137355905,-0.0030778856,0.032520078,-0.009159218,-0.014797154,0.024506573,0.004204178,-0.020855831,-0.0036572143,-0.018473787,0.017593466,0.03122549,0.0041718134,0.0069195786,-0.019703647,-0.020583967,0.0037025248,-0.008822625,-0.04140096,-0.012764649,0.017308656,-0.0062043183,0.027497074,-0.0061104605,0.0056282263,-0.01035024,0.005715611,0.0013479909,-0.013942725,-0.025477514,0.037310056,0.0029257713,0.018253706,0.009282204,-0.005848306,0.00412003,0.0010647995,0.001731513,-0.019108135,-0.0010793636,-0.015431502,-0.0107450895,0.021490179,0.0011214379,-0.017826492,-0.009217475,-0.04212593,0.013172444,0.014007454,0.015237314,0.044533864,-0.0038222743,-0.00067520916,-0.008732003,-0.0022817133,0.014615911,-0.009146272,0.0065182564,-0.02416998,-0.024804328,0.009968336,5.5829154e-05,-0.023509739,-0.015146692,-0.024377113,0.032157592,0.014577073,0.011146412,-0.030578194,0.028817553,0.015949339,0.01329543,-0.010201362,0.006414689,-0.008246533,-0.0010599449,0.016493065,-0.0033497494,-0.0032024898,-0.036093146,0.0011894037,-0.0054113823,-0.032649536,0.0057188473,0.019483566,-0.010259619,0.010758036,-0.008084709,0.008900301,0.024545409,0.007903467,0.01208499,-0.016518958,-0.0061298795,-0.0103890775,0.022046853,0.009023286,-0.002189474,-0.0053563626]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41590018-a5da-11ee-b807-c383000a126b', 'Business & Finance', 'this article is about economics', '[0.017707918,-0.019764572,0.009474835,-0.03466561,-0.004950844,0.004575731,-0.01089121,0.008575859,0.0008965523,-0.04560856,0.012986669,0.024731586,-0.017358676,0.008588793,0.0018432274,0.006777903,0.01737161,-0.004763288,0.017294,-0.011266324,-0.019298915,0.027784228,-0.0037705319,0.003130253,-0.0052483478,0.013905049,0.011816058,-0.023994295,-0.00020291671,0.010794198,-0.004168281,-0.0057301736,-0.019958597,-0.016013443,-0.00920967,-0.015159737,-0.0014373941,-0.004882936,0.022002315,-0.020450123,0.008459444,0.013607546,-0.01894967,0.0034956646,-0.020243164,0.004979948,0.038753048,-0.025106698,0.000966886,0.0035732742,0.0024366174,0.037226725,-0.04550508,0.012462804,-0.0019515575,-0.00964299,0.00087310775,0.0073147025,-0.007812697,-0.010606642,0.0033727828,0.004698613,-0.037692383,-0.00024252993,-0.029905558,-0.009196735,-0.0031674409,0.00026941032,-0.01558659,-0.0077868276,0.025986273,0.02204112,-0.0022781645,-0.0047471193,0.024511691,-0.010056907,-0.0010889594,-0.0038158041,-0.0058724578,0.007237093,-0.0058789253,-0.017630309,-0.021006325,0.0081490055,0.02923294,-0.0074957917,-0.017578568,0.008058461,-0.008045526,-0.0017963384,0.017203456,0.011130507,-0.0019531744,0.00910619,-0.025080828,0.019298915,0.006609749,0.018962607,0.02201525,-0.030086646,0.02448582,0.00910619,-0.012824982,-0.013633416,-0.04555682,-0.0034374576,0.01752683,-0.006991329,0.024809195,-0.019984465,-0.022416232,-0.0030752795,0.01894967,-0.028870763,0.008562923,-0.007469922,0.022338623,-0.0032337324,0.026012143,-0.028405106,0.026645955,0.021834161,0.0071271462,-0.005688135,0.020191425,-0.008769882,-0.030707523,-0.008996244,-0.012352858,2.1688744e-05,0.013141888,0.023101784,-0.0007817548,0.024408212,-0.006415725,-0.0069201873,-0.0038158041,0.0103220735,-0.031975146,-0.0256629,0.0010986605,0.026115622,-0.015884094,-0.014538861,-0.00905445,0.01584529,0.012482207,0.016776603,0.026348451,0.011059364,0.0034891972,-0.018484015,0.028094666,0.02301124,-0.0033307443,0.03254428,0.01061311,0.0038028692,-0.0066873585,-0.014888104,-0.0049831816,-0.017578568,0.0155089805,0.014060268,0.008381834,0.027059872,0.025430072,0.0272927,0.0024188317,0.010367346,-0.019738702,0.0045595625,-0.02035958,0.021549592,0.015961703,0.021239154,-0.0023541572,-0.010270334,-0.03313929,-0.00037309187,0.0070754066,0.014888104,0.027034003,0.02448582,0.017177586,0.022403298,0.008452976,-0.009397226,0.025572356,-0.0062152334,-0.00042604425,0.027887708,0.0039968933,0.019596418,-0.67758334,-0.020152621,0.004517524,0.030733392,-0.024162449,0.0104126185,0.01750096,0.001898201,0.00688785,0.020191425,-0.017358676,-0.011958342,-0.013956789,-0.0074763894,-0.0007765,-0.012559816,0.012734438,-0.03272537,-0.0006152176,0.006221701,-0.02035958,0.026270842,-0.013019007,0.00910619,0.017565634,0.011266324,0.011958342,-0.014137878,0.010432021,-0.0038222717,0.004844131,0.03300994,-0.00084966316,0.01724226,0.03280298,0.008543521,0.00018907229,0.019441199,0.024822129,0.026464866,-0.014681145,-0.023024173,-0.0120812245,-0.0006722121,-0.0074634543,-0.006415725,0.02739618,0.0010946183,0.015922898,0.008627598,0.005073726,0.012048887,-0.008310692,0.006635619,0.011719046,0.0053453594,-0.004038932,0.004650107,0.022131665,0.0049831816,0.0076639457,0.010341476,-0.0063316477,-0.014810494,0.007366442,-0.0013161291,-0.011919538,0.02938816,0.013594611,-0.0256629,-0.022144599,0.011279259,0.0060955854,-0.0036217803,0.004494888,-0.002004914,0.021834161,-0.013659285,-0.006874915,0.007308235,-0.0001478422,-0.009778807,-0.021381438,-0.032363195,0.02219634,-0.030138386,-0.01826412,-0.009345487,-0.00015046961,0.011169312,0.016492035,0.0060794167,0.011253389,0.008789284,0.012307585,0.0070754066,-0.0043687723,-0.0007106127,0.0006722121,0.02477039,0.0057916148,0.007735088,0.027939448,0.0050284537,0.019919792,0.029646859,0.015250281,0.02923294,0.010212127,-0.013025474,0.0023379885,-0.0031189348,-0.015741808,0.012973734,-0.007877372,-0.03482083,0.03608845,-0.023515701,-0.0030267735,0.004957312,-0.004207086,0.011667307,0.026620084,-0.017384546,-0.00920967,0.023528637,-0.025016153,-0.0074375845,-0.02742205,-0.027059872,0.0067067607,-0.011195182,0.01553485,-0.001569977,0.021083934,-0.0017688517,0.006354284,3.130152e-05,0.013982658,-0.027085742,-0.010192724,-0.02742205,-0.00034924308,-0.010360879,-0.011440945,-0.022894826,0.00821368,-0.008892764,-0.032078624,0.015133867,-0.01640149,-0.010503163,-0.012553349,0.027240962,0.006283142,-0.0047665215,-0.00618613,-0.005500579,-0.008601728,-0.0010444955,-0.024563432,0.008103733,-0.03683868,0.004171515,-0.009125593,0.0043429025,-0.022118729,-0.008478846,0.013542871,-0.022002315,0.007942047,0.015418435,-0.0003059919,-0.0016637553,0.004604835,0.02545594,-0.0063154795,0.011136974,0.0030671952,-0.007334105,-0.0041391775,-0.012928462,-0.03531236,0.009112658,0.02290776,-0.009623587,0.021691877,0.0048117936,0.00042159786,0.009914624,0.0019289213,0.029905558,0.0014697313,-0.0114991525,-0.011356868,-0.004989649,-0.027913578,1.1520172e-05,0.009675327,-0.0124175325,0.035907365,0.010723056,0.02768075,-0.010386748,0.018225316,-0.011486217,0.01369809,-0.013258303,0.026374321,0.007838567,0.035493445,-0.012010082,-0.02091578,-0.0108265355,-0.0016944758,0.008433574,-0.0071918205,-0.003528002,-0.019842181,-0.0013128953,-0.0065838792,-0.013685156,-0.006092352,-0.005254815,-0.0017284299,0.021756552,0.005351827,0.0060212095,-0.021769486,-0.033656687,0.004093905,0.0077738925,-0.009921091,0.0034697948,0.006984862,0.031975146,0.039322186,-0.008129603,0.018910866,-0.0135816755,0.006418959,0.03872718,0.0033760166,-0.0037834668,0.015832353,-0.019053152,0.0039451537,0.011647904,0.015172672,-0.003828739,-0.01907902,0.011460347,0.002103543,0.012307585,0.0027244196,-0.02731857,0.020799367,0.0029879687,0.009804676,0.015793549,0.024252992,-0.0010509631,-0.014060268,-0.019958597,0.009578316,0.0021682174,-0.017578568,-0.006758501,0.008427107,-0.01938946,-0.0084077045,0.010936483,-0.0007482048,-0.015211477,0.019027282,0.028793152,0.010399683,-0.024783324,0.0122493785,0.016970627,-0.0111628445,-0.020281969,0.008873361,0.030940352,-0.014991583,-0.026801175,0.013879179,-0.004527225,-0.008123136,0.026775304,-0.0018496949,0.025287786,0.005170738,0.0056978366,-0.0076316083,0.010626044,0.032156233,-0.007586336,-0.0013096617,-0.0025578823,0.025443006,-0.020747626,0.0075798687,0.011033495,0.017837267,-0.009733534,-0.018173575,-0.0056460965,0.00075386383,-0.01752683,0.0275514,-0.026270842,-0.01765618,0.00956538,0.010638979,-0.007929112,-0.017384546,0.022364493,0.03854609,0.015871158,0.015573655,-0.0006556392,-0.030785132,0.021743616,0.12220921,-0.0030526433,-0.010541967,0.025856923,0.0052515813,-0.045168772,-0.01584529,-0.031742316,-0.0013411905,-0.017901942,0.0074957917,-0.00785797,0.004329968,-0.010212127,0.033915386,0.0007029326,-0.03109557,0.0010897678,0.025430072,-0.0052903863,0.012909059,-0.0104902275,-0.024835065,0.032777112,0.01229465,-0.0050090514,0.04581552,0.020812301,0.0012482207,-0.0073729097,0.009222604,-0.009170865,-0.01364635,0.016543774,-0.015353762,0.000821368,-0.006127923,0.014409511,0.008258953,0.0175527,0.005529682,0.013917984,0.006328414,-0.028068798,0.009817611,-0.031794056,0.011382738,0.014163747,-0.012870255,0.00790971,0.0047083143,-0.0072500277,-0.039503273,-0.012980201,0.014577665,0.0051157647,-0.013031942,0.03119905,-0.01828999,-0.043176793,-0.017720854,-0.026852913,-0.0011552509,0.0051189982,0.014137878,-0.012824982,-0.00974647,-0.011919538,-0.007935579,0.006816708,0.01642736,-0.023451027,-0.013297107,-0.010975287,0.0329582,-0.0026290244,0.018445209,0.009895221,-0.018600428,0.0014349688,-0.0034115876,-0.025274852,-0.019997401,-0.050239265,-0.01655671,0.011240453,-0.016711928,0.013070746,-0.020812301,-0.0035700405,0.001982278,0.024472887,0.015043323,0.0011673773,0.0068102404,-0.0018998177,-0.0067132283,-0.011958342,0.014241357,-0.0047277166,0.004575731,0.0014761988,-0.0057075378,-0.01283145,0.004928208,-0.007489324,0.0114926845,0.0010541967,-0.00092484744,0.0049928827,0.005629928,-0.014021464,-0.0031803758,0.019803377,-0.012546881,0.023593312,0.02010088,0.013310042,0.014901038,0.0017284299,0.019583482,-0.020825237,-0.010619577,0.01058724,-0.003130253,0.0055814222,0.005898328,-0.044418547,-0.007515194,0.016996497,-0.0015821035,0.009959896,-0.013348848,-0.020527733,-0.01653084,-0.014318967,-0.030422954,0.012229975,-0.011634969,-0.020657083,-0.012546881,0.0024366174,0.011039962,-0.01658258,0.02760314,-0.039348055,0.00410684,-0.0028909568,0.0063154795,0.007528129,0.008271887,-0.01813477,-0.022416232,-0.0135816755,0.00033064914,-0.02757727,0.006089118,-0.009953428,0.0142542925,0.033630818,0.046643354,-0.009144995,-0.0042588254,0.010231529,-0.012068289,-0.0075410637,0.0002665808,0.0029831182,-0.033708427,0.00065846875,0.028844893,0.009164398,0.028689673,0.0018820323,0.00959125,0.029025981,0.01191307,0.013012539,-0.030086646,-0.014086138,-0.002381644,-0.0041294764,-0.02752553,0.00035328526,-0.04573791,-0.026309647,0.030060776,0.013969724,0.017591504,-0.00529362,0.01466821,-0.0104061505,0.02178242,0.0015028771,-0.02400723,-0.028172277,-0.019311849,-0.034251694,0.0013185544,0.026568346,-0.00038764367,0.0107424585,0.011350401,-0.014344837,0.0063866214,-0.0028489183,-0.00010236784,-0.013141888,0.0102379965,-0.0038578426,0.0010388365,-0.024084838,-0.021588396,-0.020644147,0.027266832,0.020527733,-0.02078643,0.03668346,-0.009144995,-0.043538973,0.020424254,-0.01380157,0.007722153,-0.006066482,0.030655783,0.015056258,0.0063736863,-0.03319103,0.006467465,0.011343933,-0.011111104,0.019117827,0.017074106,-0.007599271,-0.029025981,0.02757727,0.009423096,-0.011059364,-0.022597322,0.029025981,-0.002475422,0.012391662,-0.006655021,-0.02739618,-0.005002584,0.025934534,0.016789539,0.010593707,-0.025042024,-0.035674535,-0.012967267,0.0031464216,-0.011796656,0.027266832,0.004604835,-0.01823825,0.00010893636,0.015884094,-0.023981359,0.010807133,-0.0033339781,0.021769486,-0.035260618,0.025882794,0.009830547,0.0009830546,-0.01768205,-0.006092352,0.0025934533,0.02017849,-0.017294,-0.014267228,0.019402394,0.019040216,0.0136722205,0.0026597448,0.0046695094,-0.017332805,-0.014681145,-0.024071904,0.021058066,0.011570294,-0.009507173,0.010270334,-0.0011083618,-0.004734184,-0.019777507,-0.011014093,-0.026063884,0.010606642,-0.02196351,-0.014525926,-0.006043846,0.002994436,-0.004359071,-0.016013443,0.009662393,0.01933772,-0.02770662,0.008931569,-0.015444306,0.014888104,-0.0103285415,0.0060470793,0.010335009,-0.013374717,0.028844893,-0.02364505,-0.029077722,-0.014370707,-0.0043817074,0.0135040665,-0.01584529,0.0012037569,0.00044382978,0.0056849015,-0.008996244,-0.0075798687,-0.02744792,-0.0009935643,-0.008478846,-0.012126496,0.01561246,-0.028560324,-0.002320203,0.0072047557,0.0015998891,-0.0057495763,-0.013193628,-0.005642863,-0.029776208,0.033786036,0.01637562,-0.0010784498,-0.00953951,-0.017694984,-0.009578316,-0.006842578,-0.017940747,8.79171e-05,0.003696156,-0.005306555,-9.140347e-05,0.0035959103,-0.0034180551,-0.027965317,-0.043383755,-0.004410811,-0.016466165,-0.016647255,-0.0019499406,0.023140589,0.019143695,-0.020010335,-0.04374593,0.0094877705,-0.032233845,-0.014176683,0.0011035112,0.031819925,0.0104061505,-0.0060826507,-0.0100763105,0.009843482,0.0019806612,0.010645447,-0.009966363,-0.0024915908,-0.00045676468,-0.02135557,-0.017087042,0.0029750338,-0.016996497,0.0033630817,0.019958597,-0.0044366806,0.012533947,0.016854214,-0.0013331062,-0.0018529287,0.004866767,-0.008892764,0.0052742176,0.020980455,0.0064318934,-0.03518301,-0.0005622652,0.03903762,-0.004921741,-0.03877892,0.011731981,0.0003179163,-0.0034374576,0.0024075138,-0.013258303,-0.00091191253,-0.0056622652,-0.0016516288,-0.011298661,-0.008795752,0.021588396,0.024822129,0.0118872,-0.017914876,-0.007178886,0.016142791,-0.0124951415,-0.013995593,0.013633416,-0.0058336533,0.02938816,-0.019738702,-0.025248982,0.009752937,0.006176429,-0.019053152,-0.018988477,-0.010852406,0.0037155584,0.019880986,-0.018975541,-0.005930665,-0.017048238,-0.005762511,-0.017216392,-0.016142791,0.0060244435,-0.020734692,-0.01653084,-0.009985765,-0.016181597,-0.004236189,0.0016637553,-0.009869351,-0.03119905,0.020540668,0.19091956,-0.012824982,0.01056137,0.010671317,0.018884998,0.027887708,0.03096622,0.0019159864,-0.019311849,0.009675327,-0.004155346,0.024317667,-0.010529033,0.0008650234,-0.022131665,-0.025520615,-0.03109557,-0.008957438,-0.027163351,0.022157535,-0.00019968297,-0.0026015376,-0.017669113,-0.010638979,0.012339923,-0.014344837,-0.019829247,0.0051286994,0.020579472,0.023541572,0.0057948483,-0.017837267,0.008032591,-0.011091702,-0.026930522,0.011958342,0.018432274,-0.024679845,0.020579472,-0.0072047557,0.0070495363,0.027008133,0.0062184674,-0.0094942385,-0.001220734,0.03849435,-0.033423856,-0.00047576288,-0.0024592534,0.009765872,-0.03976197,0.015793549,0.0016160577,0.021872966,-0.0023040343,0.006318713,0.016207466,0.02023023,0.005885393,0.0065062693,-0.012986669,0.043720063,-0.0114926845,0.0012239676,-0.022235144,0.02078643,-0.0032547517,0.022894826,0.008976841,0.0020970753,0.007974384,-0.004979948,-0.0061246892,-0.008588793,-0.00867287,-0.022403298,0.027266832,0.023334613,0.039787844,0.026671825,-0.01553485,0.010703654,0.003612079,-0.011130507,-0.004546628,-0.024304733,0.003236966,-0.0015384482,-0.020566538,-0.0073987795,0.018199446,0.0046080686,-0.0040259967,-0.018690974,0.012456337,0.03461387,-0.0022813983,0.024240058,-0.017772593,-0.0012538797,-0.027810099,0.072280385,0.0009895221,0.0027292701,-0.026063884,-0.020023271,-0.028793152,0.035648666,-0.006874915,-0.0056849015,0.019467069,0.018833257,0.01645323,-0.009636522,0.01563833,0.010716589,0.01724226,-0.0067132283,0.014383641,-0.02770662,-0.013866244,-0.012863787,0.0067067607,-0.016298011,-0.014707015,0.0037899343,-0.015470176,0.0015942301,-0.0018448443,-0.014060268,0.035855625,-0.012100627,-0.02474452,-0.00813607,0.0031803758,0.01584529,0.004931442,0.0045951335,-0.0023638583,0.010865341,-0.013685156,0.0155089805,-0.004769755,-0.005144868,-0.005681668,0.010626044,0.029465768,0.008077864,-0.028586194,-0.0011067449,-0.012307585,-0.009966363,-0.0056493306,-0.041650474,0.017061172,-0.007217691,-0.02545594,-0.02004914,0.03422582,0.0021391138,-0.033967126,0.009552445,0.032104496,-0.0066226837,-0.015431371,0.0021698344,-0.16494621,0.020618277,0.0066614887,0.0039451537,0.015004518,0.01369809,0.02007501,0.012618024,-0.0038546089,0.005397099,-0.004950844,-0.0070366017,-0.030422954,-0.006739098,0.0022636126,0.007942047,-0.039115228,0.010153919,0.00183676,-0.0021633669,0.01823825,-0.015095063,-0.0038513753,-0.011007625,0.014512991,0.017358676,-0.0040518665,0.014784624,-0.00065159705,-0.019117827,-0.024227124,-0.0016766902,0.024472887,0.024330603,-0.0011657606,0.016000507,0.00058934774,-0.006674424,-0.008181343,0.012643893,0.026012143,0.0077868276,-0.0039677895,-0.0053291908,0.016880082,-0.013930919,0.018031292,0.005015519,0.023231134,-0.00826542,0.018781517,0.0042232545,0.0037737656,-0.016543774,0.021640137,0.031612966,-0.011738448,0.0074569867,-0.012035952,-0.009093256,-0.01477169,0.0064351275,0.030785132,-0.01469408,-0.013400587,-0.012430467,0.0003148847,-0.0042135534,-0.021187413,0.017643243,0.0011132123,-0.016116923,0.026723564,-0.019855117,0.007812697,-0.006296077,-0.025132569,0.0072112232,0.0007053579,0.010839471,0.0014196085,0.021510787,-0.008524119,-0.0074117146,0.00066412776,0.028896632,0.012546881,-0.006907252,0.01048376,-0.0047471193,0.014836364,-0.054068007,-0.013154823,-0.005908029,-0.0005974321,0.019803377,0.0003880479,-0.010309138,0.019919792,-0.0051060636,-0.00872461,0.0032644528,-0.015379631,0.00070414523,0.019040216,0.008834557,0.018639233,0.009584783,0.03518301,0.010257399,-0.0062281685,0.013225965,0.0038869462,0.022726672,-0.014060268,0.005351827,0.020993391,-0.019117827,-0.0062508048,-0.006389855,0.03479496,0.003650884,-0.010173322,0.0103220735,0.0072435606,-0.0048700008,-0.09602892,-0.020191425,0.023787335,0.02293363,0.016647255,0.018923802,0.0060503134,0.022118729,-0.02770662,0.028094666,-0.010529033,-0.02380027,-0.0014656892,0.009979298,0.017979551,-0.0202561,-0.01571594,-0.016220402,-0.0106583815,0.016789539,-0.00966886,-0.022390364,0.005846588,-0.0063995565,-0.0056622652,0.035208877,-0.028560324,0.023347547,0.0031722914,-0.011279259,-0.0097400015,-0.022416232,0.018872062,-0.03440691,0.009015646,-0.00044382978,-0.019738702,-0.016983563,0.024227124,-0.024188317,-0.008278355,0.0006669573,-0.00872461,-0.05489584,0.020036206,-0.023476897,-0.0405122,0.007275898,-1.664867e-05,-0.024395278,-0.00092484744,0.012378727,-0.018716844,-0.0094101615,0.03272537,-0.006496568,-0.011880733,0.008271887,-0.008989776,-0.013478196,0.010464358,-0.008705207,-0.0058562895,0.022390364,0.0039580883,-0.021860031,-0.018445209,-0.0052709836,0.006823175,-0.02206699,-0.013879179,0.0037769994,-0.03290646,0.016957693,-0.041469384,0.006515971,-0.027034003,-0.009248475,0.02206699,0.023205264,-0.02925881,-0.030604042,-0.002477039,-0.0022134897,-0.021071,0.020838171,0.020980455,0.009358422,0.010115115,-0.018445209,0.015314956,0.02277841,0.0313284,-0.020165555,-0.00483443,0.013374717,-0.015573655,-0.009630055,0.012592154,-0.0004276611,-0.0006576603,-0.01823825,-0.07854089,0.026025077,-0.017048238,-0.009345487,0.00012914719,0.0044754855,0.0025384799,-0.018328795,-0.0061667277,0.0072694304,-0.0156642,0.004666276,-0.020320775,-0.0076510105,-0.012928462,-0.037925214,0.01994566,-0.0050801937,-0.013452327,0.019699898,0.011570294,-0.011680242,0.050756663,-0.020424254,-0.016828343,0.004714782,-0.003964556,0.011356868,-0.022338623,-0.011719046,-0.0043429025,0.004093905,-0.0027147182,0.012947864,-0.009791741,0.0024091306,0.001715495,0.027059872,0.006140858,0.014965713,-0.005135167,-0.019273045,0.0029669495,-0.014306032,-0.0048376634,-0.0153408265,-0.007612206,-0.0051869066,0.029931426,0.0021860031,0.02770662,0.019454135,-0.009720599,-0.011259856,-0.013956789,0.0036411826,0.022338623,0.0014664977,-0.015767679,-0.0056105256,0.02262319,0.028198145,-0.0005303321,-0.007592804,0.005138401,0.02757727,-0.02731857,-0.001715495,-0.0055167475,-0.02928468,-0.010503163,-0.005953301,-0.0049637794,-0.0019014346,0.016750734,3.066993e-05,-0.017669113,-0.0037381947,-0.0032693034,0.00966886,0.00969473,0.0021908537,-0.024563432,0.016142791,-0.005775446,0.016310945,-0.016634319,0.01364635,-0.019467069,0.016517906,-0.003928985,0.023166459,-0.017009431,-0.0012854086,0.022442102,0.00910619,-0.019531744,-0.0008068162,-0.0042943964,0.012993136,0.03122492,-0.00050203694,0.0076186736,-0.022493843,-0.0070236665,0.0026435761,-0.02372266,-0.029776208,-0.014862234,0.015418435,0.0005962194,0.020695888,0.0029523976,0.0027147182,-0.011208116,0.004478719,-0.0030736625,-0.011602632,-0.032001015,0.03820978,-0.021872966,0.009196735,5.8308236e-05,-0.016414426,0.0054197353,0.0105355,0.013736895,-0.011770786,0.0030655782,-0.026645955,-0.005060791,0.012462804,0.006532139,-0.030293604,-0.006448062,-0.03324277,0.004410811,0.011777253,0.008821622,0.035441708,-0.0066679562,0.003576508,0.0049702465,0.00048748514,0.01726813,0.0019143695,-0.001118063,-0.018897932,-0.028482715,0.010302671,0.010865341,-0.025779314,-0.014073203,-0.0037026235,0.020437188,0.0059015616,0.0066614887,-0.016091052,0.017979551,0.010923548,0.0018658636,-0.0020566538,0.011706111,-0.014150813,0.007967916,0.023088848,-0.0093260845,0.0012013316,-0.037433688,0.0033857177,-0.0011851629,-0.034329303,-0.0017510661,0.028172277,-0.007444052,0.0024495523,-0.0005667116,-0.0011576762,0.01826412,-0.0042329556,0.010018103,-0.019686963,-0.011117572,-0.021601332,0.009759405,0.008459444,-0.006823175,-0.0073147025]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('4164b840-a5da-11ee-b807-0bbdf623ae97', 'Business & Finance', 'this article is about the economy', '[0.014080531,-0.018569598,0.00528183,-0.033589702,-0.006890195,0.0028937515,-0.010798554,0.0045706267,-0.0004620378,-0.045856334,0.0168079,0.019874558,-0.021427462,0.006025658,-0.004022543,0.0011899614,0.011007347,-0.011946919,0.013186633,-0.021009875,-0.01615542,0.025368445,-0.0011850678,0.0042476486,-0.0025218374,0.010113449,0.011007347,-0.023541499,-0.007066365,0.012899541,-0.008103808,-0.007875441,-0.014980954,-0.013649894,-0.0043259463,-0.0155681865,0.0016801375,-0.0055917585,0.022053843,-0.022132142,0.007301258,0.012684222,-0.018021515,0.012266635,-0.012018693,0.0039409827,0.038078766,-0.021388313,-0.0022885757,0.001960704,-0.005425376,0.032806724,-0.04436868,0.008586644,0.003076446,-0.004857718,-0.00138489,0.00025874932,-0.005966935,-0.008136433,0.0032966582,-2.7730424e-05,-0.032728426,-0.00038047775,-0.031292967,-0.012579826,-0.0026360215,0.0030992827,-0.004939278,-0.011607629,0.027299788,0.024729013,-0.0025283622,-0.00015547388,0.020683635,-0.011672878,-0.0010260257,-0.005846226,-0.008593169,0.007829767,-0.0012625499,-0.019926757,-0.018426051,0.012338408,0.026347166,-0.0028105602,-0.018948035,0.007249059,-0.0034875087,-0.0021923347,0.02154491,0.011203092,-0.0046423995,0.0122862095,-0.023371855,0.015228896,0.011261815,0.020083353,0.02154491,-0.034503173,0.019665765,0.006436721,-0.010002527,-0.01278862,-0.044838466,0.0038887842,0.015646484,-0.0028790706,0.02651681,-0.019026333,-0.024598518,-0.006994592,0.018060662,-0.031058075,0.007353456,-0.0053568655,0.024990005,0.0004502116,0.030301198,-0.02654291,0.028761344,0.020566188,0.0070337406,-0.00908253,0.018569598,-0.008018986,-0.036460616,-0.0056896308,-0.011568481,0.0010292882,0.018713143,0.021244768,0.00048405904,0.020239947,-0.008514872,-0.011072596,-0.0026539648,0.014263226,-0.032676227,-0.028369855,0.001393046,0.02559029,-0.01815201,-0.014550317,-0.001623861,0.012103515,0.010863801,0.017094992,0.026412414,0.008912885,0.0071511874,-0.019574417,0.031319067,0.02420703,0.0018824065,0.032128144,0.010217846,0.0051611215,-0.0049360157,-0.020044204,-0.0067923227,-0.01880449,0.016703503,0.016690454,0.006283388,0.027717374,0.024990005,0.022014694,0.00020440994,0.005382965,-0.016377263,-0.0012568408,-0.023919938,0.019235127,0.010961674,0.022106042,-0.0073991297,-0.014354573,-0.03390289,-0.0041236775,0.00437162,0.006508494,0.02654291,0.027378086,0.01816506,0.020070303,0.010367917,-0.0067401244,0.02454632,-0.006185516,0.0026996385,0.021336116,0.005546085,0.01815201,-0.67732704,-0.022132142,-0.001570847,0.03465977,-0.026007876,0.0045086406,0.017081942,0.008162532,0.0034777215,0.01879144,-0.018399952,-0.011176992,-0.012710322,-0.010093874,-0.0034385726,-0.011464084,0.00889331,-0.036173522,-0.003084602,0.0027583616,-0.025942627,0.026321067,-0.006988067,0.0068706204,0.014589466,0.011320538,0.011862097,-0.017395133,0.010557136,-0.0008718772,-0.0031204885,0.034398776,0.0017845344,0.017055843,0.029178932,0.009506642,-0.0040714787,0.018204208,0.02860475,0.027378086,-0.012919116,-0.017917117,-0.009930754,-0.004922966,-0.006250764,-0.011411886,0.02891794,-0.00070304784,0.016873147,0.0048707677,0.012234011,0.009513167,-0.0019329737,0.012586351,0.011353162,0.008599694,-0.0057777157,-0.0018726193,0.024742063,0.007425229,0.011287914,0.012168763,-0.008697567,-0.018426051,0.0019150305,0.0020618387,-0.014472019,0.031971548,0.011653303,-0.026412414,-0.024950858,0.0072164354,0.005617858,-0.0005562397,0.0116402535,-0.0022575827,0.029335527,-0.019613566,-0.001566769,0.010661533,-0.0039475076,-0.010811604,-0.0235154,-0.030849282,0.02724759,-0.031423464,-0.026242768,-0.00824083,-0.002567511,0.015881378,0.016964495,0.0038855218,0.007979837,0.007842816,0.01744733,0.0034711966,-0.002096094,0.004087791,0.008580119,0.022314835,0.010511463,0.0010325505,0.02317611,0.006377998,0.020357395,0.03392899,0.014093581,0.033067714,0.012951739,-0.010159123,0.0049621146,-0.0017176551,-0.017369034,0.009682812,-0.01042664,-0.033720195,0.038757347,-0.021270867,-0.0026441775,0.004851193,-0.0010390753,0.003166162,0.022301786,-0.019561367,-0.015150599,0.021088172,-0.019887608,-0.003474459,-0.02954432,-0.028030565,0.0062931753,-0.008201681,0.024611568,-0.0014843934,0.02112732,-0.005425376,0.0024223342,-0.0026784327,0.01342805,-0.028839642,-0.0070402655,-0.02385469,-0.00093060045,-0.0071707615,-0.008364801,-0.022719374,0.007836292,-0.008390901,-0.036121324,0.01883059,-0.01850435,-0.013545497,-0.011490183,0.03058829,0.0063616857,-0.0027143192,-0.0014949961,-0.0026490712,-0.011144368,-0.001258472,-0.022654125,0.009526216,-0.03233694,0.003415736,-0.013304079,-0.00062311895,-0.026934398,-0.0093043735,0.01581613,-0.017238537,0.004900129,0.015346344,0.0025381495,-0.0010961674,0.0053242417,0.023685046,-0.010361392,0.009852457,0.003197155,-0.008377851,-0.0053960145,-0.012064366,-0.03392899,0.00905643,0.02150576,-0.01277557,0.021270867,0.010772455,-0.0018579385,0.011300963,0.0056896308,0.025981776,-0.002179285,-0.013206207,-0.00908253,-0.00773842,-0.029674817,-0.0042215493,0.007314307,-0.018687043,0.04097578,0.010374441,0.028526451,-0.008364801,0.020618387,-0.013936985,0.011287914,-0.015346344,0.02219739,0.0023440365,0.034320477,-0.016677404,-0.021740653,-0.007001117,-0.006430196,0.009115154,-0.003986656,-0.0052198446,-0.016272865,-0.004681548,-0.004192188,-0.01041359,-0.008847637,-0.007973312,-0.00049425405,0.017682225,0.0019623353,0.004606513,-0.022928167,-0.031397365,-5.255527e-05,0.008580119,-0.007314307,0.0041726134,0.005813602,0.030144602,0.036460616,-0.010935575,0.02382859,-0.00756225,0.004841406,0.037086997,0.0003537668,-0.010661533,0.025303196,-0.014067481,0.005347078,0.008886785,0.010955149,-0.009226075,-0.019026333,0.01261245,0.001822052,0.013375852,-0.0020177963,-0.025668586,0.02044874,-0.0037680753,0.00957189,0.0150984,0.0235154,-0.0045445273,-0.016703503,-0.018974135,0.012710322,0.002406022,-0.014889607,-0.007066365,0.0062931753,-0.0168079,-0.005666794,0.01413273,0.00027791594,-0.016220666,0.01781272,0.024794262,0.0057092053,-0.024415823,0.009343522,0.016285915,-0.01025047,-0.02420703,0.007131613,0.028500352,-0.018034562,-0.026425464,0.018399952,-0.00047427183,-0.01478521,0.029074535,-0.004283535,0.026569009,-0.00010103254,0.0072686337,-0.007125088,0.008332177,0.031423464,-0.0075883493,0.006276863,-0.004009493,0.014719962,-0.018673994,0.010511463,0.009513167,0.015437691,-0.010080825,-0.015894428,-0.0042215493,0.002406022,-0.01582918,0.033850692,-0.024337526,-0.019117681,0.011437984,0.0068575707,-0.009134728,-0.015685633,0.022458382,0.03604303,0.022053843,0.02116647,-0.0077123204,-0.026960498,0.021936398,0.12496308,-0.0041073654,-0.008547496,0.019222079,0.005670056,-0.041549962,-0.0120708905,-0.029753115,-0.005699418,-0.017695274,0.009624088,-0.01410663,0.00017820876,-0.012651598,0.03465977,0.001740492,-0.029779214,0.0003270559,0.026112273,-0.004818569,0.016416412,-0.0065215435,-0.023776393,0.029727016,0.014341523,-0.00073689525,0.039122734,0.020709734,0.0036310544,-0.00083925313,0.011287914,-0.0071446626,-0.016546907,0.016194569,-0.016599106,-0.0024892134,0.0018660944,0.01042664,0.010850752,0.016833998,0.0060745943,0.008116858,0.0073404065,-0.030979779,0.008736715,-0.025264049,0.006577004,0.012142664,-0.011822948,0.0017111304,0.010955149,-0.007157712,-0.04092358,-0.015072301,0.014759111,0.011111745,-0.014980954,0.031005878,-0.021727603,-0.0470569,-0.014641664,-0.02454632,-0.0026294969,0.0030258787,0.016011873,-0.015998824,-0.011959969,-0.010720256,-0.008645368,0.0016515915,0.017630026,-0.023319656,-0.013571596,-0.011183517,0.02860475,-0.0046521868,0.014798259,0.010420115,-0.013689043,-0.0024843197,-0.0022885757,-0.023789441,-0.01582918,-0.05175476,-0.016860098,0.012508052,-0.015033153,0.012403656,-0.016886197,-0.0013065924,-0.00023285401,0.022706324,0.018621797,0.0025446743,0.011072596,-0.0025218374,-0.005405802,-0.009147778,0.008632318,-0.0041563013,0.007875441,-0.00471091,-0.007366506,-0.003311339,0.0015847122,-0.006577004,0.01645556,0.0023424053,-0.0015773718,0.0034548847,0.0022151715,-0.0108181285,-0.0046782857,0.023084763,-0.016625205,0.017891018,0.018673994,0.008769339,0.019913707,-0.0006443246,0.014837408,-0.018334704,-0.0039899186,0.012331883,-0.0092326,0.0077840933,0.011144368,-0.041262873,-0.0077775684,0.02147966,-0.007262109,0.010407065,-0.014211027,-0.019078532,-0.011588055,-0.010674583,-0.033067714,0.015620385,-0.008952034,-0.023567598,-0.01712109,-0.0016002086,0.00939572,-0.01948307,0.0235154,-0.038104866,0.006890195,-0.003927933,0.0057744533,0.007314307,0.0035038206,-0.02050094,-0.023619797,-0.011020397,0.0010831178,-0.02683,0.0031041764,-0.011157418,0.01809981,0.028187161,0.045569245,-0.005699418,-0.0051937453,0.0073469314,-0.007829767,-0.010204797,0.0011891458,-0.0030780772,-0.02990971,0.0042476486,0.02724759,0.013238831,0.023045614,0.004645662,0.008149482,0.02655596,0.010641959,0.014628614,-0.030744884,-0.007601399,-0.0031775804,-0.0052850926,-0.028865742,0.0036571536,-0.042854924,-0.027351987,0.028474253,0.016051022,0.017303785,-0.01211004,0.015072301,-0.0090042325,0.017943216,0.0052426816,-0.022001645,-0.023463203,-0.02384164,-0.03325041,0.0031873677,0.025994826,0.010407065,0.014419821,0.010394015,-0.014197977,0.004234599,0.006961968,0.0037746,-0.011705502,0.005223107,-0.0031547437,-0.0039050963,-0.025668586,-0.025929578,-0.026425464,0.028891841,0.018269457,-0.022902068,0.03786997,-0.007797143,-0.04444698,0.023097813,-0.016860098,0.008188631,-0.0034450975,0.030666588,0.010655008,0.009213026,-0.031345166,0.008253879,0.011300963,-0.015529037,0.017877968,0.019039383,-0.0051023983,-0.026255818,0.036773805,0.009669762,-0.010374441,-0.02857865,0.025146602,0.002220065,0.015307195,-0.0110334465,-0.032154243,-0.008834587,0.027691277,0.013610745,0.0111182695,-0.026712555,-0.038052667,-0.010361392,0.007921115,-0.014485069,0.026986597,0.0011720182,-0.02181895,0.0013579752,0.017003644,-0.025342345,0.011072596,-0.0072360095,0.022301786,-0.038052667,0.027743474,0.0036147425,0.0015594286,-0.022106042,-0.002849709,0.0037354513,0.019913707,-0.015750881,-0.012338408,0.015607336,0.019222079,0.015607336,0.0045477897,0.0057124677,-0.012377556,-0.016220666,-0.022941217,0.022784622,0.012299259,-0.009167352,0.007999412,-0.0024729015,-0.009199976,-0.021649307,-0.011790324,-0.023371855,0.012012168,-0.023319656,-0.014276275,-0.0018285768,0.005004526,-0.0010186853,-0.017864918,0.012005643,0.017864918,-0.028343756,0.011718552,-0.014380672,0.012677697,-0.0065933163,0.0038659475,0.017173288,-0.017734421,0.024663767,-0.022784622,-0.022614976,-0.02416788,-0.0029573683,0.012873442,-0.013127909,0.002220065,0.0003527473,0.00037701143,-0.016259816,-0.004818569,-0.026908299,0.0040682163,-0.0062638135,-0.014067481,0.017147189,-0.024454972,-0.0030389284,0.004058429,0.00132372,-0.0043781446,-0.010720256,-0.007673172,-0.025655536,0.03797437,0.019339524,-0.0025724047,-0.0144459205,-0.020983776,-0.009885081,-0.0066357274,-0.011627204,-0.0007426045,0.006146367,-0.0032281477,0.00444013,0.0065443804,-0.0030650275,-0.02857865,-0.037452385,-0.00871714,-0.014693863,-0.018908888,-0.003741976,0.021923348,0.012123089,-0.02046179,-0.047187395,0.010883376,-0.032075945,-0.00959799,0.007183811,0.035077356,0.009043381,-0.0036310544,-0.0050404123,0.012429755,0.008286503,0.0052753054,-0.012175288,-0.0047500585,0.003911621,-0.017656125,-0.0185174,0.003934458,-0.013297554,0.0049197036,0.013545497,-0.0060680695,0.0072033857,0.019992005,-0.005852751,-0.005735304,0.0026833264,-0.0048544556,0.008586644,0.024389723,0.0068771453,-0.03758288,-0.00202269,0.04063649,-0.0034255232,-0.03726969,0.016833998,-0.000951806,-0.0059147365,0.0019688602,-0.0073338817,0.00080907595,-0.002534887,-0.0026768015,-0.010537561,-0.0124167055,0.018334704,0.027430283,0.014602516,-0.022001645,-0.0023391428,0.019691864,-0.013689043,-0.011712027,0.014367622,-0.0075818244,0.028187161,-0.018334704,-0.027038796,0.0064758696,0.008208206,-0.019235127,-0.015489889,-0.012684222,0.0040910533,0.01477216,-0.019039383,-0.00040698476,-0.019965906,-0.0058690626,-0.01445897,-0.014889607,0.000906948,-0.025055254,-0.018230308,-0.013336703,-0.01378039,-0.006955443,0.00019360322,-0.008045086,-0.035442743,0.019287325,0.19219469,-0.011516282,0.010093874,0.009363096,0.019378673,0.027064895,0.03155396,0.00395077,-0.019548317,0.009708911,-0.01243628,0.023658946,-0.011314013,0.0022216963,-0.017277686,-0.022275686,-0.026986597,-0.0067075,-0.030483892,0.017251587,0.0033896365,-0.010792029,-0.016964495,-0.010641959,0.0093043735,-0.009806783,-0.020174699,0.01040054,0.024428872,0.027665177,0.0052850926,-0.02016165,0.006234452,-0.015281095,-0.028187161,0.008162532,0.01445897,-0.019235127,0.011072596,-0.0048772926,0.009115154,0.027299788,0.011418411,-0.0062866504,0.0006100694,0.044786267,-0.033667997,0.006276863,0.004316159,0.014197977,-0.038104866,0.014184928,0.008769339,0.026190571,-0.000426967,0.008338702,0.022915117,0.022432283,0.0008102993,0.0024631142,-0.012181813,0.046326123,-0.012488479,0.003166162,-0.02792617,0.018921938,0.0031612685,0.025498942,0.009669762,-0.0025071567,0.006560692,-0.0016393574,-0.010687632,-0.006071332,-0.007092464,-0.022797672,0.028448153,0.020344345,0.04162826,0.028317658,-0.014498118,0.010961674,0.010204797,-0.0072751585,0.0026768015,-0.0235154,0.005245944,-0.0068575707,-0.024337526,-0.008808488,0.01916988,0.0015977619,-0.0055428226,-0.017238537,0.014798259,0.03831366,-0.005151334,0.024663767,-0.0201486,-0.00306829,-0.030431695,0.06686621,0.005643957,0.0007650335,-0.025316246,-0.01950917,-0.02792617,0.03460757,-0.0066292025,-0.0006545196,0.015489889,0.011992593,0.019117681,-0.0060028215,0.016638255,0.009213026,0.015294145,-0.0071120383,0.011529332,-0.024572419,-0.016064072,-0.009819833,-0.0015904214,-0.016377263,-0.013245356,0.00082538795,-0.016285915,-0.002534887,0.00037436074,-0.0144459205,0.032415234,-0.008351752,-0.023228308,-0.013401952,-0.0031612685,0.014367622,0.008456148,0.011692452,-0.008390901,0.009356571,-0.003644104,0.017904067,-0.006387785,-0.012605925,-0.011300963,0.013610745,0.030249,0.012331883,-0.032023747,-0.0016556695,-0.016077122,-0.009650188,-0.004528215,-0.033407006,0.019052433,-0.008971608,-0.02756078,-0.01413273,0.03460757,0.0039148834,-0.036173522,0.007497002,0.034529272,-0.0073991297,-0.015515989,0.004306372,-0.16713943,0.024011286,0.0032460908,0.0011597843,0.014380672,0.009669762,0.020226898,0.014328473,-0.007927639,0.011620679,-0.006025658,-0.007868916,-0.027038796,-0.0047304844,-0.0006553352,0.0025936102,-0.036747705,0.0035168703,0.008749764,-0.007673172,0.015737832,-0.016703503,-0.0013171951,-0.012371032,0.011790324,0.0111639425,-0.0055754464,0.01584223,0.00024814653,-0.015046203,-0.02860475,-7.6003795e-05,0.020357395,0.022575827,-0.0047011226,0.01612932,-0.00024223342,-0.0050012637,-0.004834881,0.009108629,0.026569009,0.010048201,-0.006831472,-0.002437015,0.018086761,-0.013675993,0.019652715,0.010185222,0.021049025,-0.0059082117,0.017891018,0.0006814344,-0.0028285033,-0.017277686,0.02523795,0.03763508,-0.014850458,0.005976722,-0.007183811,-0.0007927639,-0.017382083,0.0060387077,0.023985187,-0.012899541,-0.006446508,-0.007966788,0.00038761424,-0.0030878643,-0.02380249,0.020070303,-0.006671614,-0.014289325,0.025759934,-0.017969316,0.007947214,-0.011614154,-0.026699506,0.0073730308,0.003803962,0.008984658,-0.0024386463,0.024755113,-0.013121384,-0.014237126,-0.0005501227,0.030509992,0.014158829,-0.0032526157,0.007686221,-0.004267223,0.013689043,-0.055225957,-0.006178991,-0.0065052314,0.0013008831,0.020527039,0.007190336,-0.003911621,0.021584058,-0.0075100516,-0.0068640956,0.0072360095,-0.021022925,0.0007605477,0.016507758,0.0093043735,0.02044874,0.013519398,0.03330261,0.0052492064,-0.005353603,0.015385492,0.0028953827,0.022040794,-0.013923936,0.003546232,0.018726192,-0.01949612,-0.0020683634,-0.0046782857,0.025603337,0.00705984,-0.015059252,0.015998824,0.009728486,-0.0037060897,-0.0874846,-0.021805901,0.019665765,0.0235154,0.02449412,0.021623207,0.0063584233,0.026425464,-0.028891841,0.026047025,-0.015750881,-0.027482482,0.00072873925,0.013506348,0.02114037,-0.022719374,-0.015241946,-0.013623795,-0.01040054,0.011986068,-0.0075752996,-0.016820949,0.006501969,-0.0074513284,-0.0050730365,0.03492076,-0.028709145,0.019548317,0.0039801314,-0.013095286,-0.013232307,-0.02452022,0.018752292,-0.03601693,0.0018889313,0.0014240389,-0.025616387,-0.017147189,0.022745473,-0.028813543,-0.006146367,-0.0014093581,-0.00871714,-0.057627086,0.022810722,-0.021283917,-0.04074089,0.010139548,0.0030307723,-0.023371855,-0.004818569,0.0111639425,-0.017395133,-0.011868622,0.023763344,-0.00453474,-0.012403656,0.007594874,-0.010328768,-0.012834293,0.012403656,-0.0048087817,-0.00012376742,0.016507758,-0.000326852,-0.020396544,-0.015581236,-0.0029084322,0.008632318,-0.018778391,-0.018386902,0.0037615506,-0.03257183,0.016442511,-0.04141947,0.006485657,-0.030666588,-0.0076535973,0.022001645,0.021571008,-0.028343756,-0.02589043,-0.0066357274,0.0016246766,-0.013858687,0.025694685,0.017995415,0.0039899186,0.007921115,-0.009291324,0.014889607,0.028761344,0.02382859,-0.017721372,-0.0010260257,0.015672583,-0.012357982,-0.01174465,0.007066365,0.0045771515,0.011144368,-0.022314835,-0.08038561,0.024233129,-0.016220666,-0.006443246,-0.0035494943,0.0061267926,0.0068640956,-0.015985774,-0.007947214,0.007692746,-0.01477216,0.010041676,-0.014002234,-0.0030519778,-0.01649471,-0.032832824,0.0185174,-0.0052850926,-0.01326493,0.020005055,0.010478838,-0.004016018,0.043794498,-0.018256407,-0.016338114,0.0024190717,-0.0055591348,0.012162238,-0.019404773,-0.015241946,-0.0074448036,0.0029100634,-0.008952034,0.013871737,-0.010328768,-0.0031531125,-0.0024924758,0.029126734,0.011659828,0.020879379,-0.0077057956,-0.022132142,-5.63784e-05,-0.018360803,-0.002518575,-0.017616976,-0.008136433,-0.009989478,0.02990971,0.0032770836,0.029048435,0.01744733,-0.007692746,-0.009336997,-0.015672583,0.003392899,0.02080108,0.0060093463,-0.009147778,-0.00772537,0.025759934,0.026412414,-0.00012855907,-0.008462673,0.007601399,0.029727016,-0.021557959,-0.0054840995,-0.006260551,-0.026803903,-0.002193966,-0.005148072,-0.00352992,-0.0025038943,0.013493299,0.005092611,-0.024950858,-0.0062572886,-0.007392605,0.008912885,0.0046619736,0.0073404065,-0.025629437,0.019652715,-0.00435857,0.02046179,-0.013832589,0.012488479,-0.016233716,0.016429462,-0.006700976,0.02488561,-0.011516282,-0.0041334643,0.018869739,0.0048968666,-0.020735834,-0.0017290736,-0.0022787885,0.013741241,0.02716929,0.00335375,0.002574036,-0.021310017,-0.0087889135,0.00395077,-0.023384904,-0.028187161,-0.013506348,0.010583235,-0.0038594226,0.019783212,0.0044172937,0.000684289,-0.008351752,0.005872325,-0.007816717,-0.01211004,-0.02954432,0.041236773,-0.021375263,0.01242323,0.00012550056,-0.0128473425,0.008521397,0.010609334,0.013388902,-0.013016988,-0.002388079,-0.02119257,-0.008508347,0.012677697,0.0060517574,-0.024950858,-0.0071381377,-0.02716929,0.004365095,0.02016165,0.011451034,0.039618623,-0.0038431105,0.0025642486,0.002154817,0.0061170054,0.014263226,-0.0034516223,-0.003660416,-0.022484481,-0.023045614,0.015307195,0.006988067,-0.0268561,-0.01778662,-0.004205237,0.0184652,0.009950329,0.00871714,-0.01815201,0.016507758,0.013715141,0.005157859,-0.0025511992,0.0076535973,-0.010478838,0.0072816834,0.019248176,-0.011607629,0.00046530023,-0.040166706,0.00579729,-0.007327357,-0.03186715,-6.667536e-05,0.029361626,-0.013349753,0.0007923561,-0.00071324286,0.002008009,0.020331295,-0.005099136,0.010185222,-0.015724782,-0.0083974255,-0.016520808,0.011137843,0.012012168,-0.011098695,-0.006113743]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('416bfae2-a5da-11ee-b807-bfcd272d495e', 'Business & Finance', 'this article is about Business', '[0.022357684,-0.015406905,0.0069245985,-0.039348476,-0.007264938,0.0089404555,-0.020263286,0.002784893,0.0074612875,-0.041338153,0.013358323,0.021807903,-0.015629435,0.0082139615,-0.0010308358,0.008495396,0.016571913,0.0023496512,0.013888467,-0.0118987905,-0.020053847,0.02467461,-0.0054814285,0.010720693,-0.010504708,0.012481295,0.0113359215,-0.025080398,-0.0038059112,0.01206896,0.0024069198,0.00029820608,-0.010746872,-0.020525087,-0.0026425393,-0.005226174,-0.0001071742,-0.0019684054,0.016297024,-0.02434736,0.00888155,0.01810344,-0.015053475,0.008227051,-0.01793327,-0.0011020126,0.043563448,-0.021873353,-0.0018800482,0.0038615437,0.004345873,0.041626133,-0.046233803,0.007520193,0.0036750115,-0.010727237,0.008515031,0.007840897,-0.011741711,-0.010354172,0.0010332902,0.002182754,-0.033876862,-0.010085829,-0.02984515,-0.002514912,-0.009640769,0.0061490173,-0.008953545,-0.010818867,0.019464798,0.025368378,0.0073631126,-0.004221518,0.021258125,-0.017265681,0.0007567644,-0.003262677,0.0016043405,0.0050985464,-0.010831957,-0.01761911,-0.020813067,0.008606661,0.026886815,-0.0041397056,-0.014438246,0.0041462504,-0.0020682167,0.002024038,0.015956683,0.019595698,0.002487096,0.0011592812,-0.027515134,0.016964613,0.009614589,0.014503696,0.020446546,-0.028483793,0.021258125,0.013692117,-0.00028286624,-0.009450965,-0.044505928,-0.0024314635,0.014490606,-0.006610439,0.027358055,-0.02471388,-0.029190652,-0.00019399756,0.017278772,-0.021389024,-0.0006246374,-0.012428935,0.022580212,0.00043810523,0.02409865,-0.03060437,0.025721807,0.02415101,0.008011066,-0.006476267,0.022200603,-0.006806789,-0.023666682,-0.0024314635,-0.009843663,-0.0012713642,0.017710742,0.02371904,-0.00088275544,0.016362473,-0.005563241,-0.008357951,0.005962485,0.015302185,-0.032882027,-0.027698394,0.00037204172,0.022279143,-0.020381097,-0.01775001,-0.014150267,0.011218111,0.007978342,0.009228434,0.029295372,0.0008573936,0.005180359,-0.014032457,0.028012553,0.0175013,-0.0045945826,0.027305694,0.009509869,0.0035572017,-0.0067478837,-0.015380724,-0.0050658216,-0.013508857,0.015014205,0.016558822,0.0098109385,0.025695628,0.01739658,0.025250569,-0.0028879766,0.006780609,-0.01761911,0.0057072304,-0.02386303,0.019438619,0.013796837,0.011421006,-0.009968018,-0.0148571255,-0.03042111,0.010773052,0.010216728,-0.001601068,0.027462775,0.03023785,0.0061653797,0.022279143,0.0017802371,-0.011839885,0.02345724,-0.010720693,0.0075921873,0.032384608,0.0060966574,0.018312879,-0.6781656,-0.026494116,0.004074256,0.01908519,-0.02485787,0.009869844,0.015223645,0.0037437337,-0.0015822512,0.020368006,-0.015145105,-0.003890996,-0.0075267376,-0.0075529176,-0.003393577,-0.020001488,0.005540333,-0.033562705,-0.0039433558,0.0037928212,-0.012442024,0.022698022,-0.01185952,-0.004129888,0.02400702,0.005854493,0.010013834,-0.0130965235,0.011034852,-0.003540839,0.0055468786,0.030970888,0.008809555,0.012330759,0.027672214,0.008135421,0.0033248544,0.022239873,0.021101044,0.026284676,-0.022776563,-0.019896768,-0.00869829,0.0027096255,-0.013731387,-0.011368646,0.030656729,-0.004980737,0.017016971,0.011309741,0.0019127731,0.0021614826,-0.0012124593,0.004097163,0.007762357,-0.000582504,0.0018702307,0.0035146591,0.022606393,0.0077099972,0.008528121,0.00878992,-0.0050429143,-0.010341083,0.010007288,-0.0051181815,-0.0067740637,0.016375562,0.016899163,-0.02456989,-0.019019738,0.004273878,0.0070227734,0.008541211,0.004869472,0.0012034599,0.016925342,-0.008272867,0.0051443614,0.0076576374,0.005723593,-0.010118553,-0.023692861,-0.03738498,0.026140686,-0.026598835,-0.020027667,-0.010773052,0.009627679,0.0055468786,0.01873176,0.0036815563,0.010498162,0.009529504,0.014359706,-0.00020422411,-0.004928377,-0.0013466316,-0.0015536168,0.022671843,0.014516786,0.0019438618,0.022187514,0.003936811,0.017710742,0.022266053,0.014189537,0.033955403,0.00928734,-0.015276005,0.0052916235,-0.004519315,-0.015603255,0.0130245285,-0.008691746,-0.03659958,0.033876862,-0.023980841,-0.0014570783,0.006495902,-0.008096152,0.0056319633,0.024596069,-0.0143858865,-0.004444048,0.02471388,-0.025368378,-0.011250837,-0.02411174,-0.030578189,0.00295179,-0.023470331,0.015289094,0.002421646,0.020263286,0.0052425363,0.00931352,0.0022056613,0.011597721,-0.028562333,-0.004928377,-0.029504811,-0.002091124,0.0006692251,-0.012559834,-0.025368378,0.0056548705,-0.00893391,-0.038903415,0.014268076,-0.019150639,-0.0083775865,-0.009058265,0.026742825,0.009915658,-0.008626296,0.003832091,-0.016362473,-0.007467833,-0.0048203846,-0.01840451,0.0023611048,-0.039950613,0.0017802371,-0.0069507784,0.0041658855,-0.013744477,-0.0033739419,0.009058265,-0.016532643,0.0030270575,0.013443408,0.0030156039,-0.0012476386,0.0032119534,0.021140315,-0.010079283,0.011682806,0.005167269,0.00043442365,-0.0046993024,-0.023300162,-0.03636396,0.014045547,0.024910228,-0.012900174,0.027803114,0.016768262,-0.004931649,0.01180716,-0.0070751333,0.021794815,-0.00148244,-0.0031121424,-0.014163356,-0.0043426002,-0.032908205,-0.005160724,0.0019962217,-0.015210555,0.032332245,0.0069638686,0.035107322,-0.015079655,0.023444152,-0.012599104,0.008783376,-0.014713136,0.027960194,0.0028797952,0.026467936,-0.005036369,-0.012546744,-0.012127865,0.0006180924,-0.0017458758,-0.009837119,-0.009346245,-0.014163356,0.0008786648,-0.0039793532,-0.012494384,-0.011316286,-0.0064369966,-0.0038877237,0.032986745,0.009660404,0.0025165484,-0.019896768,-0.026284676,0.005703958,0.01801181,-0.0130245285,0.0069180536,0.00015738653,0.035761822,0.04136433,-0.009968018,0.018888839,-0.008567391,0.015838875,0.0372279,0.0027881654,-0.0124093,0.01810344,-0.015943594,-0.00074081094,0.017016971,0.009601499,-0.0110086715,-0.03039493,0.014529876,0.0031923184,0.019229177,0.004715665,-0.016427923,0.021375936,0.0029092478,0.00461749,0.0075071026,0.01751439,0.0037175538,-0.0118267955,-0.010714147,0.0120166,-0.004293513,-0.016611183,-0.011722076,0.011309741,-0.019202998,-0.00023030181,0.0104458025,0.0017671471,-0.007520193,0.011983875,0.032882027,0.005471611,-0.017815461,0.0025901794,0.019281538,-0.009300429,-0.02432118,0.0070293183,0.028745592,-0.013613578,-0.019608788,0.015262915,0.004444048,-0.0021402114,0.024556799,-0.004758207,0.028352894,0.0029894237,0.0018375057,-0.0064599044,0.021781724,0.033824503,-0.010288723,0.00476148,-0.0038059112,0.020368006,-0.021533014,0.009444419,0.008469216,0.02460916,-0.020328736,-0.012618739,-0.004080801,-0.00032622681,-0.020786885,0.025446918,-0.019202998,-0.02360123,0.012455114,0.007925982,-0.0101381885,-0.016519552,0.026677376,0.026389396,0.0070947683,0.022305323,0.0005460975,-0.02934773,0.03063055,0.12283636,-0.0063682743,-0.01822125,0.020197837,-0.005343984,-0.033300906,-0.023326341,-0.032594047,-0.00096211344,-0.018666308,0.005370164,-0.0056221457,0.0014243532,-0.009693129,0.04099781,0.0038942685,-0.022711113,0.008456126,0.016218483,-0.0039858986,0.012671099,-0.009686584,-0.026729736,0.034819342,0.01768456,-0.014359706,0.04264715,0.022396954,-0.0015266187,-0.007330388,0.0010684695,-0.00044914987,-0.007912892,0.010314903,-0.0077558123,0.0045880373,-0.005379981,0.0054552485,0.0058774003,0.023064543,0.008083061,0.01768456,0.009824029,-0.02396775,0.008233597,-0.033065286,0.0024985496,0.017592931,-0.013796837,0.0063944543,0.001786782,-0.004254243,-0.045317505,-0.0241641,0.020826155,0.0059788474,-0.024923319,0.031023249,-0.01869249,-0.045762565,-0.019674238,-0.0365734,-0.0030532375,0.0037306438,0.01760602,-0.02399393,-0.014425156,-0.010255998,-0.0027816205,0.0131881535,0.013063799,-0.0177631,-0.010596338,-0.016506463,0.040683653,0.0015740698,0.020957055,0.004129888,-0.01795945,0.00604757,0.0013196334,-0.021231946,-0.020459637,-0.04866854,-0.021978073,0.011453731,-0.013247058,0.014281167,-0.024661519,0.00095311407,0.0055337884,0.024831688,0.011604266,0.0065286267,0.010249453,0.005206539,-0.0069245985,-0.011139572,0.019229177,0.00060172996,0.0047451174,0.0025819982,-0.004931649,-0.011512636,0.0010717419,-0.006859149,0.013057253,0.0055010635,0.0014300802,0.0057334104,0.010727237,-0.0008189418,-0.00014961437,0.015053475,-0.014765495,0.017462032,0.014398976,0.010504708,0.00910408,-0.0006336368,0.01853541,-0.022161333,0.0004597855,0.0134957675,-0.0027538042,0.0065286267,0.0009874753,-0.040814552,-0.0075463727,0.015956683,-0.0011306469,0.009614589,-0.019360078,-0.021951893,-0.016257754,-0.015563984,-0.026598835,0.016113764,-0.014844036,-0.022292234,-0.020734526,0.0039989883,0.017710742,-0.013718298,0.021061774,-0.03837982,0.0015536168,-0.005003644,0.00919571,0.012572925,0.0025312745,-0.013849197,-0.022082793,-0.01231767,0.00057186844,-0.019425528,0.0008606661,-0.010262543,0.014097907,0.033588886,0.037646778,-0.006767519,-0.0074351076,0.0076969075,-0.016571913,-0.0075071026,-0.005393071,-0.0020076754,-0.027934013,0.0024314635,0.027148616,0.011519181,0.034426644,0.007670727,0.009745489,0.03023785,0.014686956,0.010890862,-0.027750755,-0.012801999,-0.003678284,-0.011617356,-0.027148616,-0.001965133,-0.044689186,-0.017697651,0.033117644,0.018496139,0.01832597,-0.003612834,0.0076772724,-0.005664688,0.014398976,0.008272867,-0.020381097,-0.02425573,-0.015210555,-0.03550002,0.006495902,0.029504811,0.004843292,0.005275261,0.019831317,-0.01760602,0.0037339164,0.00452586,0.0108646825,-0.017383492,0.003580109,-0.00027100346,-0.0027881654,-0.020839246,-0.019674238,-0.020433456,0.03021167,0.017265681,-0.0189412,0.045029525,-0.007945617,-0.042830408,0.027096255,-0.021271216,0.020760706,-0.0049218317,0.026559565,0.014830945,0.012671099,-0.031494487,0.008063426,0.013227423,-0.015799604,0.022671843,0.025983607,-0.005523971,-0.021834085,0.0350026,0.013168518,-0.022318413,-0.022174424,0.022082793,-0.007939072,0.014372796,0.003315037,-0.019268448,-0.0066987965,0.033824503,0.019582607,0.019648058,-0.028667053,-0.04128579,-0.008947,-4.696541e-05,-0.014804766,0.015171285,0.00893391,-0.015786514,-0.0031252324,0.020839246,-0.031730108,0.0035179318,0.0024690973,0.022711113,-0.030866168,0.02446517,0.0044702278,0.012847814,-0.017043151,0.0015920686,0.0020665803,0.021847174,-0.009666949,-0.0134957675,0.017082421,0.021087956,0.010255998,0.0046731224,0.006616984,-0.010655242,-0.014935666,-0.022920553,0.021611555,0.011028307,-0.010969402,0.011159207,0.0013719933,-0.0020142205,-0.0056319633,-0.0054552485,-0.02417719,0.0019029556,-0.03743734,-0.018640129,-0.008318681,-0.0035015692,-0.0066726166,-0.01873176,0.011388281,0.026559565,-0.034557544,0.003678284,-0.019451708,0.013744477,-0.015158195,0.0032806757,0.014804766,-0.015838875,0.03678284,-0.02454371,-0.023116902,-0.013266693,0.00041847024,0.00941824,-0.016375562,-0.001819507,-0.0028634327,0.0035081143,-0.012023145,0.0031383224,-0.03031639,-0.011047942,-0.009981109,-0.009804394,0.017632201,-0.025708718,0.00032724947,0.007402383,0.0028176177,-0.013940827,-0.012671099,-0.011244291,-0.023103813,0.03060437,0.014359706,-0.0014390795,-0.013391048,-0.015092745,-0.010720693,-0.0059232153,-0.018810298,0.0015274369,0.008024157,-0.0075005577,0.0071144034,0.0016984247,-0.0049251043,-0.024124831,-0.039060496,-0.016728992,-0.019399349,-0.014974935,0.0004127434,0.019229177,0.016035223,-0.022056613,-0.04217591,0.0007481741,-0.02485787,-0.013652847,0.0038353635,0.032751124,0.012389665,-0.0041364334,-0.0074547427,0.011296651,0.00047410265,0.015655614,-0.011892245,0.0018227795,0.008056882,-0.026088327,-0.0189412,-0.0034590268,-0.019098278,0.0027750754,0.016650453,-0.020132387,0.0061621075,0.013639757,-0.0065875314,-0.005815223,0.008024157,-0.008423401,0.0077492674,0.02378449,0.011630446,-0.034269564,-0.000224984,0.032489326,0.004372053,-0.02953099,0.020511996,0.006397727,0.004201883,0.010917042,-0.009621134,0.0062962794,-0.016545733,0.001952043,-0.010478527,-0.009424784,0.023300162,0.015027295,0.005406161,-0.015276005,-0.0029256102,0.011322832,-0.019988397,-0.020996325,0.014582236,-0.012376575,0.022789652,-0.018888839,-0.028457614,0.012618739,0.006813334,-0.023025272,-0.012736549,-0.009627679,0.0068460586,0.013535038,-0.012330759,-0.011388281,-0.016153034,-0.0057399557,-0.01192497,-0.020996325,-0.0062635546,-0.021860264,-0.02467461,-0.008364496,-0.015341454,-0.015734155,-0.00019092961,-0.008069972,-0.033274725,0.013201243,0.18786737,-0.0057137758,0.0065875314,7.2659604e-05,0.014778585,0.027331876,0.032384608,0.0018800482,-0.017121691,0.0085215755,-0.0032872208,0.013744477,-0.008416856,-1.4879623e-05,-0.020459637,-0.025224388,-0.032751124,-0.0074089277,-0.031834826,0.010072738,0.003063055,-0.007304208,-0.011754801,-0.012736549,0.011460276,-0.0061359275,-0.016126852,0.0026049057,0.022907462,0.025250569,0.005173814,-0.01786782,0.011015217,-0.017553661,-0.019818228,0.010642152,0.020368006,-0.025905067,0.021572284,-0.005857765,-0.0020469453,0.02424264,0.0068656937,-0.00901245,-0.004908742,0.04241153,-0.03138977,0.008488851,0.00067904266,0.010439258,-0.04201883,0.019792046,0.0079587065,0.017056242,-0.0061162924,0.007258393,0.019255359,0.022776563,-0.003917176,-0.002639267,-0.013004893,0.038144197,-0.022135153,-0.0033575795,-0.021834085,0.01844378,-0.0051149093,0.019504068,0.011061031,0.00927425,0.013247058,0.0030990525,-0.012514019,-0.0074416525,-0.0077230874,-0.02496259,0.02963571,0.023038361,0.0365734,0.027122436,-0.016611183,0.00899936,0.0056221457,-0.008953545,-0.0074874675,-0.019019738,0.0078016273,-0.0029599713,-0.016388653,-0.012834724,0.022292234,0.0020289465,-0.009797849,-0.014791676,0.012514019,0.031546846,0.00470912,0.026991535,-0.012782364,0.0013171791,-0.025132759,0.068172604,-0.0049676467,0.0078867115,-0.03675666,-0.016375562,-0.01810344,0.04099781,-0.015262915,-0.008855371,0.016035223,0.008534666,0.0033739419,-0.01798563,0.01806417,0.010079283,0.016990792,-0.0060115727,0.010642152,-0.025525458,-0.010033469,-0.00869829,0.006813334,-0.009712764,-0.014163356,0.006656254,-0.012815089,0.0029877876,-0.0012460023,-0.019595698,0.04180939,-0.010989036,-0.03010695,-0.016427923,0.0003730644,0.0065580793,0.0023480149,0.005438886,-0.002760349,0.00903863,-0.0044113225,0.01784164,-0.008384131,-0.00075431,-0.0041626133,0.0062570097,0.03125887,0.00922189,-0.03091853,-0.00016362473,-0.01858777,-0.0052654436,-0.0034263018,-0.033929225,0.025564728,-0.005523971,-0.021820994,-0.022986002,0.027750755,0.0032839484,-0.028300533,0.009516414,0.03581418,-0.003354307,-0.015262915,0.00221057,-0.16818005,0.020341827,0.006656254,0.0014734407,0.015393815,0.008063426,0.02357505,0.0075725527,0.0037993663,0.010962857,-0.0012607286,-0.022946732,-0.023417972,-0.012815089,0.0037339164,0.005775953,-0.039400835,0.012906719,0.0067544286,-0.009464054,0.020943966,-0.008541211,-0.0011445549,-0.0028470703,0.006397727,0.007422018,-0.010360718,0.010288723,-0.0040938905,-0.015524714,-0.02371904,-0.0014341708,0.02467461,0.026062148,0.005160724,0.011970785,-0.00227602,-0.005710503,-0.009686584,0.011355557,0.0180249,0.009791303,-0.007107858,-0.003606289,0.018666308,-0.019294629,0.020394186,0.0069769584,0.028457614,-0.008272867,0.01890193,-0.010799232,0.005484701,-0.017016971,0.01869249,0.028326713,-0.015446175,0.0051901764,-0.008063426,-0.012219495,-0.011532271,0.010079283,0.032698765,-0.013548127,-0.015145105,-0.019072099,0.002500186,-0.0057988605,-0.021480655,0.01823434,-0.005638508,-0.015485444,0.018928109,-0.01775001,0.013417228,-0.011636991,-0.029871332,0.014726225,-0.0016918797,0.012337305,0.004198611,0.016598092,-0.013456497,-0.0037208262,0.00052768976,0.03070909,0.010930132,-0.0085215755,0.005343984,0.00583813,0.013443408,-0.06414089,-0.013050708,-0.008861915,0.0018015082,0.022959823,-0.0037699137,-0.0106094275,0.014333527,-0.008554301,-0.002051854,0.0006409999,-0.016558822,-0.0005346438,0.015079655,0.011309741,0.02349651,0.008770285,0.026035966,0.006662799,-0.0077296323,0.01873176,0.0033297632,0.020655986,-0.016244663,-0.0005518244,0.032463145,-0.032253705,-0.0039008136,-0.0023251073,0.041469052,0.010413078,-0.008259776,0.01823434,0.0013089979,0.0025067308,-0.07194252,-0.02411174,0.025813438,0.02360123,0.010334538,0.016715903,0.0049872817,0.028981213,-0.0181558,0.030682908,-0.007781992,-0.025433827,-0.0066464366,0.017357312,0.016087584,-0.022410043,-0.013312508,-0.020315647,-0.009817484,0.0087768305,-0.00937897,-0.016022133,-0.0004683758,-0.0039433558,-0.015930504,0.033824503,-0.03738498,0.019504068,0.0078016273,-0.009869844,-0.007101313,-0.015681794,0.012821633,-0.026481027,0.010766507,0.0025100033,-0.028745592,-0.010982492,0.023797581,-0.012370029,-0.0028765227,0.005271989,-0.004977464,-0.0596903,0.022488583,-0.021964984,-0.03701846,0.0015773424,0.0043556904,-0.03005459,0.00077312684,0.005049459,-0.015812693,-0.011159207,0.03091853,-0.010517797,-0.0146215055,0.0077034524,-0.013089978,-0.012154045,0.010007288,-0.008960091,-0.0021991164,0.027541315,0.0056679607,-0.012514019,-0.017043151,-8.852354e-06,0.010413078,-0.020511996,-0.011669716,-0.0037699137,-0.03602362,0.017697651,-0.034976423,-0.0025198208,-0.027829293,-0.0063748197,0.016977701,0.01918991,-0.026585747,-0.025446918,-0.0017475121,-0.002917429,-0.017030062,0.028143454,0.02367977,0.005540333,0.0074874675,-0.019517157,0.015354545,0.027253335,0.020865425,-0.015367635,0.00461749,0.010131643,-0.015891233,-0.013057253,0.0066464366,0.0057857702,0.008292501,-0.017815461,-0.0943002,0.02371904,-0.016467193,-0.0047712973,0.0002421646,0.005160724,-0.005710503,-0.015498535,-0.0015249825,0.0052588987,-0.010399988,0.0064566317,-0.016663542,-0.010923587,-0.0059723025,-0.029138291,0.018771028,-0.00024236913,-0.016323203,0.013371413,0.009509869,-0.01216059,0.049898997,-0.018640129,-0.01839142,0.00875065,-0.007323843,0.0005137817,-0.022580212,-0.011218111,-0.0033166732,0.0078867115,-0.0048596547,0.02386303,-0.005167269,-0.0037306438,-0.0070227734,0.032410786,0.0044538653,0.007873622,-0.0050134617,-0.01772383,0.0012877266,-0.00897318,-0.0034655717,-0.011918426,-0.010053104,-0.011846431,0.03521204,0.007422018,0.025067309,0.015001115,-0.012808544,-0.0071144034,-0.015825784,0.004391688,0.019569518,0.0005113273,-0.009555684,0.002878159,0.028274354,0.027646035,-0.00449968,-0.00943133,0.0085215755,0.028876493,-0.029321551,-0.0060115727,-0.007225668,-0.028483793,-0.017174052,-2.0405155e-06,-0.0027914378,-0.0019798593,0.013175063,0.0033870318,-0.016689721,-0.0035244767,-0.013135794,0.012690734,0.011047942,0.0021353026,-0.02400702,0.019582607,-0.0071209483,0.015367635,-0.020682165,0.011414461,-0.019281538,0.015315275,-0.009581864,0.023326341,-0.005618873,-0.0038288187,0.023483422,0.00918262,-0.015838875,-0.0048956517,-0.008632841,0.014163356,0.022959823,0.0024560073,0.008338316,-0.02454371,-0.016755173,0.0093396995,-0.02479242,-0.04343255,-0.015446175,0.014097907,0.003102325,0.022855103,0.0011216475,0.0052098115,-0.010105464,-0.003540839,-0.0006262736,-0.0024167371,-0.02966189,0.03612834,-0.01861395,0.01210823,0.0125532895,-0.010884317,0.004836747,0.008141967,0.004882562,-0.012376575,-0.0045291325,-0.026991535,-0.010517797,0.014909485,0.003599744,-0.021362845,-0.0074154725,-0.032253705,0.002222024,0.012036235,0.00889464,0.048249662,-0.009444419,0.0013989914,-0.0010463801,-0.013220878,0.0119904205,0.0052850787,-0.0038811786,-0.020747615,-0.029321551,0.008351406,0.007317298,-0.028195813,-0.013089978,-0.0056679607,0.027043896,0.011440641,0.0027292606,-0.009032085,0.017265681,0.016558822,0.006734794,-0.013404137,0.008966635,-0.009555684,0.0056221457,0.0146215055,-0.0061162924,0.003249587,-0.032882027,0.0045487676,-0.002830708,-0.03146831,-0.0043426002,0.022972912,-0.013260148,0.002758713,-0.0055043357,0.0076380023,0.027829293,-0.0012263673,0.006544989,-0.020813067,-0.005147634,-0.01837833,0.008429946,0.013770658,-0.010779597,-0.0042378805]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('416f039a-a5da-11ee-b807-335a15f5a1d2', 'Business & Finance', 'this article is about capitalism', '[0.011821963,-0.01801938,0.0047619855,-0.04741805,-0.0034958117,0.010070803,-0.01620963,0.012121418,-0.0011327211,-0.03838232,0.014582157,0.030310055,-0.022615364,0.012479462,0.00448206,0.011307682,0.024971943,-0.002158029,0.0039482494,-0.019100022,-0.016561164,0.025570855,-0.019685913,-0.0010285629,-0.010324688,-0.008892512,0.008944591,-0.021847196,0.01140533,0.011268622,0.00044470697,-0.007557984,-0.017055916,-0.011841493,-0.0020017917,-0.009055259,0.0023923852,-0.0020603808,0.015376364,-0.019490615,0.004456021,0.013462456,-0.015519582,0.009979663,-0.020037446,-0.0016730421,0.036247075,-0.017251212,0.003775737,-0.003300515,0.013996267,0.032731734,-0.04335588,0.0053967,-0.0020734004,-0.008729764,-0.0060997684,0.004342098,0.0026186039,-0.007766301,0.010552534,0.0021531465,-0.032575496,0.002158029,-0.026950952,-0.015441462,-0.0071869204,0.0047522206,-0.0011913101,4.1907428e-05,0.020011406,0.023917342,0.0069265245,0.0020083014,0.008840432,-0.013553594,-0.012974214,-0.008703725,-0.009048749,0.0060314145,-0.006402478,-0.0057840385,-0.02577917,0.004433236,0.026078625,-0.00011972097,-0.0151680475,0.014087405,-0.004208645,-0.006376439,0.020896751,0.0029489808,0.0056798803,0.008866472,-0.034033712,0.017511608,0.007727241,0.01791522,0.021873236,-0.030257976,0.028070653,0.011457409,-0.009680209,-0.018852646,-0.034971137,0.0008755804,0.023005957,-0.012446913,0.033903517,-0.018266756,-0.0227716,-0.008072265,0.005286032,-0.021886256,0.010487435,-0.017550668,0.027497781,-0.0016649048,0.015714878,-0.023774125,0.02702907,0.028825799,0.017055916,0.0023549532,0.020467099,-0.011021246,-0.032940052,-0.011301172,-0.010285629,-0.006487107,0.023878282,0.036247075,-0.00017108809,0.014451959,-0.002546995,-0.010324688,-0.0033916535,0.02523234,-0.036559552,-0.032184903,0.004078447,0.021118088,-0.007518925,-0.0023289137,-0.013905128,0.011893571,0.0041630757,0.026768673,0.022224769,0.010689242,-0.0013735871,-0.021925315,0.030231936,0.015701858,0.0060476894,0.02156076,0.015441462,0.007753281,-0.0061518475,-0.025102142,0.00843031,-0.021365464,0.010370257,0.012433893,0.010259589,0.020545218,0.020935811,0.036377273,0.014660276,0.005159089,-0.0145430975,0.0045894734,-0.01920418,0.016587203,0.008332661,0.017016856,0.00074212765,0.003365614,-0.039241627,-0.004429981,-0.0020587533,0.0073040985,0.026273923,0.030205896,0.01682156,0.013983247,0.0017902202,-0.0036715788,0.023279373,-0.011086346,0.0014753041,0.031559955,-0.0015574916,0.009055259,-0.6703626,-0.030257976,-0.0036292644,0.018162597,-0.021092048,0.0074212765,0.011594117,0.0023077566,0.0089511005,0.016483046,-0.019152101,-0.019269278,-0.01676948,-0.0035739304,-0.01080642,-0.01800636,0.01320857,-0.02937263,-0.009497932,0.004631788,-0.012746368,0.022511205,-0.020063486,0.002735782,0.01259013,0.014738395,0.024906846,-0.017081955,0.0113662705,0.0020571258,-0.0060769836,0.026664516,0.007883479,0.010754341,0.036872026,0.010702262,-0.008026696,0.01076736,0.018383933,0.021287344,-0.018318836,-0.022420067,-0.009178947,0.00025571667,-0.013983247,-0.018227696,0.03241926,-0.002123852,0.015246166,0.014933691,0.0024705038,0.0032191414,0.0019122807,0.0041760956,0.0075840238,0.0063862037,0.005601762,-0.009543501,0.017212152,0.007824889,0.0058719222,0.005325091,-0.010572064,-0.01740745,-0.0053088167,0.0027439194,-0.015675819,0.01971195,0.027758177,-0.019308338,-0.018657349,-0.004397432,0.0025356028,0.0033330645,-0.0030954534,0.0011351623,0.016014334,-0.014569137,0.013657752,0.010995206,-0.010708772,-0.015506562,-0.024789667,-0.02827897,0.02098789,-0.02519328,-0.023774125,-0.0071022916,0.006893975,0.005233953,0.018305816,0.00078159384,0.0014451959,0.015519582,0.0047522206,0.007642613,-0.0028627247,-0.0062722806,-0.0040979767,0.021274326,0.008215483,0.002068518,0.014738395,0.011913101,0.016535124,0.028070653,0.01686062,0.036299154,0.011626666,-0.026104664,0.008768824,-0.004609003,-0.018253736,0.017303292,-0.006610795,-0.032002628,0.042496573,-0.021756057,0.00088127656,-0.0002874524,-0.011138424,0.011144934,0.031065203,-0.004241194,0.0012360656,0.009107338,-0.029112235,-0.015806017,-0.02999758,-0.023774125,0.007571004,-0.016105471,0.0123818135,-0.007564494,0.01686062,0.00042965284,0.008280582,-0.009842956,0.017654825,-0.031403717,-0.006718208,-0.023630906,-0.010038253,-0.0012857036,-0.018318836,-0.016626263,0.009888525,-0.0061453376,-0.04158519,0.026573377,-0.018110517,-0.015519582,-0.006685659,0.023669966,-0.0017625531,-0.009660679,0.0034502426,-0.008339171,-0.005644076,-0.0133973565,-0.021703979,0.0058068233,-0.031273518,0.0019627323,-0.008163404,0.0123818135,-0.016938739,-0.014009287,0.012863546,-0.015142008,0.0025111907,0.009165927,-0.0030856887,-0.009536991,-0.0009008062,0.026130704,0.00097648375,0.012687779,0.008306622,-0.0046968865,0.007610063,-0.015532602,-0.03239322,0.002154774,0.034997176,-0.015415424,0.015246166,0.0048173196,0.0036325194,0.014712355,-0.0039742887,0.02648224,-0.005103755,-0.009452363,-0.008163404,-0.0041728406,-0.025024023,0.0029245687,0.009354714,-0.0137749305,0.022550264,0.007564494,0.0371845,-0.018214677,0.019581754,-0.020896751,0.0068614255,-0.0149206715,0.012642209,0.0033916535,0.021873236,-0.0038668755,-0.008026696,-0.007981127,0.006610795,0.0128830755,-0.0039710337,0.001142486,-0.0086972155,0.0036194997,-0.0071934303,-0.0060249045,-0.01439988,-0.013670772,0.0036683239,0.018383933,-0.00045650615,0.013879089,-0.020063486,-0.02947679,-0.0032614556,0.008684196,-0.005823098,0.010070803,0.01018798,0.0215868,0.035257574,-0.008729764,0.021274326,-0.024190757,0.010546024,0.035752323,0.0019106532,-0.012941664,0.011203524,-0.018670369,0.0070567224,0.02633902,-0.00960209,-0.010201,-0.025011003,0.0071543707,-0.0035836953,0.011848003,0.009354714,-0.026117684,0.021925315,0.00061396416,0.0065066367,0.009374244,0.025675012,-0.004016603,-0.013371318,-0.014009287,0.004257469,-0.006353654,-0.015506562,-0.0019676147,0.007701202,-0.017850123,-0.005289287,0.015115968,0.0019708697,-0.015194086,0.018826606,0.024294915,-0.002753684,-0.024984963,0.0044690403,0.012114909,-0.007818379,-0.020649375,0.0050679506,0.029789263,-0.010702262,-0.019529674,-0.0042932737,0.0014093915,-0.0011864278,0.02997154,-0.018904725,0.015858095,-0.00271137,0.017889181,-0.009439343,0.0039091897,0.03767925,-0.010148921,-0.0011986338,-0.008879492,0.024776647,-0.014673295,0.020115566,-0.003778992,0.029294511,-0.018670369,-0.017147055,-0.005328346,0.0036845987,-0.027055109,0.030257976,-0.022498185,-0.027393624,-0.0032565733,0.012466442,-0.02339655,-0.009517461,0.02945075,0.029554907,0.017003836,0.02762798,0.008723254,-0.028383126,0.024906846,0.12113606,-0.0017918476,-0.010936618,0.033851437,-0.004387667,-0.036247075,-0.018370913,-0.028747682,0.006737738,-0.013722851,0.015806017,-0.021131108,0.0070762523,-0.0061713774,0.034502424,0.0033818886,-0.028617483,0.007024173,0.015766958,-0.005266502,0.015936214,-0.002849705,-0.020844672,0.024958923,0.008807884,-0.0007693878,0.042132016,0.022732541,0.00046911906,-0.018813586,0.0023419335,-0.0062560057,-0.019100022,0.016417947,-0.010168451,-0.008020187,-0.0010155431,0.016391907,0.020558238,0.018982844,0.010747831,0.016391907,0.007597043,-0.024997983,0.0035674206,-0.032106783,-0.0026316238,0.0145430975,-0.010656692,-0.002883882,0.0066335793,-0.010552534,-0.048433594,-0.014126465,0.015884135,0.0049377526,-0.024399074,0.030492332,-0.012824486,-0.041819543,-0.012010749,-0.03116936,-0.0019350653,0.0048335944,0.03122144,-0.02103997,-0.009055259,-0.004462531,-0.009790877,-1.1080801e-05,0.013905128,-0.011672235,-0.013384337,-0.008716744,0.04507449,-0.00269184,0.017394431,0.0046513174,-0.010077312,0.006242986,-0.0050809705,-0.034919057,-0.02281066,-0.05827655,-0.011906591,0.008143874,-0.0069786035,0.009341694,-0.01558468,0.011294662,0.005347876,0.021417543,0.008248033,0.012941664,0.018514132,-0.0004544718,-0.0038603656,-0.01084548,0.021495663,-0.0018829862,0.013735871,0.008560508,-0.010480925,0.00025612355,0.00024798617,-0.008098305,0.0017772004,0.01382701,-0.010995206,0.0068223663,0.011737335,-0.006610795,-0.0092049865,0.017550668,0.00045935423,0.01620963,0.0074668457,0.0080657555,0.016990816,-0.008000657,0.01139882,-0.019256258,-0.009751817,0.021703979,-0.0077793202,0.0074603357,-0.0040393877,-0.03411183,0.0004919037,0.012876566,-0.007942067,0.012498992,-0.012694288,-0.024854766,-0.011848003,-0.016522104,-0.023318432,0.007518925,-0.015493542,-0.022537244,-0.018475072,0.012668249,0.016470026,-0.018162597,0.018956805,-0.045465082,0.010930108,0.0011839865,0.011750354,0.009172437,0.0036748338,-0.023865262,-0.016457006,0.0021775586,0.0059825904,-0.020584278,0.015897155,-0.025336498,0.01680854,0.0263911,0.04569944,0.0027797236,0.0028090181,0.010858499,-0.008007167,-0.0030433743,0.00040768195,0.0008804628,-0.02939867,0.010871518,0.021170167,0.015493542,0.04028321,0.008026696,0.018787546,0.02945075,0.015988294,0.012062829,-0.034684703,-0.009699739,-0.009165927,-0.0058491374,-0.02101393,0.00269184,-0.04926686,-0.025948428,0.034971137,0.016704382,0.014230623,-0.0029636282,0.020297842,-0.017134035,0.01808448,0.0049930867,-0.009302635,-0.019438537,-0.011587607,-0.0300757,0.00093742437,0.030153818,0.00046627098,-0.003087316,0.017758984,-0.015402404,-0.001099358,0.0049117133,0.00017546192,-0.0144128995,0.004387667,-0.001926928,0.006402478,-0.014087405,-0.025427636,-0.018501112,0.027419664,0.0114899585,-0.024984963,0.03905935,-0.015675819,-0.03835628,0.02284972,-0.030205896,0.017316312,-0.0010293766,0.03900727,0.00841078,-0.00062942517,-0.019477595,0.014308741,0.0039384845,-0.015506562,0.02937263,0.021209227,-0.014868592,-0.01856621,0.012687779,0.009882015,-0.017628787,-0.007024173,0.023045016,-0.003414438,0.01676948,-0.013078372,-0.033382725,-0.0030694138,0.014438939,0.021873236,0.0058068233,-0.02103997,-0.03228906,-0.020063486,0.00079583423,-0.0071022916,0.025661992,0.004019858,-0.020232743,-0.012713818,0.017381411,-0.01792824,0.013540574,-0.0052437177,0.014933691,-0.023513729,0.030205896,0.011197014,-0.0036162448,-0.023956401,-0.0072324895,-0.0017690631,0.021417543,0.0033330645,-0.022563284,0.007701202,0.023266353,0.02100091,-0.0013841657,0.0001341648,-0.01855319,-0.014048346,-0.022550264,0.009868995,0.013026293,-0.014556117,0.007981127,0.0025095632,-0.010337708,-0.014425919,-0.016600223,-0.02343561,0.01562374,-0.02812273,-0.027081149,-0.008580037,-0.0019969093,-0.0070111533,-0.014061365,0.008586547,0.02648224,-0.032028668,0.017850123,-0.0013434789,0.010233549,-0.01792824,0.0070697423,0.01674344,-0.0074668457,0.03603876,-0.018136557,-0.026026547,-0.017173095,0.0037106383,0.004449511,-0.012147457,-2.5492836e-05,-0.00900969,0.008820903,-0.014022307,-0.0031198654,-0.0130132735,0.0008869727,-0.007837909,-0.013748891,0.0132671585,-0.032080747,-0.002340306,0.0007014408,0.0031019633,-0.012746368,-0.02157378,-0.003427458,-0.02635204,0.033226486,0.014087405,-0.0009805524,-0.00658801,-0.0155586405,-0.012876566,-0.007265039,-0.0056733703,-0.005155834,0.012752878,-0.010741321,0.0027276445,-0.006242986,-0.005380425,-0.015441462,-0.030544411,0.0070046433,-0.01558468,-0.016899679,-0.015897155,0.023917342,0.013325748,-0.022276849,-0.04507449,0.0048270845,-0.03952806,-0.014621217,0.005478074,0.026560357,0.009452363,-0.00090487493,-0.00035417877,-0.00067824934,0.0030954534,0.011275132,-0.0073952368,0.011587607,0.004355117,-0.017772004,-0.006239731,-0.0039319745,-0.0019838894,0.007831399,0.0088274125,-0.017329331,0.0020457334,0.020089526,0.0059923553,-0.001120515,0.014217603,-0.002343561,0.001441941,0.02098789,0.012817976,-0.029164314,0.0019545949,0.0456734,-0.009777857,-0.027289465,0.012342755,0.00045284434,-0.0015070399,-0.0019903993,-0.0051786187,-0.0022459126,-0.019998387,0.014087405,-0.015740918,-0.00898365,0.021079028,0.020896751,0.028721642,-0.018696409,0.004618768,0.017850123,-0.0019187905,-0.011125404,0.011327211,-0.015102948,0.014295721,-0.010930108,-0.011698275,0.0058458825,0.0058621573,-0.02333145,-0.0055561922,-0.0061648674,-0.002883882,0.01141835,-0.013970227,-0.0013662635,-0.022094572,0.00022743933,-0.012088869,-0.012180007,0.007759791,-0.017798044,-0.020831652,-0.005702665,-0.0048889285,-0.020714475,-0.0058426275,-0.002849705,-0.031455796,0.007265039,0.18186033,-0.014959731,0.012062829,0.0016665322,0.009126868,0.013449436,0.027914414,0.00081414334,-0.015988294,0.007571004,-0.0022035984,0.01984215,-0.004133781,0.00050492346,-0.027263425,-0.023617886,-0.031013124,-0.009641149,-0.022459125,-7.862729e-05,-0.0030677863,-0.007916028,-0.016326807,-0.0059174914,0.011763374,-0.019568734,-0.02456833,0.004465786,0.030987084,0.022459125,-0.009406793,-0.013944187,0.012804956,-0.005165599,-0.024724567,0.0008068197,0.015871115,-0.01988121,0.021456603,-0.002136872,0.012017259,0.0227716,0.004677357,-0.012121418,0.007818379,0.041819543,-0.03192451,-0.0050712056,-0.0039482494,0.012778917,-0.040725883,0.020818634,0.018969825,0.026898872,-0.0049312427,0.00719994,0.030648569,0.020402,-0.0062722806,-0.0020506158,0.002009929,0.046116073,-0.004504845,0.003424203,-0.014855572,0.021300364,-0.0073691974,0.025609912,0.02452927,0.0016616498,0.014595177,-0.00076125044,-0.012837506,-0.006711698,-0.0058654123,-0.017850123,0.020857692,0.036247075,0.046610825,0.022966897,-0.015454482,0.010572064,-0.0006233221,-0.0039807986,0.005767764,-0.025701052,0.001889496,0.012420873,-0.016287748,-0.0070567224,0.027784217,-0.0002945726,-0.008619096,-0.011275132,0.014373841,0.02342259,0.0019432026,0.025753131,-0.0033363195,-0.008352191,-0.027107188,0.065984264,0.0103507275,0.0016038745,-0.025883328,-0.015337304,-0.018995864,0.042340335,-0.017498588,-0.0071739005,0.01317602,0.013879089,0.0019366927,-0.011678745,0.020948831,0.008625606,0.023774125,-0.009543501,0.022914818,-0.017446509,-0.013527554,-0.013462456,0.0027764686,-0.016053392,-0.00838474,0.008944591,-0.018865665,-0.0016347965,-0.0035934602,-0.030622529,0.033200447,-0.014530078,-0.023800163,-0.010585084,-0.0063145948,0.013657752,0.017745964,-0.0013158119,-0.0039873086,0.007863949,-0.011971691,0.018318836,-0.021756057,-0.0041240165,0.0023142665,0.0071218214,0.023709025,0.006656364,-0.031091241,-0.006597775,-0.022420067,-0.0063211047,0.00419237,-0.03541381,0.013944187,-0.0014915789,-0.034684703,-0.021417543,0.023865262,0.007597043,-0.028695602,0.0073496676,0.04489221,-0.008339171,-0.0180324,0.0007270735,-0.16561164,0.013866069,0.0016274729,0.010135901,0.023578826,0.009068279,0.023956401,0.011965181,0.0045373943,0.013410376,-0.0035283612,-0.004452766,-0.017772004,-0.008521448,0.012153967,-0.005823098,-0.053745665,0.012928644,-0.004374647,-0.0031670623,0.024333974,-0.014100425,-0.00047156026,0.00419237,0.0031475325,0.017798044,-0.0018683389,0.01614453,-0.0061974167,-0.02650828,-0.022680461,-0.00903573,0.026820753,0.025037043,-0.0030531392,0.017654825,-0.0052599926,-0.0016714147,-0.007375707,0.0072064498,0.020831652,0.009374244,-0.0032289063,-0.0074212765,0.010155431,0.0006542441,0.019503634,0.014074385,0.025479715,-0.010630653,0.02334447,0.006470832,0.0012319969,-0.003847346,0.0215217,0.02945075,-0.0047261813,0.004456021,-0.010090332,-0.0072259796,-0.00448857,0.0039091897,0.027185308,-0.012987234,-0.008482388,-0.026586397,0.013163,-0.00086256064,-0.02523234,0.014777454,7.389744e-05,-0.010559044,0.018839626,-0.01979007,0.0121279275,-0.006796327,-0.032835893,0.004498335,-0.006900485,0.013709832,0.0061062784,0.024412094,-0.012134437,-0.014464979,0.014386861,0.031273518,0.009641149,0.0019415752,0.0015013437,-0.004299783,0.014347801,-0.05046468,-0.027784217,-0.012564091,0.0014102053,0.01990725,0.005624546,-0.014933691,0.00838474,-0.019243238,-0.009550011,-0.0035902052,-0.017524628,-0.0061355727,0.027289465,0.026326,0.021248287,0.004677357,0.020636356,0.011730825,-0.015493542,0.013905128,0.00900969,0.022589324,-0.0051232846,0.0018569465,0.020480119,-0.027706098,-0.012798447,0.006438283,0.03408579,0.016118491,-0.022420067,0.0071934303,0.007818379,-0.012420873,-0.099366985,-0.0152982455,0.017381411,0.025583874,0.015727898,0.029216394,-0.0012092124,0.033148367,-0.023656946,0.026924912,-0.002374483,-0.03234114,-0.0053771706,0.013117432,0.032132823,-0.014699335,-0.018735468,-0.026612436,-0.016287748,0.015207106,-0.0049540275,-0.019920267,-0.0036325194,-0.011307682,-0.014673295,0.033955593,-0.03530965,0.017837103,0.017173095,-0.012375304,-0.00418586,-0.026846793,0.02347467,-0.033122327,0.019269278,0.006060709,-0.022992937,-0.018462053,0.02820085,-0.020441059,-0.008944591,0.011522508,-0.0038180514,-0.059422288,0.01988121,-0.017303292,-0.027497781,-0.0044137063,0.008000657,-0.03249738,0.0030254722,0.003772482,-0.011463919,-0.009048749,0.017107995,-0.0035185963,-0.012472952,0.010376767,-0.010897558,-0.010702262,0.024203777,-0.009680209,-0.002605584,0.02649526,0.005497603,-0.030440252,-0.015988294,-0.00081414334,0.010559044,-0.03538777,-0.011555057,0.009165927,-0.038851034,0.014764434,-0.032731734,-0.0012759387,-0.03765321,-0.012186517,0.023084076,0.024763627,-0.021430563,-0.02643016,0.010363747,-0.0024395818,-0.01920418,0.013299708,0.024724567,0.008638626,0.005279522,-0.02169096,0.0113858,0.020297842,0.036273114,-0.02100091,-0.013488495,0.014087405,-0.012713818,-0.017537648,0.010917088,0.0062006717,0.005471564,-0.01989423,-0.07233792,0.026521297,-0.0142827025,-0.0054292497,0.0072845686,-0.0056929,-0.008775334,-0.019308338,-0.0050321463,-0.0019676147,-0.02154774,0.01261617,-0.0047522206,-0.0065098917,-0.014777454,-0.039163508,0.022315908,0.0046513174,-0.020493139,0.02167794,0.0036227547,-0.019646853,0.06056803,-0.020050466,-0.015220126,0.009445853,-0.005507368,0.019034922,-0.021300364,-0.015845075,-0.00897063,0.0029408436,-0.0047131614,0.018787546,0.007382217,0.010604613,-0.01259664,0.024841746,0.0073431577,0.014764434,-0.0040686824,-0.013436416,0.012010749,-0.017121015,-0.010324688,-0.01627473,-0.015662799,-0.018422993,0.032210942,0.021274326,0.026078625,0.01795428,-0.0018781037,-0.0069720936,-0.025479715,2.4119656e-05,0.018383933,0.00390268,-0.008781844,-0.012043299,0.024880806,0.02827897,0.0037627174,-0.0071934303,0.010331198,0.018253736,-0.02700303,-0.0027178796,-0.0075905337,-0.045959834,-0.015454482,-0.00026344717,0.0013003509,0.0010969167,0.006487107,-0.0051493244,-0.011756864,-0.005582232,-0.0039384845,-0.0020310862,0.011203524,-0.0059109814,-0.023748085,0.017212152,-0.0018243971,0.013722851,-0.023761105,0.012778917,-0.036976185,0.0029815303,-0.014139485,0.02637808,-0.015688838,-0.0012979097,0.024021499,0.006854916,-0.02098789,-0.0061420826,-0.011587607,0.010370257,0.031481836,-0.0008055991,0.0005244531,-0.028409166,-0.012857036,0.007759791,-0.0024818962,-0.03254946,-0.021118088,0.02462041,-0.006412243,0.018396953,-0.0041630757,-0.00023272862,0.006578245,-0.0017625531,0.0072975885,-0.01139882,-0.028903918,0.044501618,-0.018123537,-0.0016095707,-0.00084954087,-0.00538368,-0.012101889,0.0071478607,0.0111123845,-0.020727495,-0.006705188,-0.010995206,-0.019021902,0.019542694,0.0046643373,-0.022589324,-0.005360896,-0.03176827,0.017042896,0.016470026,0.00087639416,0.0299455,-0.0028057632,0.00210595,0.01257711,0.0016543262,0.018149577,0.008306622,0.0019757522,-0.023735065,-0.023656946,0.014113445,0.007655632,-0.00661405,-0.027055109,-0.0061030234,0.01986819,0.0049442626,0.0037529524,-0.015480522,0.014074385,0.011340231,0.010982187,-0.0051167747,0.008899022,-0.011170974,-0.0034632622,0.016899679,-0.0012824486,0.004980067,-0.031065203,-0.0020945575,0.0013426652,-0.03241926,-0.0008690705,0.012804956,-0.0059630605,0.008215483,0.0012962822,0.005517133,0.018982844,-0.0021189698,0.011216543,-0.02157378,-0.006841896,-0.019100022,0.019087002,0.0103507275,-0.0069981334,-0.0075840238]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('417e69d4-a5da-11ee-b807-3bea639e9224', 'Business & Finance', 'this article is about Work and the Office', '[0.01845081,-0.01720767,0.006676968,-0.042476118,-0.009748831,0.008682349,-0.023763595,0.016396357,-0.004619245,-0.03483408,0.019929491,0.01122097,-0.008989862,0.017822696,-0.009290833,0.0025418934,0.012431396,-0.014158706,0.005522157,-0.036064133,-0.029730665,0.018607836,-0.0044982024,0.0071513243,-0.0037032475,0.004753373,0.016867442,-0.02865764,0.0082374355,-0.0021166087,0.007040096,-0.0024781006,-0.0073541524,-0.03313294,-0.008172007,-0.0043967883,-0.0063563692,0.0024666507,0.012647309,-0.027584614,0.014119449,0.008721606,-0.014040935,0.00601287,-0.020165034,0.008819749,0.029495122,-0.023384111,0.003582205,-0.0027872499,0.0002966769,0.036299676,-0.046218622,-4.3192966e-05,0.010246088,-0.015532702,0.00046004343,0.019785548,-0.005397843,-0.015519616,0.0035396765,-0.019314464,-0.01932755,0.00024719667,-0.024103822,-0.0032419772,-0.013779221,0.012346339,-0.009081462,-0.012725824,0.023645824,0.023187825,0.0054142,0.018764865,0.023344854,-0.008636549,0.006650797,-0.006667154,0.0009855153,-0.0013126573,-0.0012038825,-0.026982673,-0.015951443,0.002780707,0.026825644,-0.010717172,-0.0008464799,0.007661666,-0.0056039426,-0.0032746915,0.016422529,0.016671157,0.008152379,0.005780599,-0.02481045,0.013098766,0.002407765,0.014512019,0.015912186,-0.032975912,0.019249035,0.011921055,-0.013288508,-0.005888556,-0.03959727,-0.013399736,0.019968748,-0.018398466,0.037634417,-0.022795254,-0.03169352,-0.0040074894,0.019340634,-0.011181714,-5.3773965e-05,-0.028422097,0.023698166,-0.014577447,-0.0020233733,-0.032766543,0.01633093,0.027610784,0.026577016,0.0046323305,0.01714224,0.011345285,-0.012405225,-0.006209155,-0.0016422529,-0.0056759138,0.014826075,0.028788496,0.0037261473,0.013491336,-0.012895938,-0.019249035,0.012909023,0.021303488,-0.022219485,-0.022402683,0.0010795686,0.02999238,-0.029311923,-0.01741704,-0.00038970792,0.008859006,0.02078006,0.001900695,0.031484146,0.009264661,-0.0014516927,-0.011993025,0.033891913,0.009133805,-0.0030587777,0.0217484,-0.0012766717,0.0025189933,-0.01856858,-0.024522563,0.016802013,-0.006876525,0.019981833,0.013105309,0.016697329,0.014642876,0.0065788254,0.0269565,-0.0016733314,0.01584676,-0.021499772,-0.00019219592,-0.028945524,0.011953768,0.020649202,0.0169067,-0.0050118156,-0.012051911,-0.033211455,0.00481553,0.00072175707,-0.0082374355,0.031457976,0.029730665,0.0020659016,0.0075831516,0.016409442,-0.00870852,0.024247766,0.0013069323,0.01202574,0.031850547,-0.0024224864,0.005826399,-0.6766867,-0.010462001,0.0036541761,0.002826507,-0.024234679,0.0046356022,0.013779221,0.016972126,-7.994533e-05,0.0067194966,-0.00898332,0.0026972857,0.011044314,-0.00037580437,0.0013380108,-0.02483662,-0.00093889754,-0.0217484,-0.002216387,-0.0022916298,-0.019837892,0.02653776,-0.017469382,-0.009205776,0.022598969,0.01016103,0.015035447,-0.018843379,0.008499149,0.0019383164,0.0005790413,0.024666507,-0.0013306501,0.018372295,0.030070893,0.0149438465,-0.013438993,0.0157159,0.024221594,0.021525944,-0.018071324,-0.022834511,-0.017508639,-0.008158921,-0.003614919,-0.019759377,0.03656139,0.003197813,0.023894452,0.007655123,0.0040074894,-0.005083787,0.0015375674,0.011037771,0.012150054,0.012248197,0.007596237,0.0021754943,0.02126423,0.013249251,0.02320091,0.013124937,-0.023305597,-0.020361317,-0.010946171,0.009048748,-0.016945956,0.015585045,-0.009925488,-0.017678754,-0.0010370401,0.009918946,0.0049431156,0.018542409,0.0040369323,0.014826075,0.011423798,-0.02186617,0.018254524,0.014629791,0.0074653802,-0.005653014,-0.026119018,-0.018293781,0.027401414,-0.021434344,-0.029181067,-0.017482469,0.00831595,-2.7781512e-05,0.0373727,0.012110797,0.006310569,0.008872091,0.016684242,0.008374835,0.004534188,0.0041154465,0.004962744,0.026223702,0.0123725105,-0.012666938,0.017037556,0.0026351288,0.023384111,0.02644616,0.010265716,0.03904767,0.020937089,-0.0010640294,0.009598346,-0.0075831516,-0.01375305,0.013386651,-0.005178658,-0.035462193,0.032426316,-0.01826761,-0.0043771598,0.0090945475,-0.0051426725,-0.006712954,0.017299268,-0.03907384,-0.0077140084,0.011384541,-0.0049038585,-0.022939198,-0.02172223,-0.023279425,0.012307082,-0.016867442,0.006791468,0.0036803475,0.012352882,0.00048376122,0.011960312,-0.0111032,0.026119018,-0.033394657,-0.01677584,-0.030803692,-0.005289886,-0.004370617,0.0025140862,-0.03410128,-0.010350773,-0.0012840324,-0.028762324,0.01587293,-0.0116920555,-0.019850977,-0.02426085,0.026616273,0.009088005,-0.011319113,-0.008577663,-0.0004592256,-0.015127046,0.009853517,-0.038236357,-0.010062888,-0.029966207,0.0057936846,-0.0035494908,0.0071316957,-0.016278585,-0.00044245957,0.013399736,-0.022520455,0.0092712045,0.016762756,-0.0039845896,-0.0027610785,-0.0064610546,0.018895721,-0.003886447,0.008957148,-0.008891719,-0.003660719,-0.004795902,-0.018045153,-0.029102553,0.00013065233,0.02623679,-0.007628951,0.019432236,0.02269057,-0.018398466,0.001240686,7.0897804e-05,0.0065559256,-0.0017436668,-0.018843379,-0.0010116866,0.013209994,-0.03323763,-0.009133805,-0.0003066956,-0.009153433,0.02398605,0.00024699222,0.012006111,-0.014904589,0.028736154,-0.015428017,0.008603835,-0.02117263,0.02066229,0.011122828,0.026799472,-0.0043019173,-0.011155542,0.00068209105,0.008832834,0.007635494,-0.022638226,-0.0011662613,-0.01684127,0.0065919114,-0.009755375,-0.013465165,-0.0036901617,0.003637819,0.002792157,0.03310677,0.022062456,0.005803499,-0.02329251,-0.011214428,-0.0018565309,0.013726878,-0.0101283165,0.0018908808,-0.007432666,0.011626626,0.03677076,-0.021198802,0.018908808,-0.0041252607,0.004252846,0.027767813,0.004164518,-0.035331335,0.005662828,-0.016029958,0.018437723,0.0049725585,-0.009362804,-0.015728988,-0.030725177,0.011188257,0.0067652967,0.029338095,0.0034611623,-0.008989862,0.023698166,-0.011266771,0.012660395,0.013556764,0.006052127,-0.0020659016,0.0021869442,-0.012451025,0.0011409078,0.0002103932,-0.013007166,-0.014590533,0.011724769,-0.023357939,0.008381378,0.015467274,-0.0042790174,-0.00068086426,0.021224974,0.031615004,-0.007825237,-0.02186617,0.008787034,0.019785548,-0.0067652967,-0.02435245,-0.0033024985,0.020282805,-0.010913457,-0.0059965127,0.0075896946,0.007733637,0.0012235111,0.021238059,-0.00817855,0.028971696,-0.002430665,0.0017224026,-0.0019661235,0.013079138,0.026485417,-0.014891504,0.0020740803,0.0005990788,0.014368077,-0.02144743,0.004822073,-0.0008816477,0.028474439,-0.013438993,-0.016095387,-0.0015612852,-0.012012654,-0.024679592,0.022297999,-0.0020855302,-0.01868635,0.025006734,-0.0003960463,-0.018463895,-0.020426746,0.015022361,0.04213589,0.017063728,0.01741704,-0.006137184,-0.027270557,0.02577879,0.116096154,0.0149569325,-0.014224134,0.02050526,-0.008839377,-0.026577016,-0.031902887,-0.022114798,-0.0034251767,-0.017286183,0.01838538,-0.03140563,0.003338484,-0.013700707,0.037110988,-0.00216568,-0.006968125,0.013792307,0.02941661,-0.016959041,0.009251576,-0.0108349435,-0.0338134,0.018280694,0.020897832,-0.0013453715,0.037425045,0.03946641,-0.0073410664,-0.0049954583,0.0065003117,0.010527429,0.0026318573,0.0085907485,-0.00027868408,-0.00022777262,-0.0025059078,0.011620084,0.016762756,0.00209698,0.02144743,0.026341474,0.01896115,-0.022847597,0.0019743019,-0.012104254,0.0019186878,0.02568719,-0.008898263,-0.0046748593,0.0031274776,-0.002561522,-0.014760647,-0.01674967,0.018987322,0.01250991,-0.013975507,0.02066229,-0.013373565,-0.024718849,-0.019000407,-0.025333876,0.0059310845,0.0058460278,0.010233002,-0.025503991,-0.008970234,-0.0025926004,-0.0007193035,0.013425908,0.017508639,-0.019589262,0.0019137807,-0.005031444,0.05276146,-0.0028395925,0.027636956,-0.006830725,-0.014970018,0.00030976257,-0.0070924386,-0.014655962,-0.033185285,-0.040303893,-0.02941661,0.016605727,-0.019039664,0.01578133,0.000614618,-0.012961366,0.0012194219,0.015087789,0.0033532055,-0.0008472978,0.022533542,0.007844865,0.005617028,0.0002803198,0.01393625,-0.0013780857,-0.0068176393,-0.0074195806,-0.0038439184,-0.0037294189,0.003621462,0.0010345866,0.019105094,0.021041773,-0.013367022,0.002114973,0.022219485,-0.014983104,0.0050674295,0.0118556265,-0.011050857,0.016016873,0.011862169,0.015428017,0.025804961,-0.014446591,0.008898263,-0.029913865,0.0139231635,0.0052637146,-0.00933009,0.0028739425,0.0031111203,-0.030097064,-0.016618814,0.017574068,-0.0010051437,0.008819749,-0.020374404,-0.029207237,-0.020701546,-0.01714224,-0.027793985,0.0054959855,-0.02329251,-0.013105309,-0.023070054,0.015977615,0.013465165,-0.0022589155,0.016134644,-0.04488388,0.008603835,0.003785033,-0.00377849,0.020832403,0.013635279,-0.002492822,-0.023881366,-0.0046127024,7.1664545e-05,-0.012778167,-0.011129371,-0.02623679,0.004913673,0.02538622,0.027061187,0.0009323547,-0.004027118,0.004455674,-0.0055712285,-0.01255571,-0.0023734153,-0.018607836,-0.023488795,0.017731097,0.020282805,-0.003186363,0.031484146,0.010540515,0.005623571,0.03483408,0.0030963991,0.005031444,-0.02965215,-0.017979724,0.0014770462,-0.019340634,-0.03637819,-0.01294828,-0.035854764,-0.02020429,0.034938764,0.010776058,0.013438993,-0.005397843,-0.0056726425,-0.00426266,0.005188472,0.008263607,-0.021434344,-0.027427586,-0.005610485,-0.04600925,0.013883906,0.0332638,0.0139100775,-0.00030587777,0.015127046,-0.017469382,0.008793577,0.008145836,0.013373565,0.004416417,0.0015874566,0.0074784663,-0.005741342,-0.01820218,-0.010285345,-0.022572799,0.020151947,0.00693541,-0.017848868,0.041978862,-0.013857735,-0.03310677,0.023135481,-0.03169352,0.016043045,0.005109958,0.02250737,0.0075438945,0.018555494,-0.014446591,0.0049823727,0.02029589,-0.006791468,0.026406903,0.025765704,-0.00649704,-0.017482469,0.022821426,-0.0015702816,-0.0052375435,-0.019406063,0.014394248,0.00273,0.008028065,-0.008531864,-0.0028461353,-0.015977615,0.025857303,0.0116920555,0.0047141165,-0.0149569325,-0.04498857,-0.009356261,-0.003497148,-0.023658909,0.014093277,0.017286183,-0.02038749,-0.0015702816,0.017940467,-0.0130529655,0.008564577,0.010121774,0.0043967883,-0.019471493,0.016134644,0.0036934332,0.013713793,-0.024103822,0.00043796137,0.007242924,0.020845488,-0.010370402,-0.017587153,0.0008579299,0.018071324,0.024875877,-0.00449166,0.013367022,-0.015231731,-0.0149569325,-0.020649202,0.019772463,0.01366145,-0.0060717557,0.011135913,-0.0014876783,0.0007663301,0.010906914,-0.006830725,-0.02577879,0.0030489634,-0.022729827,-0.020178119,-0.0010370401,0.002955728,-0.009140347,-0.0220232,0.025909647,0.020727716,-0.022860684,0.016880527,-0.017063728,0.008185093,-0.01808441,0.0020184661,-0.0002842046,-0.015349503,0.031013062,-0.022965368,-0.028814668,-0.02029589,0.0038112043,0.008100036,-0.026668616,0.0055319713,-0.002025009,0.009879689,-0.009415147,0.0043673455,-0.026433073,-0.0076224087,-0.006209155,-0.014093277,0.01926212,-0.029128723,-0.0032468843,0.014407334,0.00857112,-0.012823966,-0.023423368,-0.018398466,-0.019484578,0.021512859,0.011063943,-0.0142372195,-0.015571959,-0.0160823,-0.003135656,0.007700923,-0.0049104015,0.0021754943,-0.0073803235,-0.005446914,0.0007401588,0.0044524027,-0.008616921,-0.0118556265,-0.02250737,-0.015467274,-0.01347825,-0.016710414,0.0072232955,0.00838792,0.019379891,-0.030934548,-0.044726856,-0.009349719,-0.037974644,-0.013124937,0.013582936,0.027270557,0.02350188,-0.0019497663,-0.006300755,0.012653853,0.010318059,-0.0013020252,-0.025831133,-0.006408712,0.0051753866,-0.019484578,-0.00046086128,-0.0016880527,-0.002824871,0.0010108688,0.0025337148,-0.01472139,0.00034615712,-0.0062516835,-0.008793577,-0.012621138,0.016029958,0.0065624686,0.016121557,0.021159545,0.017273098,-0.032975912,-0.0011245506,0.044072572,0.0004952112,-0.020361317,0.01875178,0.0028101497,-0.006052127,0.0069812103,0.0059605273,-3.9972663e-05,-0.0027986998,0.0062811263,0.003997675,-0.021709142,0.015650474,0.0077467225,0.014970018,-0.017940467,0.0010574865,-0.0075438945,-0.027663128,-0.02135583,0.011037771,-0.015467274,0.0121958535,-0.011417256,-0.02050526,-0.0030538705,-2.4305627e-05,-0.027061187,-0.005813313,0.0029017495,-0.0018385381,0.020793146,-0.025163762,-0.0015588317,-0.013399736,0.0007471105,-0.0135698505,-0.031039232,-0.013412822,-0.019392978,-0.02905021,-0.0071774954,-0.009565632,-0.017089898,0.0032763272,-0.007537352,-0.019222865,0.02232417,0.20539284,-0.008100036,-0.0014844069,-0.0008203086,0.0013110216,0.035671562,0.031510316,-0.0037065188,-0.0007311624,0.022520455,-0.00081376574,0.013321222,-0.010547058,0.003886447,-0.007242924,-0.031222433,-0.036482874,-0.013281966,-0.024090737,0.019013492,0.014485848,-0.025818046,-0.00089555123,-0.015323332,0.011325656,-0.0057936846,-0.029338095,0.0077532656,0.026249874,0.032792713,0.0008562942,-0.020793146,0.017430127,-0.009866603,-0.010560144,0.01693287,0.004462217,-0.03174586,0.018921893,-0.0035102337,0.011835998,0.0014852247,-0.0046323305,-0.0009070012,-0.0073018093,0.036823105,-0.023227083,0.011122828,0.0050968723,0.022520455,-0.044517484,0.011587369,0.019131264,0.01711607,0.002909928,0.0066540684,0.0162655,0.019563092,-0.00866272,-0.0050052726,-0.016618814,0.038812127,-0.021434344,-0.0041318033,-0.017574068,0.0018908808,0.006434883,0.02172223,0.014132534,-0.0059605273,0.014695219,0.013648365,-0.015100875,-0.023357939,-0.01347825,-0.015009275,0.030306434,0.017521726,0.027244385,0.03692779,-0.023541138,0.006434883,0.013504421,0.0075046374,0.006804554,-0.0073803235,0.011822912,0.0040402035,-0.008656178,-0.003928975,-0.0014696855,-0.0016234422,-0.0053455,0.0068830675,0.012012654,0.021067945,0.00594417,0.023488795,-0.018607836,0.0034938767,-0.04119372,0.060926925,0.0005250629,-0.0029164709,-0.024378622,-0.012653853,-0.002932828,0.03805316,-0.004416417,-0.006745668,0.013844649,-0.0023112583,0.0060095987,-0.007236381,0.015519616,0.006052127,0.014773733,-0.012241654,0.005662828,-0.023331767,-0.016828185,-0.0060652127,0.0073148953,-0.0014377891,0.0026645716,-0.0029001138,-0.013962421,0.0014615069,-0.00031262508,-0.024182336,0.04909747,-0.005708628,-0.02923341,-0.022284914,-0.015362589,0.012365968,0.0009945116,0.009853517,-0.0055254283,0.0030996704,-0.006176441,0.0014688675,-0.010455458,-0.0068438104,-0.0043509887,0.010625572,0.028500611,-0.0038046616,-0.029730665,-0.013857735,-0.022939198,-0.016723499,-0.0047762734,-0.025883475,0.02501982,-0.004619245,-0.018241437,-0.019981833,0.0074522947,0.011777112,-0.03059432,0.006477412,0.032059915,-0.019406063,-0.023410281,0.0050281724,-0.1682295,0.022154056,0.00449166,-0.0031896345,0.01769184,0.005787142,0.018921893,0.011377999,-0.005590857,0.028762324,-0.0017469383,-0.012856681,-0.03192906,0.0024797365,0.004478574,0.0063203834,-0.03844573,-0.00016101521,0.0076812943,-0.0044982024,0.0071316957,-0.007890665,-0.0011310935,-0.00493003,-0.004992187,-0.0062189694,-0.011849083,0.015768245,0.003170006,-0.0049889153,-0.016160814,0.0021346016,0.015035447,0.020099605,0.0067587537,0.0146036185,-0.0054927142,-0.0079102935,-0.001014958,0.0054730857,0.018463895,0.026419988,-0.01197994,-0.023318682,0.006778382,-0.01175094,0.025634848,0.011777112,0.014433505,-0.012379053,0.00986006,-0.013327765,0.0055417856,-0.014760647,0.02223257,0.018490067,-0.021067945,0.013739964,-0.02066229,-0.0057511562,0.00047967196,0.001015776,0.030725177,-0.00273,-0.023305597,-0.00020139679,0.014407334,-0.0039682323,-0.024745021,0.013687621,-0.0043444457,-0.015349503,0.029102553,-0.012784709,0.01596453,-0.00088573695,-0.020897832,0.012882852,0.006317112,0.011266771,0.0031454703,0.010625572,0.0056726425,0.0017354883,-0.0024372078,0.017037556,0.0026498502,0.004033661,0.0026416716,-0.007524266,0.027558442,-0.0503537,-0.020034175,-0.013236165,0.005685728,0.016658071,0.0066867825,-0.004828616,0.0015122138,-0.021591373,-0.0051132296,-0.0054632714,-0.03593328,0.002013559,0.03292357,0.016291672,0.024666507,0.0163571,0.020413661,-0.00014629381,-0.01856858,0.014983104,0.011953768,0.016474871,-0.0052539003,0.0046159737,0.03077752,-0.025530161,-0.000110819354,0.00015120095,0.050693925,0.019157436,-0.024470221,0.012954824,-0.005607214,-0.0060226843,-0.06773148,-0.026982673,0.0024372078,0.028029528,0.0063138404,0.019667776,-0.0055581424,0.031457976,-0.011168628,0.027663128,0.013635279,-0.01845081,-0.0030816777,0.02398605,0.0036541761,-0.026315302,-0.021421257,-0.032190774,-0.009029119,0.017783439,-0.0012169683,-0.008139293,-0.0015032175,0.0018761593,-0.025948903,0.023410281,-0.029678322,0.011698598,0.009663775,-0.011463055,0.0027937926,-0.014080192,0.015728988,-0.006464326,0.022952283,0.010337687,-0.01926212,-0.012254739,0.020623032,-0.03213843,-0.0012120611,0.0076224087,-5.2170203e-06,-0.06082224,0.010959257,-0.010697544,-0.036064133,-0.01135837,0.009997459,-0.028579125,-0.006107741,0.009840432,-0.014433505,-0.011744398,0.031510316,-0.0017632954,-0.007903751,0.009912402,-0.012987537,-0.0011278221,0.023122396,-0.0014320641,0.0030538705,0.031772032,0.013530593,-0.020740803,-0.015270988,-0.00047353804,0.024025308,-0.018738694,-0.012365968,-0.013792307,-0.037084818,0.004704302,-0.012503367,-0.01303988,-0.01944532,-0.01432882,0.0077467225,0.028055698,-0.029024038,-0.031902887,-0.0033532055,0.0071316957,-0.0045701736,0.014368077,0.0068896106,0.00693541,0.025333876,-0.022494284,0.019275207,0.033996597,0.013465165,-0.016802013,0.005741342,0.01799281,-0.022834511,-0.015375674,0.006739125,0.008093493,0.0011891612,-0.018882636,-0.083067894,0.025255362,-0.012477196,-0.010566686,-0.006837268,0.009833888,0.0007094892,0.0027087359,-0.005741342,-0.004494931,-0.0163571,0.007242924,-0.02108103,-0.00958526,-0.0108218575,-0.017364698,0.017102985,0.0015743709,-0.0089440625,0.0087543195,0.01596453,-0.008257064,0.04171715,-0.019301377,-0.019550007,0.021067945,-0.021552116,-0.011482684,-0.027035015,-0.011273313,-0.015768245,-0.011894884,0.0077532656,0.035017278,-0.0042103175,-0.0023210724,-0.0036280048,0.03640436,0.0149307605,0.013373565,-0.009009491,-0.017665667,0.009977831,-0.016697329,-0.004259389,-0.020243548,0.0017714739,-0.016003788,0.025059078,0.003935518,0.013687621,0.020937089,-0.014446591,0.008368293,-0.009218861,0.017246926,0.025530161,0.00066532503,-0.010723715,-0.0026972857,0.021709142,0.025242276,-0.0013911714,-0.003909347,0.0028821211,0.024208508,-0.026184445,-0.024457136,-0.009349719,-0.016815098,-0.018346123,-0.0006649161,0.00656574,0.010913457,0.0032616057,0.008813205,-0.029181067,0.015179389,-0.020910917,0.009918946,0.010095602,0.0048776874,-0.019131264,0.022729827,0.0028821211,0.029547466,-0.02626296,0.00029176977,-0.009258118,0.016658071,-0.01499619,0.02184,-0.005656285,-0.010475087,0.025399305,0.0069877533,-0.021290401,-0.013792307,-0.0005344683,0.024509478,0.024300108,0.0044654883,0.00024290294,-0.028500611,-0.015585045,0.013177279,-0.022297999,-0.032818884,-0.016029958,0.022180228,0.0043509887,0.02280834,0.012653853,0.009487118,-0.0031209346,-0.011809826,0.007805608,-0.009297376,-0.03423214,0.03020175,-0.018934978,0.0020773518,0.008656178,-0.006506854,0.020047262,0.023344854,0.007877579,-0.031850547,-0.010357316,-0.020138862,-0.012980995,0.011384541,-0.0026269502,-0.021015601,-0.008499149,-0.014682133,-0.01732544,0.023933709,0.0042397603,0.047998276,0.008106579,0.0006792286,0.01025263,-0.015742073,-0.0020037447,0.02214097,-0.011849083,-0.014734476,-0.03480791,0.0057315277,0.0024895507,-0.020335147,-0.006771839,-0.014040935,0.011247142,0.002543529,0.0005262897,-0.018136753,0.014014764,0.017403955,0.013275422,-0.0142503055,0.0084140925,-0.016644984,-0.005381486,0.0030767706,-0.0030489634,-0.007727094,-0.0132427085,0.015362589,-0.012483738,-0.023004625,0.0027365428,0.032269288,-0.019942576,0.003886447,-0.020243548,0.0053553144,0.031117747,-0.0004579988,0.0065919114,-0.017875038,-0.007851408,-0.037006304,0.009303918,0.007079353,-0.011299484,-0.010514344]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('418a073a-a5da-11ee-b807-3f6558199367', 'Science & Education', 'this article is about space', '[0.032023426,0.0058432785,0.0041457713,-0.03199685,-0.017114595,0.018244052,-0.015334039,-0.0026226654,-0.013168139,-0.017659392,0.0057569086,0.014297596,-0.021154065,0.003866729,0.0009940882,-0.0007349775,0.024887916,0.0012216406,0.0070225648,0.00491646,-0.005743621,0.01714117,0.016250892,0.010251483,0.0018785526,0.008763257,0.028595192,-0.026429292,-0.0047736163,-0.002499754,0.020117622,0.00028610142,0.0011875908,-0.03744482,-0.010065454,-0.0066438643,0.0044812867,-0.009746549,0.009819631,-0.008935997,0.018111175,0.031784248,-0.013287729,-0.00094508973,-0.0040959422,-0.00275056,0.027718201,-0.021326805,0.0066903713,0.0062086913,0.024715176,0.037604272,-0.047011983,-0.0069694137,0.0007557396,-0.024954354,-0.011659982,0.015878836,0.004172347,-0.02925958,-0.011859298,-0.0013694665,-0.025060656,0.024223529,-0.027425872,-0.0051656044,-0.0034946727,-0.0031574965,-0.0039464557,-0.021632422,0.02258914,0.007972637,0.006268486,0.009494082,0.031491917,-0.0042720046,0.013898964,0.010636827,0.010317922,-0.0047603287,-0.004893206,-0.007540786,-0.043663476,0.0059063956,0.025313124,0.009587096,-0.005580846,0.010643471,-0.005574202,-0.0035112824,0.008205173,0.004800192,0.0004181482,0.0010414257,-0.030296022,0.025897784,0.014935407,0.023147224,0.005697114,-0.039863188,-0.01047073,0.013181427,-0.013573415,-0.015054997,-0.0305352,0.009055587,0.025592165,0.014178007,0.034202613,-0.036939885,-0.01643692,0.0044314577,0.0042321417,-0.026894363,-0.0099192895,-0.0017207608,0.03428234,0.00579345,0.013699648,-0.017406926,0.029658211,0.015041709,0.015905412,-0.00818524,0.016981717,0.011480598,-0.039597433,-0.0075142104,-0.0029482148,-0.011460666,0.0039796745,0.01813775,0.00066189497,0.015453628,-0.008391201,-0.018669259,0.0063913977,0.028568616,-0.008763257,-0.017287334,-0.0019798717,0.02123379,-0.027718201,-0.018350353,-0.009759837,0.015573218,0.015320751,0.009892714,0.009939221,0.02322695,0.020051183,-0.0012299453,0.03316617,0.006856468,0.017167745,-0.0018669259,-0.01690199,0.008271611,0.008324762,-0.009965797,3.9136514e-05,-0.024090651,0.02766505,-0.0059429365,0.006710303,0.037019614,0.014749379,0.007946062,-0.004122518,0.0035345359,-0.02381161,0.022881469,-0.023532568,0.018815424,0.010284702,0.01439061,0.008417776,0.007700239,-0.015493492,0.0068166046,-0.021791875,0.00510581,0.019426659,0.022908045,-0.009879426,0.009925934,0.013978691,-0.0065242746,0.023838185,-0.01860282,0.031571645,0.027638476,-0.0057502645,0.011301213,-0.68373334,-0.036647554,0.018456655,0.009394424,-0.0095405895,0.0064910557,0.015174586,0.011234774,-0.009075519,0.029764513,-0.01409828,0.005713723,-0.02269544,0.0035445017,-0.01714117,-0.010337853,-0.0047138217,-0.025113808,0.029525334,0.0071155787,-0.038879894,0.020157484,0.008158665,0.0045211497,0.022535987,0.019519674,0.02106105,-0.0063847536,-0.0023104039,-0.008942641,-0.0057602306,0.012643274,0.0033916926,0.018695835,0.02446271,-0.00017118332,-0.0008744986,0.017034868,0.005597456,0.033963434,-0.020715568,-0.0018619429,0.023599006,-0.0017539802,-0.009547233,-0.008464283,0.026110386,-0.00988607,0.012164916,-0.0009915967,0.015533355,0.0065840697,0.010072098,0.019426659,0.005883142,0.0072550997,0.014310884,0.017034868,0.009560521,0.0031259381,0.0045676567,0.026123675,-0.007653732,0.011022171,-0.0021642388,0.0041025863,-0.033006717,0.016330618,0.0015106486,-0.024130516,0.007201949,0.0058964295,-0.009779768,0.025512438,0.0017440144,0.022217082,0.025339698,-0.02264229,-0.0029349271,0.022137357,0.0032455279,0.00034257426,-0.023904623,-0.029020399,0.04066045,-0.019679125,-0.011533748,0.013792663,0.0074211964,0.006072492,0.013925539,0.005733655,-0.010337853,-0.011440734,-0.0015837312,-0.0055044414,-0.014310884,-0.0024283323,0.017181033,0.020968037,0.012570191,-0.010842787,0.023147224,-0.0055044414,0.007872979,0.007500923,0.009208396,0.025313124,0.00734147,-0.03579714,-0.009108738,0.0029997048,-0.031199588,0.03101356,-0.01726076,-0.029046975,0.029817663,-0.006799995,0.0049197813,0.0024831444,0.007879623,-0.014762667,-0.0047271093,0.00035025622,-0.00021883228,0.01854967,-0.012045326,-0.009447576,-0.033830557,-0.021154065,0.0044414233,-0.0006540054,0.012742932,-7.2148214e-05,0.021632422,0.0033169494,0.0041889567,-0.014457049,0.003966387,-0.00070757157,-0.028701494,-0.00045842663,0.0037903246,0.0036408377,-0.016490072,-0.021977903,-0.011042102,0.0022971162,-0.012915673,-0.011513817,-0.030189719,-0.009374493,0.0018353675,0.032395482,0.006178794,0.0025595487,0.00020461026,-0.003863407,-0.014470337,-0.007740102,0.0026608678,0.010988952,-0.031518493,0.01225793,-0.015480204,0.0046141637,-0.014576638,0.0097997,-0.0043019024,-0.018084599,0.0056107435,0.007314895,0.002552905,0.0060160193,0.014151431,-0.006009375,-0.02580477,0.014563351,0.006328281,-0.009613671,0.0009085485,-0.012849234,-0.027797928,0.011068678,0.0068166046,0.009666823,0.033538226,0.017393637,-0.0121250525,-0.0045776227,-0.0015571557,0.031385615,-0.006703659,0.006175472,-0.009075519,-0.029233003,-0.0127960825,-0.01175964,0.019054603,0.012683137,0.02532641,-0.005730333,0.03369768,-0.015865548,0.01637048,-0.017327199,-0.004454711,-0.015719384,0.011766284,-0.020622555,0.01492212,0.00051780615,-0.016755827,-0.011135116,0.020436527,-0.00930141,-0.0128890965,-0.014071705,-0.030109994,-0.010962376,-0.018935014,-0.009733262,0.003767071,0.0064312606,-0.019174192,0.043902654,0.018815424,0.0057535865,-0.00617215,-0.039863188,0.0047869044,0.0034049805,-0.0093479175,0.01643692,0.014576638,0.040155515,0.02527326,-0.0017257438,0.016197741,0.009075519,-0.002604395,0.010543813,0.013619922,0.0047736163,0.010716553,-0.0017489973,0.017938433,-0.0067368783,-0.006610645,-0.01100224,-0.032501783,-0.010537169,-0.014868968,0.0174335,0.00095920794,-0.006902975,0.00023274287,-0.010038879,0.005444647,0.01690199,0.022256946,0.015334039,0.005092522,-0.014935407,0.014722804,-0.013301017,-0.019028028,-0.013872389,0.0049596447,-0.013234578,-0.022097493,-0.011248062,-0.0061455746,-0.020782007,0.0012274539,0.0032671203,-0.003863407,-0.003670735,0.019998033,0.02030365,-0.0029183174,-0.020370089,-0.0053150915,0.027000666,-0.010450799,-0.013002043,-0.019280495,-0.007261744,-0.0068763997,0.010909225,-0.00021322652,0.016476784,0.016171167,-0.002833608,-0.013420606,-0.027173406,0.018669259,0.0127960825,0.022256946,0.010437511,-0.00023814102,-0.01409828,0.019998033,0.0023602329,0.019745564,-0.0025877852,0.0076138685,-0.02345284,0.01050395,-0.017340487,0.009959153,-0.01779227,-0.009308054,0.015759246,0.010663402,-0.007600581,-0.021459682,-0.0017240829,0.02702724,0.0077666775,0.02217722,0.0005780162,-0.021260366,0.014191294,0.09466178,-0.015466916,-0.005394818,0.029498758,-0.0021376633,-0.03462782,-0.014789242,0.0029581806,0.009467507,-0.026243264,-0.0059695123,0.007195305,-0.0022472872,-0.008856271,0.018841999,0.008078939,-0.0060525606,0.003866729,0.014483624,-0.010537169,0.023333251,-0.019174192,-0.025446001,0.03545166,0.031731095,-0.041510865,0.02141982,0.025499152,-0.0005070099,-0.021167353,0.00031454544,0.0017739118,0.005624031,-0.014935407,-0.017646104,0.016981717,-0.008025788,0.0011726421,0.0039065923,-0.00558749,0.00880312,0.02141982,0.002841913,-0.019426659,0.002350267,-0.012490465,0.0064279386,0.054027904,-0.011473954,-0.008052364,0.013526908,-0.00092764955,-0.022150643,-0.021605847,0.0018353675,0.0056805043,-0.0069627697,0.005667216,-0.012895741,-0.060645193,-0.010191688,-0.029472182,0.0034714192,0.001079628,-0.004654027,-0.029977117,-0.003777037,-0.01187923,-0.0239312,0.012251286,0.014191294,-0.023001058,-0.021565983,-0.012649918,0.016463496,0.00039157274,0.03223603,-0.016808977,-0.008809764,0.0049762544,0.0029963828,-0.012370875,-0.015174586,-0.03856099,0.0024864662,0.008311475,0.005979478,0.013686361,-0.016755827,0.012204779,0.012523685,0.017911859,0.0044214916,-0.0035544673,0.020755433,0.019041315,0.005012796,-0.00038679747,0.018709121,-0.0077600335,-0.0024316544,-0.0006760132,-0.00783976,0.018589532,0.009560521,0.022722017,-0.0018768917,0.026190113,-0.0025728366,-0.017287334,0.02597751,-0.010610252,0.018390216,-0.016915279,0.0040095723,0.002737272,0.0060891015,0.011367652,0.00070258864,-0.017805556,-0.0011385923,-0.030508624,-0.0023353184,0.0056506065,0.0017573021,0.016330618,-0.021831738,-0.018841999,-0.02298777,0.0049563227,-0.021712149,0.024887916,-0.019121042,-0.019785428,-0.018709121,-0.007002633,-0.036009744,0.021539409,0.0060924236,-0.020091046,-0.012988755,0.00077151874,0.010344497,-0.019479811,0.016955141,-0.034176037,-0.010251483,-0.007919487,0.0029000468,-0.009872782,0.0058532446,0.0039896406,-0.019984744,-0.018456655,-0.010955732,-0.027425872,-0.003574399,-0.0068963314,0.033538226,0.035132755,0.026894363,-0.019639263,0.0003521248,-0.0004301902,-9.747795e-05,-0.0038933046,0.012211422,0.008039076,-0.026867788,-0.009122026,0.028648343,-0.015626369,0.023692021,-0.0031724453,0.024502572,0.026788061,0.009268191,0.0036175842,-0.004311868,-0.017885283,-0.007946062,-0.0079061985,-0.0033003397,0.0066704396,-0.026429292,-0.0009052265,0.02638943,0.009401068,-0.0040062503,-0.012058614,0.02615025,-0.010311278,0.029658211,0.018841999,-0.0067003374,-0.03218288,-0.01351362,-0.025193533,0.010278058,0.010145181,-0.005391496,-0.005497798,0.006059204,0.009115382,-0.00077567116,0.0014608196,0.0067202686,-0.0044281357,-0.008012501,-0.026229976,-0.006995989,-0.02673491,-0.006570782,-0.040022638,0.021605847,0.01626418,-0.014722804,0.05182214,-0.018523093,-0.012869165,0.024276681,-0.010098673,0.022775168,0.01760624,0.020409951,0.023545856,0.01201875,-0.028063683,0.016503358,0.0063349246,-0.010962376,0.029020399,0.024994217,-0.0079992125,-0.005790128,0.01573267,0.01684884,0.005188858,-0.046321023,0.009872782,-0.01138094,0.0015231059,-0.02446271,-0.009959153,-0.02814341,0.036089472,0.032554936,-0.011912449,-0.025446001,-0.020316938,-0.005351633,0.013739511,-0.0010588659,0.037790302,0.0028070328,-0.013234578,-0.00097581756,0.010769704,-0.0061655063,0.0022921332,-0.0049031717,0.023652157,-0.026881075,0.017274048,0.015121436,0.021193927,0.009786412,-0.012875809,0.0047204657,0.023187086,-0.0116466945,-0.025246685,0.0046606706,0.019054603,0.015108148,0.0050260834,-0.003876695,-0.0072285244,-0.014550063,-0.0181909,0.023386402,0.0013030278,0.004162381,-0.007959349,-0.0014342442,0.0031159725,-0.017579665,-0.0028136766,-0.025751619,-0.0053217355,-0.031252738,-0.014244446,-0.02234996,-0.019745564,0.0006079136,-0.0020845125,-0.0037338517,0.048473634,-0.04084648,0.0063448907,-0.014470337,0.016250892,-0.0011111863,-0.008198529,0.020901598,-0.035371933,0.012948892,-0.020463102,-0.024954354,-0.018283915,-0.0026259874,0.018443368,-0.01047073,-0.0044414233,-0.004949679,0.006202047,-0.01462979,-0.014855681,-0.04892542,0.0013345863,-0.003630872,-0.00665383,0.025034081,-0.031199588,0.004072689,-0.01172642,0.010643471,0.00204631,-0.026509019,0.005235365,-0.028090259,0.013633209,0.009354561,-0.022974484,-0.011752996,-0.0006265995,-0.025884496,-0.013885677,-0.0044447454,0.0077600335,0.014736091,0.015812397,0.015785823,-0.011121829,-0.008643667,-0.010623539,-0.024675312,-0.016636236,-0.027452448,-0.011659982,0.0070690718,0.013646497,0.025711754,-0.021300228,-0.027372722,0.0095339455,-0.01621103,-0.0014383966,0.007680307,0.015041709,0.013314304,0.014988558,0.01246389,0.0039796745,-0.00030229584,0.01597185,-0.0064578364,-0.012922316,0.01255026,-0.017938433,-0.017274048,-0.009553877,-0.011115185,-0.016184453,0.012762863,-0.009447576,0.010862718,0.006029307,-0.016516646,0.011194912,-0.0069428384,-0.0007727645,-0.00025184397,0.017991584,0.016822265,-0.040022638,0.003235562,0.024050789,-0.007009277,-0.0276119,0.014815818,0.0042886143,0.0032671203,0.030827532,0.008059007,-0.0051257415,0.017101306,-0.009195108,0.00040880527,-0.007607225,0.005766874,0.018164326,0.013061837,-0.021127488,-0.02556559,0.0019732278,0.00550112,-0.0014682941,0.006809961,0.007985925,0.012523685,-0.003574399,-0.030694654,-0.0062618423,0.022203796,-0.013553483,0.0022306775,-0.03274096,0.0115869,0.0068232487,-0.00746106,-0.027585326,-0.0026542237,-0.011786215,-0.0246886,0.0021443071,-0.005986122,-0.030402323,-0.013267797,-0.0072218804,-0.023652157,-0.0014251089,0.018988164,0.023957774,-0.008882847,0.0097266175,0.18932356,-0.018204188,0.01167327,0.014284308,-0.004258717,0.0128890965,0.025233397,0.0034614534,-0.008158665,0.015812397,-0.0069694137,0.0217653,-0.009394424,-0.005378208,-0.01843008,-0.012437314,-0.013819238,-0.009773125,-0.0035876867,0.012736288,0.009932578,-0.024329832,-0.022615714,-0.015838973,-0.00034963337,-0.010802924,-0.023386402,-0.0059429365,0.012158272,0.030614927,-0.0040295036,-0.030561777,-0.0015388851,-0.0037371737,-0.02580477,0.012370875,0.005135707,-0.01720761,0.021486258,0.010464086,-0.013394031,0.015161298,0.007773321,-0.005281872,-0.02217722,0.034202613,-0.031784248,0.015639657,-0.005178892,0.010703266,-0.031438768,0.010756416,0.0063913977,0.021260366,-0.019971456,0.007142154,0.02573833,0.028993824,0.003996284,0.022722017,-0.007414553,0.039677158,-0.027585326,0.012849234,-0.007387977,0.012430671,-0.009527301,0.010836143,0.008138734,0.0060425946,-0.0057535865,-0.001301367,-0.026641896,-0.015586506,-0.013208003,-0.020582693,0.021778587,0.013593347,0.0074743475,0.014829106,-0.015320751,-0.0019732278,-0.013673073,-0.017978298,-0.001961601,-0.031837396,-0.00557088,0.0055177296,-0.013898964,0.011925736,0.008158665,0.011028815,-0.00716873,-0.012430671,0.011925736,0.031491917,0.011394228,0.022788456,-0.028515466,0.001180947,-0.035239056,0.021140777,0.024874628,0.012211422,-0.007560718,-0.0010680011,-0.033299047,0.02814341,-0.010995596,-0.015533355,0.024622161,0.0014682941,0.008610448,-0.0029698075,-0.0072550997,0.022256946,0.004992864,-0.005248653,0.043557175,-0.030933833,-0.012762863,-0.0118393665,-0.0017091341,0.0050559808,-1.2457245e-06,-0.022708729,-0.035557963,0.01614459,-0.013739511,-0.030694654,0.029020399,-0.009932578,-0.012231355,-0.00077234925,0.011806147,0.0030163145,0.006949482,-0.0012889097,-0.01690199,-0.0028718105,-0.00469389,-0.0015471899,-0.012849234,0.012045326,0.0031774282,-0.0057535865,0.0053217355,0.0098262755,-0.0071820174,-0.0040793326,-0.025406137,-0.0027073747,-9.607651e-05,-0.026429292,0.008072295,-0.014217869,-0.018270627,-0.026721623,-0.020702282,-0.008105515,-0.01738035,0.035265632,0.005487832,-0.009793056,-0.023891335,0.0059994096,-0.17178376,-0.0032637983,0.009939221,-0.02357243,0.002508059,-0.0012997059,0.019346934,0.019081179,0.011201555,-0.0010862718,0.0011120168,-0.013327592,-0.027399296,0.0038999484,0.0010696622,0.013041906,-0.024263393,0.0020978001,0.016529934,0.00013246204,0.022070918,-0.019227343,0.008995792,-0.012264574,0.013779375,-0.016250892,-0.009088807,0.015453628,-0.0089625735,-0.005354955,-0.00909545,0.005687148,0.03943798,0.00734147,0.025180247,0.00014855266,-0.008371269,-0.022336671,-0.018935014,0.024303256,0.006510987,0.003873373,0.0092549035,-0.005637319,-0.007580649,-0.016064864,0.021672286,0.0038534414,0.05073255,-0.020157484,0.0082915425,-0.024382982,-0.0035046386,-0.0042354637,0.02439627,0.01772583,-0.01877556,0.010636827,0.0042819707,0.007387977,-0.017832132,-0.008444352,0.012563547,-0.030216295,-0.013819238,-0.00833805,-0.008989149,0.0128890965,-0.03207658,0.010171756,0.0034979945,-0.01292896,-0.001174303,-0.015799109,0.0066737616,0.0073082508,-0.032581512,0.009102094,-0.009759837,-0.0061621843,-0.006863112,0.018935014,-0.0044713207,-0.014961982,-0.012895741,0.02205763,-0.0022389824,-0.005929649,-0.0058100596,0.0013395691,0.007095647,-0.0436369,-0.008929354,-0.014722804,0.02673491,0.010058811,-0.006079136,-0.008816408,0.0106833335,-0.020091046,0.011208199,0.0011767945,-0.014961982,0.00094508973,0.032209456,0.0039896406,0.013267797,0.017367061,0.023585718,0.008318118,-0.008178597,-0.0019931593,-0.0024897882,0.018921725,-0.011101898,0.006716947,0.024542434,-0.02878122,0.0097266175,0.011334432,0.034016587,-0.011208199,-0.03622235,0.018403504,0.01021162,-0.0102979895,-0.08780531,-0.02925958,0.032129727,0.022575852,0.003424912,0.008357981,0.0011253045,0.008537366,-0.024276681,0.029153276,0.003376744,-0.03218288,0.0065375627,-8.268497e-05,0.0048234453,-0.024064077,-0.0063515343,-0.020024607,-0.019479811,0.016463496,0.020728856,-0.012822658,-0.0028884201,-0.010005659,-0.0027273062,0.03409631,-0.037125915,0.03539851,0.0095405895,-0.013898964,-0.0037571052,-0.0217653,-0.00813209,-0.024409559,-0.009035655,0.0030312631,-0.02415709,-0.008344694,0.013194715,-0.02649573,-0.01351362,0.02673491,-0.008557297,-0.021406531,0.01105539,-0.030163145,-0.022323385,0.017353773,0.006760132,-0.045842662,-0.024316544,-0.005590812,-0.017460076,0.0036607692,0.024808189,-0.013407318,0.01026477,0.0012033699,0.003428234,-0.014603214,-0.009407712,0.013912252,-0.007480991,0.02456901,0.009879426,-0.03457467,-0.054213934,-0.006152218,0.015227737,-0.013387387,-0.009055587,-0.003969709,-0.027744778,0.0066737616,-0.033192746,-0.0105571,-0.024236817,0.001277283,0.03287384,0.013128276,-0.007268388,-0.006517631,0.016476784,0.003976353,0.013314304,0.018084599,0.017061444,0.0050692684,0.025711754,0.0014350747,-0.009102094,0.018562958,0.0007827303,-0.013188071,0.0032272572,0.01084943,-0.005085878,-0.0066272547,0.011121829,-0.004992864,-0.020914884,-0.011221487,-0.07722828,0.015360614,0.0037836807,-0.003233901,-0.002790423,-0.014297596,0.0015554947,-0.009912645,-0.004820124,-0.0043849503,-0.012231355,-0.008211817,-0.010444155,-0.0017290657,-0.013420606,-0.029126702,0.030455474,0.011214843,-0.01550678,0.010278058,-0.007793253,0.015958562,0.046719655,0.008763257,-0.029684786,0.021964615,-0.0054612565,-0.015334039,-0.018496519,-0.008092226,0.00088280346,-0.012297793,-0.017048156,0.028621769,-0.008623736,-0.014204582,0.00871675,0.029020399,0.009195108,0.03292699,0.0039032702,-0.009560521,0.009673467,-0.0016543223,0.011746353,0.001542207,-0.0030312631,-0.002496432,0.030056842,0.009327985,0.018084599,0.022376535,-0.0026259874,0.0044314577,-0.005491154,0.003916558,0.014124855,0.019971456,-0.015998425,-0.0070358524,0.027479023,0.030056842,0.014603214,0.0012905707,0.0011709811,0.017646104,-0.014882256,0.003383388,0.011440734,-0.029339304,-0.010430867,0.0055575925,0.0076138685,0.016503358,-0.001906789,-0.0026592067,-0.018058022,1.3482373e-05,-0.007985925,0.0005281872,0.021433106,0.007799897,-0.01702158,0.0050227614,0.0035179262,0.01322129,-0.018509807,0.021884888,-0.009460863,0.007773321,-0.008085583,0.02504737,0.010005659,0.026296414,0.01726076,0.013021974,-0.015892124,-0.0024067399,0.023638869,0.026881075,0.02083516,-0.007879623,0.010856074,-0.017778981,-0.032767538,0.020197347,-0.025671892,-0.0202505,-0.0022339993,0.011068678,-0.001005715,0.020542828,-0.024276681,-7.2874886e-05,-0.025366275,0.0058100596,-0.0060625263,0.0011394228,-0.026256552,0.034149464,-0.012729644,0.012497108,0.008238392,-0.021313516,0.011281282,0.008318118,0.023426266,-0.027718201,0.012424027,-0.0076736636,0.0021609168,-0.0031458698,0.0014948695,-0.0043351217,-0.013148207,-0.018310491,-0.0061621843,-0.005095844,-0.016636236,0.0667044,0.0034083023,-0.0017307267,0.01621103,-0.011560324,0.0150948595,0.031040134,0.009932578,-0.019028028,-0.016875416,0.005032727,-0.0017373705,-0.0037836807,0.0034182682,-0.020489678,0.0031508526,0.0024250105,0.023293389,-0.023665445,0.016184453,0.02708039,-0.014510199,0.0034415217,0.0142311575,-0.026229976,0.0067302347,0.009321341,0.0029681465,0.012656562,-0.026894363,-0.007587293,0.0010223247,-0.062292874,-0.02415709,0.012669849,-0.015666232,-0.009819631,0.0015297497,-0.0032172913,0.011606831,0.018589532,0.011573612,-0.02147297,-0.008211817,-0.02819656,0.00019993879,0.014483624,-0.01690199,-0.01167327]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('419100ee-a5da-11ee-b807-a72287fb6c0d', 'Science & Education', 'this article is about climate change', '[0.014253585,0.0025197372,0.003738965,-0.023929376,-0.0027570804,0.013486284,-0.01758289,0.007692514,-0.0188834,-0.023747304,0.005923821,0.026530394,-0.017816981,0.015098916,0.010059441,0.0011550151,0.032200616,-0.0018142108,0.01559311,-0.010124467,-0.014500681,0.030900108,0.007646996,0.010787726,-0.011964688,-0.0034853655,0.024709681,-0.034411483,-0.0037812316,0.0016166959,0.015788186,0.004870408,-0.011457489,-0.035555933,-0.006970731,-0.018194128,0.0006307471,-0.015202956,0.010332548,-0.034567542,0.00747793,-0.0057970216,-0.0076600015,-0.005904313,-0.005559678,0.012784009,0.04060191,-0.01686761,0.0024417066,0.0137333805,0.025242891,0.034983706,-0.03126425,-0.021315351,-0.022524826,-0.016438441,-0.010026929,0.0077575394,0.00014772976,-0.024982788,-0.00852484,-0.0035764014,-0.022420784,0.013980478,-0.03134228,-0.010547132,-0.002901762,0.010982803,0.004938685,-0.009422191,0.02572408,0.017908016,0.017491853,-0.0016662779,0.026621431,0.0055986936,0.0072243307,0.01321968,0.00045558476,0.0068146703,0.002727819,-0.020899188,-0.023136064,0.00541012,0.027570803,-0.002243379,0.00023876542,-0.0007486058,0.0058457903,0.007861581,0.0045290245,0.0053125815,-0.0028448647,0.01490384,-0.03919736,0.024579631,0.0224598,0.014825809,0.024670666,-0.03683043,-0.0014354375,0.0031065922,0.0058490415,-0.016438441,-0.047234505,0.003156987,0.021328356,0.013824416,0.024111448,-0.029287476,-0.023136064,0.013889442,0.00047753085,-0.03948347,0.005400366,-0.0063789994,0.026192263,0.008414296,0.018831378,-0.024800718,0.029261464,0.010794229,-0.01492985,-0.013486284,0.0043144403,-0.0045875474,-0.0543613,-0.014825809,-0.014110529,-0.020938205,0.002726193,0.016607506,0.0031407306,0.011145367,-0.017322788,-0.0060018515,-0.0023035274,0.024436574,-0.028117016,-0.0005811652,-0.024683671,0.026621431,-0.040159736,-0.010722701,-0.0075559607,0.011314433,0.0018678568,0.029235454,0.008973516,0.017400818,0.01699766,-0.0005482461,0.028351108,0.018025063,0.017426828,0.010280528,0.0062261894,0.0039925645,-0.010091954,-0.016555486,0.0011070587,-0.024293518,0.01768693,0.0030789564,0.00065919576,0.02243379,0.023110054,-0.0035471397,0.014747778,0.0017475598,-0.022927983,0.028975353,-0.016139323,0.0209252,0.011821632,0.023721294,0.00951973,0.016542481,-0.0021149537,-0.022173688,-0.032018546,0.011886657,0.005735247,0.018701328,0.00043851556,-0.00019263798,0.013174162,-0.0037422162,0.024033416,0.0057970216,0.027700854,0.030405913,0.006070128,0.016581496,-0.6804266,-0.024800718,0.0055531757,0.016165333,-0.0069512236,0.013837421,0.025555013,0.008836962,-0.017166726,0.03391729,0.0026920547,-0.0017378059,-0.03142031,-0.0033683197,-0.0125044,-0.013655351,0.008355774,-0.030379903,0.032954913,0.0046720807,-0.020795148,0.017751956,0.011496505,0.004607055,0.014812804,0.018753348,0.007087777,-0.010456096,0.0012517405,-0.008245231,-0.011138865,0.015254977,0.00055271655,0.028143026,0.03142031,-0.0071137873,0.012692973,0.0183762,0.011906165,0.041538276,-0.033423096,-0.0062717074,0.0007786801,0.009617268,-0.006219687,-0.0011647688,0.028299088,-0.0045290245,0.022706896,0.004841147,0.015554095,-0.00063155993,0.0029716643,0.020808153,0.0096887965,0.009987913,0.0041258666,0.011704586,0.017855996,0.011503007,-0.010618661,0.020404994,-0.008895486,0.010052939,-0.0030058026,0.009792837,-0.038677156,0.024436574,0.0036121653,-0.022927983,-5.6694087e-05,-0.003322802,-0.011431479,0.010761716,0.0032919147,0.01694564,0.027284691,-0.024735691,0.0017004162,0.016594501,0.003259402,0.0027733366,-0.0067691524,-0.018766353,0.034749616,-0.029469546,0.0040998566,0.0005705986,-0.015762176,0.013154654,0.017426828,0.0077770473,-0.01490384,-0.007816062,0.0030334385,0.009389679,-0.0032041303,0.014526691,0.009903381,0.010891767,0.005813278,0.0020775641,0.025411956,0.0017134213,0.017999053,0.006717132,-0.008550851,0.020209918,0.010911276,-0.008882481,0.0071137873,-0.00055556145,-0.0311342,0.016815588,-0.023357151,-0.026257288,0.031030158,0.0017394315,0.0051597715,0.0029277722,0.008440307,0.003644678,-0.00156305,-0.012875045,-0.006821173,0.020457014,-0.025021804,-0.0061416565,-0.012452379,-0.042812776,0.0094417,-0.0033683197,0.012771004,-0.011398966,0.031862482,0.007464925,0.0069967415,0.006005103,0.011242905,0.0041258666,-0.019767744,-0.0096757915,-0.0051012486,-0.0053223353,-0.018311175,-0.00916209,-0.008277743,-0.006873193,-0.02314907,-0.008791445,-0.01360333,-0.005875052,0.006492794,0.03545189,-0.010209,0.007965621,0.007822565,-0.0011826509,-0.014162549,-0.016165333,0.0051467665,0.014981871,-0.021016235,-0.00018989471,-0.012153261,0.026309308,-0.013915452,0.008583363,-0.011411971,-0.02164048,0.0065610707,-0.016815588,0.009006029,-0.0031992535,0.008505332,0.004776121,-0.033215012,0.0057482524,0.0014541323,-0.0038560107,-0.0054914015,-0.020704113,-0.019468628,-0.0018792363,0.0063204765,-0.004142123,0.035659973,0.017751956,-0.012211785,0.025359936,0.0045420295,0.029521568,-0.00091442076,-0.0051565203,0.008199713,-0.024150463,-0.013863432,0.0005019154,0.025997186,0.011294926,0.0324087,0.00075226347,0.035555933,-0.008771937,0.025984181,-0.024774708,0.0038527595,-0.0051142536,0.02036598,0.003080582,0.03259077,-0.013642346,-0.027934946,-0.02710262,-0.010683686,0.0015126552,-0.008199713,-0.006362743,-0.024176473,-0.028273078,-0.013109136,-0.007907098,0.012133754,0.0058327853,-0.01115187,0.03813094,0.0006437522,0.014695758,0.0019475131,-0.022134673,-0.0017751956,-0.001097305,-0.0035503912,0.016074298,-0.0031130947,0.02580211,0.023162074,-0.0135253,0.016503466,0.0070552644,0.00456804,0.021575453,0.02036598,-0.00987737,0.026374334,-0.0059303236,0.027258681,0.0026611676,-0.0033748222,0.013089629,-0.01508591,-0.0028156033,-0.0086548915,0.012823024,0.004477004,-0.012003703,0.014058508,-0.0038397545,0.016841598,0.014773789,0.0150078805,0.01288805,-0.0096757915,-0.010950291,0.024956778,-0.015411038,-0.015424043,-0.0137073705,-0.0056799753,-0.010891767,-0.02378632,0.00044705017,-0.003187874,-0.03248673,-0.00044583093,0.019871786,0.007848575,-0.009896878,0.0027229418,0.015228967,0.012055724,-0.014201565,0.0021344614,0.019130496,-0.011977693,-0.025555013,-0.0063692457,-0.00051654613,-0.017140716,0.004821639,0.0018954927,0.01967671,0.009818847,0.004129118,0.0012501148,-0.013310716,0.02095121,-0.004535527,0.012458881,0.011262413,-0.003259402,-0.00079493644,0.02039199,0.0048346445,0.020769138,0.0067106294,0.013395248,-0.00441523,0.0027700854,-0.001768693,0.015541089,-0.024176473,-0.0066423523,0.005842539,-0.0062587024,0.0023214095,0.0061384053,-0.004857403,0.013876437,0.0044932603,0.0183762,-0.0027847162,-0.033189002,0.011307931,0.10997109,-0.0011997201,-0.013037608,0.024722686,0.009617268,-0.036258206,-0.0224598,-0.0068536852,0.0074909353,-0.037272602,-0.0089995265,0.010195995,0.000828262,-0.01972873,0.015437049,0.020326965,-0.012211785,0.00054418197,0.0081672,0.0012720609,0.010378066,-0.029573588,-0.0077575394,0.047962792,0.030640006,-0.009279136,0.023695285,0.020418,0.005494653,0.00492568,0.0004259169,0.0040803486,-0.0032350174,-0.014305606,-0.007855077,0.02447559,-0.013993483,-0.02636133,0.007230833,-0.007133295,0.0100074215,0.0071723103,0.0035211297,-0.022680886,0.0045127682,-0.00780956,0.003891775,0.045387782,-0.00038588556,-0.015372023,0.0143706305,-0.009604263,-0.043072876,-0.014500681,0.007217828,0.0064277686,0.010521122,0.009532735,0.0047078445,-0.028038986,-0.026231278,-0.03014581,-0.016165333,-0.008570358,0.0006819547,-0.012927065,0.009630273,-0.010579646,-0.025320921,0.018441226,0.009942396,-0.04598602,-0.025203874,-0.0051695253,0.0034983708,-0.008160697,0.018116098,-0.02171851,-0.01013097,-0.0003698324,-0.0029342747,-0.0018954927,-0.0045062657,-0.02651739,0.013863432,0.0019946566,-0.001428122,-0.0036771907,-0.020326965,0.017882006,0.008849967,0.0150208855,0.008901988,0.0060018515,0.005380858,0.02100323,0.011158372,0.00025400578,-0.0010834871,-0.025646048,0.008661394,-0.0083752815,-0.0075039403,0.016724553,-0.0050134645,0.009337659,0.00913608,0.010618661,0.0034105864,-0.019988831,0.041122112,-0.0058067753,0.014695758,-0.017504858,-0.007822565,0.0014549451,0.021341361,0.0006510676,0.0064050094,-0.0035796526,0.024579631,-0.041668326,0.013642346,0.015241972,0.0090255365,0.0059888465,-0.011450986,-0.018753348,-0.02707661,0.0008534594,-0.01697165,0.0077705444,-0.0068081673,-0.014110529,-0.019130496,-0.013180665,-0.018558271,0.018792363,-0.0150599005,-0.014682753,-0.01628238,-0.012244297,0.010969798,-0.0028042237,0.034879666,-0.030301873,-0.007933108,-0.018597286,0.0059140674,-0.017231751,-0.014201565,-0.017595895,-0.019793756,-0.010761716,-0.013128644,-0.030041771,0.009571751,0.004805383,0.023279121,0.019715725,0.02848116,-0.038729176,0.0086678965,0.0017751956,-0.012471886,-0.011763109,0.011724094,0.011470494,-0.04322894,-0.0142926,0.023851344,-0.011795621,0.011470494,-0.015905231,0.018467236,0.023370156,0.030405913,-0.010287031,-0.0071463,-0.025320921,-0.008095672,0.01324569,0.0014167426,0.015411038,-0.0265434,-0.0059725903,0.03815695,0.011743601,0.0149948755,-0.022446794,0.03506174,0.001101369,0.01694564,0.010378066,-0.0066651115,-0.04065393,-0.024137458,-0.022147678,0.012133754,0.02567206,-0.006492794,-0.009279136,-0.016776573,0.006658609,-0.0075039403,-0.005468643,0.0024872245,-0.0025083579,0.008544348,-0.017140716,0.027674843,-0.022888968,-0.0017833237,-0.031602383,0.037428666,0.0020076616,-0.03662235,0.051058006,-0.012218287,-0.018597286,0.023162074,-0.0062164357,0.018727338,0.014591717,0.029027373,0.012920562,-0.0017182983,-0.034411483,0.026816508,-0.0023035274,-0.011112854,0.025815114,0.011086844,-0.0024660912,-0.010768219,0.0012387354,0.023357151,0.019611685,-0.0285852,0.013590325,0.00052995764,-0.0011086843,-0.018805368,-0.021848561,-0.01959868,0.016191345,0.01630839,-0.007725027,-0.00712029,-0.033579156,0.0001630717,0.01490384,-0.008641886,0.031810462,-0.0016101934,0.0033975812,0.005992098,0.0033390583,-0.011503007,0.006291215,-0.0067496444,0.020092873,-0.02447559,0.008271241,0.0086939065,-0.011268916,0.0069382186,-0.0025571268,-0.010456096,0.024436574,-0.0061676665,-0.005019967,0.0041713845,0.014110529,0.005364602,-0.0010339051,-0.00033244275,-0.011925672,-0.025463978,-0.020808153,0.02636133,0.005784016,-0.010495112,0.004418481,0.0024823477,-0.0031667408,-0.022615861,-0.013928457,-0.019962821,0.003966554,-0.017491853,-0.012159765,-0.0071137873,-0.008921496,0.0031667408,-0.00096156425,-0.011984196,0.056442115,-0.035894062,0.010560137,0.0017296777,-0.0019979079,0.0055499244,0.0071853152,0.0080436515,-0.023916371,0.0130311055,-0.005319084,-0.03815695,-0.013024603,-0.009077556,0.025789104,-0.015814196,-0.01186715,-0.015515079,-8.4736326e-05,-0.020795148,-0.017751956,-0.04088802,0.019104484,-0.01150951,-0.0096757915,0.039925642,-0.013863432,-0.0021637229,0.002279143,0.0064830403,-0.0068406803,-0.011216895,-0.006326979,-0.013811411,0.036388256,0.01357732,-0.01355131,-0.0015597986,-0.011249407,-0.016399426,-0.021861566,-0.0076534986,0.0027424495,0.010729204,0.013356233,-0.004997208,-0.0137073705,-0.01492985,-0.023214096,-0.038833216,-0.0069642286,-0.04606405,-0.008050154,0.0137203755,0.010469102,0.025945166,-0.007133295,-0.0380269,0.0022661379,-0.023292126,-0.0074714273,0.014747778,0.00678866,-0.005153269,0.009773329,0.0068081673,0.003774729,-0.0032886635,0.019949816,-0.019247541,-0.004733855,-0.0005807588,-0.018116098,-0.015632125,0.017764961,-0.0034821143,0.0018272159,0.0250088,-0.0068081673,-0.008394789,0.009961903,-0.016958645,0.008934501,-0.0054296274,-0.003327679,-0.005413371,0.023500208,0.011529017,-0.04616809,0.00068439316,0.019286556,-0.005091495,-0.024436574,0.01321968,0.001567114,-0.014019493,0.026790496,-0.012933567,-0.021809544,-0.0006884572,-0.014812804,-0.00068073545,-0.007562463,0.012270308,0.027362721,0.0010948664,-0.018142108,-0.005351597,0.004356707,0.008238728,-0.0015549217,0.014409645,0.0030123054,0.023604248,-0.0150468955,-0.031654403,-0.0017621905,0.010592651,-0.014136539,-0.010332548,-0.017999053,0.004961444,0.009623771,-0.019351583,-0.019377593,-0.009968406,-0.026010191,-0.01056664,-0.009363669,0.011574535,-0.038599122,-0.008817455,-0.013297711,-0.032850873,-0.0132717,0.0130571155,0.017478848,-0.017387813,-0.0034105864,0.18997844,-0.02363026,0.0045062657,0.015176946,0.0068536852,0.011008813,0.01620435,-0.0060766307,-0.014500681,0.0028464904,0.002306779,0.026686456,-0.0064537786,0.00019263798,-0.018090088,-0.0065123015,-0.038781196,0.0063822507,-0.014682753,0.012842532,0.020183908,-0.022537831,-0.019819766,-0.024007406,0.015788186,-0.019715725,-0.0143836355,0.005904313,0.009370171,0.017205741,-0.0072113257,-0.012205282,-0.013616335,0.010618661,-0.016633518,0.0017605649,0.009461207,-0.031056168,0.013811411,0.021874571,-0.0072373357,0.024605641,0.0126864705,-0.0037584726,-0.016373415,0.02983369,-0.020079868,0.012614943,-0.010078949,0.010365061,-0.026114231,0.0061188973,-0.0011842765,0.025346931,-0.014617727,0.004831393,0.021939596,0.019156506,0.0015996267,0.003690196,-0.0046590753,0.030483944,-0.002575009,0.01758289,-0.008537846,0.014747778,-0.031004148,0.018441226,-0.0029424028,0.0055239145,-0.010111461,-0.0051110024,-0.02312306,-0.008277743,-0.007243838,-0.020418,0.0250088,0.029469546,0.020079868,0.018233145,-0.021094264,0.011138865,-0.003139105,-0.026920548,-0.012784009,-0.04603804,0.0026871779,-0.0031130947,-0.03399532,0.006291215,0.012660461,0.008713414,-0.011112854,0.010859255,0.0074974378,0.03800089,-0.0029797924,0.021965606,-0.014058508,0.0060343645,-0.02715464,0.03370921,0.010248016,0.017374808,-0.005826283,0.0083752815,-0.021926591,0.030952128,-0.015658135,-0.015827201,0.01559311,0.00053442817,0.009337659,-0.0018077083,-0.017491853,0.025906151,0.019923806,-0.0035568937,0.02585413,-0.037506696,0.004106359,-0.011320936,-0.00016784701,0.0012883173,0.0006774842,-0.012166267,-0.016113313,0.021185301,-0.019975826,-0.026972568,0.039093316,-0.0074909353,-0.012029713,0.0028318595,-0.0063204765,0.021445403,0.020769138,-0.010982803,-0.0045517837,0.007107285,-0.007562463,-0.010729204,-0.012517405,0.01120389,0.0004917552,-0.006268456,0.033397086,0.004776121,-0.018207135,0.0045615374,-0.01978075,0.008394789,-0.0017361803,-0.019962821,0.006596835,-0.011476997,-0.027284691,-0.035529923,-0.005273566,0.005068736,-0.014461666,0.031082178,0.0011623304,-0.004272174,-0.011620053,0.013226182,-0.16636118,-0.01219878,0.016906625,-0.022563841,-0.0020255437,0.009805842,0.011249407,0.0068666902,0.0048606545,-0.0028123518,0.009805842,-0.0050297207,-0.020222923,0.022121668,0.002562004,-0.0043794657,-0.027856914,0.007822565,0.0028107262,-0.0132717,0.008290748,-0.023253111,0.006161164,-0.019494638,0.015879221,-0.006053872,-0.008739424,0.014864824,0.0029131414,-0.014136539,-0.013954467,0.0072048227,0.038521092,0.014981871,0.009123075,0.004473753,-0.008986521,-0.02026194,-0.017751956,0.028871313,0.017166726,-0.0012484891,0.006027862,-0.004447743,-0.013297711,-0.016113313,0.013187167,0.006044118,0.036232196,-0.0064960453,0.008225723,-0.017842991,-0.0022368764,-0.016568491,0.03131627,0.017114706,-0.012205282,0.010508117,-0.005023218,0.0006953662,-0.013590325,-0.00951973,0.014058508,-0.01018299,-0.0045322757,-0.009389679,0.00016591657,0.0075039403,-0.015111921,0.016880615,0.00089084904,-0.021393383,-0.011476997,-0.008700409,-0.0021442152,-0.0143836355,-0.03386527,-0.0011436356,0.00050719874,0.0044705016,-0.006801665,0.038234983,-0.02036598,0.012179272,-0.0077185244,0.008941003,-0.014552702,-0.012426369,-0.011294926,0.011249407,0.005224797,-0.0446595,-0.026712466,-0.0216925,0.005247556,0.004437989,0.0014061759,-0.012419866,0.015996268,-0.014721768,0.0014045503,-0.0027099368,-0.008459815,-0.0030643255,0.021016235,0.0068796957,0.013499289,0.00576776,0.029157424,0.009636776,-0.008609373,0.005289823,-0.0083622765,0.002592891,-0.0050882436,-0.012692973,0.024891753,-0.027986966,-0.0064407736,0.005234551,0.020990225,0.004190892,-0.01355131,0.005484899,0.020092873,-0.013538305,-0.09524932,-0.007842072,0.026946558,0.024579631,-0.0040218257,0.0030074283,0.0043144403,0.024514604,-0.037376646,0.023825334,-0.0061806715,-0.022238713,0.016048288,0.0027245674,0.01186715,-0.018805368,-0.024007406,-0.024020411,-0.03937943,0.02452761,0.023903366,-0.022498814,0.0013281454,-0.014578712,-0.008641886,0.027258681,-0.029729648,0.038313013,0.0024433322,-0.00053402176,0.0019800258,-0.019247541,-0.0004620873,-0.029339496,-0.0031764945,-0.003999067,-0.026816508,-0.023058034,0.016243365,-0.032252636,-0.0040673437,0.0020921947,0.0027457008,-0.040315796,0.01691963,-0.037272602,-0.011034824,0.014123534,-0.0012054098,-0.043385,-0.019416608,-0.007542955,-0.003044818,0.013395248,0.015241972,-0.014097524,0.013902447,0.009636776,-0.010768219,0.0076144836,0.0051922845,-0.0021198306,-0.020079868,0.03537386,0.020274945,-0.03539987,-0.044087272,0.01087226,0.00877844,-0.012387354,-0.00954574,-0.00011572503,-0.020274945,0.015957253,-0.02975566,0.0038527595,-0.024384554,0.0034528528,0.021068254,0.0052085407,-0.013967473,-0.014786794,0.007061767,-0.0075949756,0.0033195505,0.005094746,0.018610291,0.00079818774,0.010111461,0.0041388716,-0.005709237,0.022420784,0.01191917,-0.001970272,-0.004639568,0.008576861,-0.018467236,-0.012601937,0.015866216,0.007061767,-0.01018299,-0.01492985,-0.06736639,0.018129103,-0.0010265898,-0.0033780737,0.008941003,-0.009506725,0.0068666902,-0.0040510874,-0.009454705,0.00489967,-0.015241972,0.016659528,-0.007152803,-0.008037149,-0.0072698486,-0.018701328,0.029417526,0.00808917,0.0047988803,0.015202956,2.5845087e-05,-0.011138865,0.038703166,0.013128644,-0.017296776,0.0122508,-0.005341843,0.014318611,0.0012411738,0.010937286,-0.004226656,-0.01424058,-0.0054068686,0.008602871,-0.005813278,-0.00018318897,0.022849953,0.027466761,0.014305606,0.039639533,0.012842532,-0.009454705,0.0150468955,-0.007074772,0.0020775641,0.01054063,-0.02108126,0.00985136,0.02988571,0.0006628535,0.037220582,0.023240106,-0.0030870845,-0.005839288,0.00016987906,-0.011600546,0.0066781165,0.024917763,-0.013499289,-0.010787726,0.02113328,0.029105404,0.014942855,0.004486758,-0.003667437,0.015775181,-0.025945166,0.0020564308,0.0070097465,-0.035503913,-0.0073283715,0.0004539591,0.008355774,0.020847168,-0.009669289,0.0008859721,-0.013993483,0.006671614,-0.0044087274,0.0031374793,0.0067561474,0.029677628,-0.021679495,0.018415214,-0.015723161,0.011073839,-0.008752429,0.010339051,-0.005663719,0.011099849,0.002981418,0.017908016,0.0010078949,0.014422651,0.0136683555,0.014422651,-0.0011281921,-0.013642346,0.009955401,0.02718065,0.011600546,-0.005140264,0.0022547585,-0.018155113,-0.035998106,0.015983263,-0.014851819,-0.029079394,-0.010878762,0.003327679,-0.017999053,0.007952616,-0.00065716374,0.0048151365,-0.025021804,0.027622823,-0.009734314,0.017335793,-0.036336236,0.023214096,-0.024683671,-0.009994416,0.010742209,-0.0026839266,0.01753087,0.016841598,0.0130441105,-0.013980478,0.01909148,-0.015749171,0.014279595,0.025398951,-0.009383176,-0.019507643,-0.0045777936,-0.03116021,0.0017459341,-0.013993483,-0.016958645,0.053528972,0.009415689,0.0023165327,0.018493246,0.0030285616,0.029989751,0.014591717,0.02383834,-0.014019493,-0.021406388,0.003940544,0.00041941434,-0.023591243,-0.021211311,-0.020769138,0.005962836,0.010248016,0.019000445,-0.015072905,0.024709681,0.036336236,-0.0010623537,0.009532735,0.017309783,-0.023006015,-0.022160683,0.012348338,-0.013408254,-0.0024417066,-0.00712029,-0.012510902,0.0030789564,-0.06086385,-0.01255642,0.022628866,-0.017244756,-0.0040185745,-0.0065155528,-0.004028328,0.012263805,0.0035926576,0.0069772336,-0.025242891,-0.017244756,-0.029235454,-0.000492568,0.017595895,-0.036986493,-0.025971176]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('419e6856-a5da-11ee-b807-e36b3be6fb3f', 'Science & Education', 'this article is about school', '[0.015521236,0.013726262,-0.0013973732,-0.034896385,-0.017395398,0.015824797,-0.019097982,0.005830362,-0.004672209,-0.022067606,0.0019879984,0.029273896,-0.015362856,0.0059524467,0.0068697305,-0.0041739717,0.032969426,-0.006186717,0.0029531263,-0.002900333,-0.013105941,0.021196518,0.0037417265,0.003547051,-0.012314041,0.0029118815,0.023875779,-0.030092191,-0.005665383,0.006054734,0.015930384,0.0056389864,-0.016709086,-0.034157276,-0.0043191533,-0.007886002,-0.0020044963,-0.008176365,0.010340891,-0.00931802,0.020932551,0.0058369613,-0.005157247,-0.0006050609,-0.004576521,-0.00026211058,0.01643192,-0.0072062877,-0.012446024,0.011878497,0.019718304,0.025274802,-0.040862028,-0.013633874,-0.01690706,-0.028270822,0.002890434,0.019942677,0.0004772021,-0.030831298,-0.006440785,-0.003880309,-0.03801119,0.016141556,-0.025063628,0.007292077,-0.009588586,0.0017256816,-0.005949147,-0.007483453,0.025142819,0.016167954,0.014043023,0.0032599873,0.026911395,0.0068697305,0.0042366637,0.0058171637,0.016484713,-0.0031296539,-0.014043023,-0.025406783,-0.03384052,0.0020572897,0.021394493,-0.0072722794,0.014293791,0.016075565,0.010789635,-0.002101834,0.011766311,0.015336459,-0.0062296116,-0.0015607025,-0.03215113,0.036163423,0.009542393,0.035107557,0.009581987,-0.024192538,-0.0009040856,0.015151682,-0.0034249665,-0.013237924,-0.03996454,0.004781095,0.0106774485,0.0047217025,0.021552872,-0.040862028,-0.031966355,0.011007407,0.0012101218,-0.03516035,-0.0008331445,-0.00458312,0.022965094,0.0047513987,0.020655386,-0.02157927,0.024377314,0.010565263,0.007516449,-0.014782129,0.016893862,0.0039858953,-0.04447837,-0.003886908,-0.014795328,-0.015983177,0.008288551,0.0035833465,0.009628181,0.013224727,-0.00205399,-0.018160902,0.0017949728,0.026792608,-0.028165236,-0.017039044,-0.00014549097,0.02031223,-0.032098338,-0.03286384,-0.009496198,0.025631156,0.012201856,0.025419982,0.009944941,0.030144984,0.014623749,-0.0034051691,0.021236112,0.00053082034,0.01833248,0.0029811726,0.008922071,0.007958593,-0.0025142818,-0.0066420594,-0.0041508744,-0.019573122,0.018213695,-0.012848574,0.0026809108,0.03207194,0.01880762,0.005025264,0.019863486,0.004629314,-0.031966355,0.027610905,-0.03452683,0.008229159,0.0121226655,0.0032269915,0.018226894,-0.0021628763,-0.01595678,0.0048866817,-0.030646522,0.005081357,0.01880762,0.03365574,-0.01327092,0.011799307,0.015864393,0.011799307,0.017487787,0.0022074205,0.030039398,0.020417815,0.0017966226,0.009964739,-0.6846238,-0.026436254,0.00813677,0.014254196,-0.009575388,0.01603597,0.029194705,0.004094782,-0.007325073,0.016854268,-0.0062065143,-0.0051242514,-0.019256363,0.0015037847,-0.006117426,-0.012545012,-0.0021282306,-0.02394177,0.02574994,-0.005064859,-0.030514538,0.02165846,-0.003665836,0.0016869114,0.019058388,0.03183437,0.016497912,-0.00750325,0.012947561,-0.018266488,-0.007984989,0.013990229,0.0032203924,0.029801829,0.030013,0.017474588,-0.0010063726,0.027267748,0.009885549,0.035978645,-0.027478922,-0.0019418042,0.008783489,0.013871444,-0.016260343,0.0017108335,0.020813765,-0.0027485522,0.028138839,-0.00013662333,0.014887716,-0.009106847,0.010116519,0.003698832,0.009351016,2.678333e-05,0.004401643,0.016181152,0.017091837,-0.0014155208,-0.008915472,0.021077732,-0.0044676345,0.018504059,0.006510076,-0.0005110228,-0.022318374,0.015903987,0.0025489274,-0.015059294,0.0076748286,-0.00039656856,-0.013336912,0.027927665,0.0012818878,0.024364116,0.007918998,-0.02337424,-0.006922524,0.018583247,0.0015829747,0.006889528,-0.009139843,-0.022608738,0.035661887,-0.02790127,-0.0049031796,0.0050054663,0.0016085464,0.010241903,0.008750493,0.005325526,-0.001255491,-0.004856985,0.0029828225,0.00068095134,-0.006028337,-4.2482123e-05,0.012657198,0.014914112,0.0037912203,-0.0066750553,0.022859506,0.0029795228,0.0016176202,0.026568238,0.004137676,0.025472775,0.013977031,-0.01928276,0.005157247,0.0027765986,-0.031385627,0.025499173,-0.014940509,-0.03120085,0.0071402965,0.0009527544,0.015903987,0.011739914,-0.0008834632,-0.013818651,-0.0065463716,-0.0038143173,-0.012756186,0.014768931,-0.028719565,0.0013561284,-0.023691002,-0.03545071,0.012848574,-0.011073398,0.005081357,0.0016522659,0.03674415,0.007866205,-0.00095192954,-0.00032191552,0.017355803,0.0017883737,-0.01903199,-0.009515995,0.002489535,-0.0022635136,-0.016841069,-0.0096479785,-0.012056674,-0.004140976,-0.014504964,-0.0014575905,-0.012670397,0.0022189692,0.0041112797,0.022384366,-0.00584356,0.005157247,0.0025423283,0.013884643,-0.0028541388,0.0067344476,0.0067971395,0.011310969,-0.031253643,0.00845353,-0.009733768,0.011561736,-0.008420534,0.009080451,-0.013138937,-0.024311323,0.013726262,0.00041182913,0.018794421,-0.00035779848,0.012492219,0.00076467823,-0.02346663,0.026819006,0.0021793742,-0.008829682,-0.012228252,-0.024007762,-0.03135923,0.010030731,0.004216866,-0.002624818,0.02622508,0.0053915177,-0.01019571,0.0075494447,0.0015549283,0.026013907,-0.009581987,-0.00087356445,-0.0009205835,-0.022014813,-0.010004334,-0.0006524924,0.021381294,0.021196518,0.026766213,0.0018065213,0.037113704,-0.009014459,0.0073118745,-0.029775431,0.0015969978,-0.019784296,0.018160902,-0.000233033,0.018741628,-0.0064440845,-0.027135765,-0.01692026,-0.0024680877,0.0055202013,-0.016313136,-0.015032898,-0.025406783,-0.01524407,-0.015257269,-0.015230873,0.0059227506,0.017052243,-0.0014369681,0.03964778,0.011858699,0.0089814635,-0.017355803,-0.036057837,-0.004883382,-0.002938278,-0.0046821074,0.020483807,0.0058798557,0.03663856,0.029960208,-0.008321547,0.030118588,0.009654578,0.0041607735,0.026687022,0.009931743,-0.008341344,0.026370263,-0.023493027,0.010651052,-0.0014831623,-0.008842881,-0.0022173193,-0.018913206,0.00018096148,-0.015758805,0.014808525,0.004946074,-0.011086597,0.014636948,0.0050450615,0.0040881825,0.022476755,0.0036130426,0.009390611,0.0021711253,-0.014069419,0.011014006,-0.0033012321,-0.008809885,-0.025499173,-0.01595678,-0.027716491,-0.024641281,0.0030471643,-0.0018675636,-0.014900914,0.005675282,0.002654514,-0.0041838703,0.0015400801,0.006180118,0.02354582,-0.0026050203,-0.019586321,-0.0027864974,0.03294303,-0.006510076,-0.017883737,0.00074529316,-0.0039528995,-0.015072492,0.0071864906,0.010400284,0.024298124,0.010261701,-0.00016456668,-0.016656293,-0.017883737,0.02101174,0.015903987,0.0059854425,0.013594279,0.0021117327,-0.009859152,0.014557757,0.006315401,0.020813765,-0.012775983,0.0029795228,-0.017989323,0.0025159316,-0.013805453,0.009819557,-0.0017372301,-0.0053057284,0.011825703,0.012446024,-0.0037087307,-0.0053354246,0.0110602,0.024839256,-0.0038275155,0.007127098,-0.0072986763,-0.025987512,0.019177172,0.10563943,-0.0035668486,-0.009370814,0.026660625,-0.0016035971,-0.03745686,-0.018424869,-0.00022519649,0.0056455852,-0.01864924,-0.0044214404,-0.00410798,-0.002037492,-0.0115089435,0.018530454,0.014095816,-0.01564002,0.0035965447,0.0106048575,-0.01391104,0.021064535,-0.026502246,-0.010558664,0.027584508,0.03650658,-0.026251478,0.021104129,0.024905248,-0.008572315,-0.016247144,-0.0023047584,0.005190243,0.00034356903,-0.018820819,-0.016313136,0.026990583,-0.0018923105,-0.005556497,-0.0029729237,0.004094782,0.02069498,0.028561186,0.0044049425,-0.018741628,0.009997735,-0.012921165,0.0040089926,0.04038689,-0.0033820719,-0.012017079,0.009674376,-0.0011482547,-0.021473682,-0.024218936,0.0023262056,-0.007457056,0.0055597965,0.019361949,-0.006496878,-0.031781577,-0.021592468,-0.030593729,0.007641833,-0.0027848475,-0.002600071,-0.030276967,0.0038539122,-0.007688027,-0.019388346,0.020365022,0.006816937,-0.036453787,-0.032283112,-0.007285478,0.016577102,-0.0013652022,0.026673824,-0.011165787,-0.024469703,0.01652431,-0.013297317,-0.010657651,-0.016656293,-0.043660074,0.014386179,0.006922524,0.0027914466,0.016207548,-0.011568336,0.0021480282,0.017566977,0.033470962,0.0013330313,-0.0038044185,0.00019096333,0.0087636905,0.008103774,0.0027386534,0.0048767827,-0.02512962,-0.0038143173,-0.007575841,-0.0068565323,0.012940962,0.008961665,0.008915472,-0.0072392835,0.021935623,-0.00450393,-0.008512923,0.033206996,-0.00465901,0.010558664,0.0061504217,0.0031807974,0.01612836,0.0024235433,0.021526476,0.0086383065,-0.015534434,0.011561736,-0.032731857,0.009496198,0.012366835,-0.008869277,0.010657651,-0.014623749,-0.032995824,-0.024469703,-0.004560023,-0.015996376,0.017646167,-0.028561186,-0.021500079,-0.017289812,-0.021434087,-0.031095264,0.02047061,0.0006661032,-0.021948822,-0.0065034768,0.0011334065,0.008559117,-0.020008668,0.01754058,-0.032758255,-0.010730242,-0.026515445,-0.0014039723,-0.009839355,0.008994661,-0.0034744602,-0.0108226305,-0.014570956,-0.0030059195,-0.024773264,-0.0072260853,0.008915472,0.033682138,0.04331692,0.032415096,-0.028191632,-0.008875877,-0.0012447675,-0.01240643,0.0071600936,-0.004929576,0.0095225945,-0.026357064,-0.005658784,0.03761524,-0.0150065,0.01880762,-0.009027657,0.009047455,0.026502246,0.038591914,-0.00663546,-0.0037120301,-0.016656293,-0.0022305178,0.015072492,-0.0055103027,0.01761977,-0.027294146,0.0019137578,0.021645261,0.008394138,-0.004787694,-0.0108226305,0.02235797,-0.019018793,0.01524407,0.0068235365,-0.007569242,-0.047751557,-0.012036877,-0.026264675,0.011574935,0.030672917,0.0040584863,-0.006117426,-0.003728528,-0.006407789,-0.007074305,-0.010472874,0.0048074913,-0.016339531,-0.010294697,-0.004962572,0.013594279,-0.019322354,-0.0060019405,-0.023427036,0.024522496,0.010030731,-0.028138839,0.050787173,-0.009872351,-0.029379481,0.028429203,-0.010710444,0.018226894,0.009034256,0.019190371,0.016260343,0.017355803,-0.021671657,0.02782208,0.013482094,-0.012611004,0.022094004,0.0229123,0.0029910714,-0.002124931,0.018622844,0.028508391,0.0054377117,-0.033233393,0.027162163,-0.0050582597,-0.009027657,-0.020879757,-0.011654125,-0.0292211,0.023440233,0.027795682,-0.0039463006,-0.015376054,-0.024377314,-0.0030933586,0.015706012,0.0021661757,0.032969426,0.0025423283,-0.0041772714,0.0010451428,0.0095225945,-0.005404716,0.0069423215,0.002402096,0.028481996,-0.03167599,0.01193129,0.011977484,0.0072986763,0.0077408203,0.006757545,-0.01129777,0.026423056,-0.019071586,-0.015679615,-0.008578914,0.025776338,0.000300262,0.0075956387,0.0032368903,-0.013468895,-0.02307068,-0.023255456,0.018834015,0.005401416,-0.0010616407,0.009377413,-0.0070809037,-0.0026611132,-0.009390611,-0.014636948,-0.018952802,-0.010228706,-0.028666772,-0.02520881,-0.01785734,-0.01825329,-0.004853686,-0.0071732923,-0.0018312682,0.045085493,-0.04416161,-0.002710607,-0.018860413,0.012676995,-0.008202761,-0.002260214,0.011178985,-0.03782641,0.025010835,-0.012868371,-0.020127453,-0.018306084,-0.005401416,0.022265581,-0.0088362815,-0.015824797,-0.0043554488,-0.0059524467,-0.014122212,-0.014980104,-0.051975023,-0.0010014232,-0.013396304,-0.016656293,0.015837995,-0.025076827,-0.0052826316,-0.0024466403,0.011640927,-0.005807265,-0.028112441,-0.0023921973,-0.022780316,0.024100149,0.00068095134,-0.0052892305,-0.0131323375,0.00056835305,-0.018187298,-0.015903987,-0.010578461,-0.021077732,0.007971791,-0.011119593,-0.0029085819,0.0014122212,-0.015481641,-0.007252482,-0.023427036,-0.019348752,-0.028376408,-0.014254196,0.02156607,0.01571921,0.022938697,-0.021196518,-0.02322906,0.0013173582,-0.023730597,-0.0015887489,0.013264321,0.020998543,0.0049823695,0.013501891,-0.00085211714,-0.016181152,-0.0056983787,0.0035932453,-0.022648333,0.0039957943,0.011898294,-0.010459676,-0.016049169,0.0028310416,-0.0032170927,0.0004994743,0.025789537,-0.016339531,0.0014542909,0.00077375205,-0.020246238,0.01627354,0.0072788787,-0.0028640374,0.00048957556,0.016062368,0.018424869,-0.028508391,0.005737974,0.023083879,-0.02031223,-0.020497005,0.008955067,-0.0043323515,-0.0010368938,0.034342054,0.0029333287,-0.005427813,0.00048462616,0.008037782,0.009304822,-0.011277973,0.015257269,0.0066552577,-0.00036130426,-0.010070326,-0.020180246,-0.0020589393,-0.0027205057,-0.007377866,0.018979197,-0.0051209517,0.014755732,-0.01256481,-0.026950989,-0.00071683427,0.009205835,-0.008737294,-0.0066255615,-0.029009929,0.003332578,0.0032038945,-0.016656293,-0.033180602,-0.0028706368,-0.015164881,-0.029933812,-0.0071732923,0.0053321254,-0.02646265,-0.010796234,-0.01714463,-0.022687929,-0.012380033,0.005097855,0.02592152,-0.025076827,-0.010499272,0.18583249,-0.011746514,0.009390611,0.017487787,-0.0032038945,0.0077408203,0.01706544,0.010723643,-0.016841069,0.01161453,-0.0009222333,0.013977031,-0.017830944,0.0024400412,-0.014650146,-0.011984083,-0.015864393,-0.01692026,-0.015560831,0.00805758,0.013818651,-0.024852455,-0.025499173,-0.01872843,0.0068697305,0.00076302845,-0.022107203,0.005223239,0.0067278487,0.025710346,-0.00042935816,-0.02433772,-0.002963025,-0.001090512,-0.03365574,0.0057709697,-0.0004124478,-0.027531715,0.019348752,0.02433772,0.0017075338,0.019612718,0.007866205,-0.020497005,-0.028218029,0.028851548,-0.023202663,0.017830944,-0.0029052822,0.0130795445,-0.029511465,0.005483906,0.0059293495,0.012003881,-0.013198329,0.0033705235,0.016973052,0.032203924,0.0031675992,0.004272959,-0.005038462,0.033470962,-0.007839807,0.020906154,-0.0013833499,0.012221653,-0.026871799,0.02299149,-0.006011839,0.0019451039,-0.01137696,0.0031098565,-0.02505043,-0.01524407,-0.014768931,-0.020272635,0.039542194,0.030065795,0.013376507,0.02276712,-0.025459578,0.0012282695,-0.0038506126,0.008182964,-0.015679615,-0.034394845,-0.0037417265,0.0017933231,-0.021196518,0.002070488,0.01288157,0.010136317,-0.008090576,0.0032005948,0.01792333,0.04534946,0.0055498974,0.03135923,-0.003857212,0.0032682363,-0.030620124,0.050919157,0.016550705,0.016603498,4.062611e-05,-0.0014196453,-0.02148688,0.022846308,-0.015706012,-0.01690706,0.02227878,-0.008994661,0.007490052,0.0025373788,0.006882929,0.015059294,0.0020061461,-0.0115815345,0.020087857,-0.034553226,-0.010393685,-0.011588133,-0.005978843,0.0070215114,0.003745026,-0.010050528,-0.024641281,0.018517256,-0.0077870144,-0.014808525,0.03925183,-0.020998543,-0.020813765,-0.0116343275,-0.004959272,6.312385e-06,-0.0020952348,0.0064341854,-0.029907415,0.0011020605,-0.008149968,-0.008037782,-0.008776889,0.00089666154,0.002963025,-0.0020292432,0.016471514,0.018556852,-0.016326334,-0.007047908,-0.007490052,-0.006067932,-0.011601332,-0.033998895,0.015257269,-0.02456209,-0.02535399,-0.02662103,-0.0049196775,-0.0055630957,-0.009700772,0.025472775,0.02322906,0.0015648269,-0.026423056,0.004916378,-0.17010008,-0.00023550769,0.009463202,-0.010030731,0.00324019,-0.003365574,0.024839256,0.015943581,0.009351016,0.0036196418,-0.0045303265,-0.014425774,-0.02417934,0.009918544,-0.002283311,-0.0031890464,-0.027373336,0.003626241,0.011231778,-0.0061240247,0.013554685,-0.0040584863,0.011944489,-0.006516675,0.008499724,-0.002458189,-0.011700319,0.010862226,0.0010913368,-0.011957686,-0.0040980815,0.00924543,0.018860413,0.01018911,0.01722382,0.0018147703,-0.011357162,-0.019177172,-0.012578008,0.020127453,0.022212788,0.0112911705,0.0037087307,-0.00971397,0.00885608,-0.007991589,0.022503152,-0.0054641087,0.04455756,-0.022793515,0.006516675,-0.015890788,-0.0026644128,-0.014095816,0.024720471,0.014227799,-0.025895122,0.008994661,-0.011086597,0.014082618,-0.019216768,-0.0057016783,0.029775431,-0.016629895,-0.021249311,-0.01920357,-0.0054410114,0.0039001063,-0.019256363,0.0023822985,-0.0076286346,-0.031966355,0.007008313,-0.006843334,-0.0072656805,-0.0005906252,-0.017131431,0.002235467,-0.00782001,0.0020209942,0.0024548892,0.013647073,-0.011911493,0.0039957943,-0.00782001,0.024641281,-0.010248503,-0.0072986763,0.005474007,0.008255555,0.012643999,-0.045560632,-0.02703018,-0.01831928,0.015890788,0.01952033,-0.014504964,-0.015125286,0.0013965482,-0.026845403,0.0060019405,0.0029927213,-0.012947561,-0.0006830136,0.025551965,-0.00529253,0.020285832,0.014755732,0.028587582,0.01801572,-0.004015592,0.0014047972,0.010545465,0.0043719467,-0.012023678,0.0047447993,0.029643448,-0.026753014,-0.00093130715,0.008823084,0.04534946,0.014861319,-0.014122212,0.022001615,0.017276613,-0.009417008,-0.096400596,-0.021460485,0.02267473,0.037879206,-0.011990682,0.015336459,0.00090078596,0.018900007,-0.025881924,0.034500435,0.007688027,-0.02584233,0.004560023,-0.0048701838,0.008922071,-0.0033127808,-0.008380939,-0.033866912,-0.024482902,0.029511465,0.01351509,-0.008730695,0.00011239202,0.008235757,-0.0015673017,0.029009929,-0.034896385,0.043633677,0.02021984,0.0069027264,0.004866884,-0.012333839,-0.00442804,-0.016959853,-0.0038737098,-0.0019682008,-0.027610905,-0.01761977,0.016722284,-0.026581436,-0.008103774,0.001035244,-1.7142362e-05,-0.03175518,0.01414861,-0.030936884,-0.01857005,0.012657198,0.010307895,-0.03822236,-0.009588586,-0.0011507294,-0.016339531,0.0012208455,0.020206643,-0.002756801,0.005784168,0.0049658716,-0.007338271,-0.00529253,-0.00064259366,-0.005556497,-0.004074984,0.005342024,0.021434087,-0.03270546,-0.035292335,0.0071930895,0.011812505,-0.009885549,-0.0038605114,-0.018121306,-0.027478922,0.020285832,-0.020338627,0.0061603202,-0.032969426,0.01074344,0.016893862,-0.00011888808,-0.0110931955,-0.011568336,0.008413935,-0.010578461,0.0045468244,0.0015161581,0.021711253,0.018279687,0.00418717,0.0068697305,-0.003959499,0.032124735,0.015560831,-0.006929123,-0.005051661,0.009100248,-0.006747646,-0.010076924,0.010611457,0.0054575093,0.0016605149,-0.021222914,-0.07385785,0.0044907317,-0.0026809108,0.00568848,-0.005233138,-0.00908705,0.008922071,-0.0141090145,-0.0043422505,-0.007905799,-0.021473682,-0.00026561637,-0.0015450295,0.0035734477,-0.016775077,-0.029801829,0.029353084,0.0014641897,-0.001335506,0.015415649,0.0058270623,-0.008321547,0.051711056,0.008090576,-0.035054762,0.018913206,-0.004843787,-0.004249862,-0.018675637,-0.008031184,-0.008757092,-0.027267748,-0.005625788,0.027162163,-0.00071724673,-0.008955067,0.02283311,0.029986605,0.01082923,0.041284375,-0.0016044219,-0.02077417,0.013818651,-0.0075824405,0.021698054,0.00292343,-0.022648333,0.0049955677,0.027795682,0.01871523,0.034157276,0.026950989,-0.013871444,-0.003027367,-0.0008063354,0.0082225595,-0.0033820719,0.01863604,-0.017157828,-0.012749586,0.012624202,0.028957134,0.015428848,0.007094102,-0.0007065231,0.013363308,-0.012940962,0.0042630606,0.006180118,-0.02299149,-0.012129265,0.0045534237,0.00782001,0.019401545,-0.0029894216,0.0062164133,-0.015217674,0.006067932,-0.009898747,0.0059920414,0.013059747,0.012802379,-0.016088763,0.020813765,0.0056983787,0.010413482,-0.026990583,0.007041309,-0.00497907,0.0089088725,-0.0062593077,0.036295407,0.0076748286,0.017434994,0.010123119,0.005886455,-0.0105520645,-0.01351509,0.009021059,0.028534789,0.023453431,-0.0021546273,0.006737747,-0.027452525,-0.030250572,0.018834015,-0.021526476,-0.027056575,-0.014650146,0.01272319,-0.009034256,0.010631255,-0.012795781,0.00568848,-0.016814671,0.011027204,-0.00029221925,0.010043928,-0.041759513,0.033075012,-0.030699315,0.0015491539,0.01635273,-0.0017058841,0.01240643,-0.0008009736,0.017962927,-0.033946104,0.0010418431,-0.015772004,-0.007932196,0.018662438,-0.010941415,-0.02069498,0.008321547,-0.02354582,0.0013066346,-0.006074531,-0.01871523,0.049440943,0.01952033,0.0033210297,0.0034018694,-0.0022503152,0.02481286,0.018134505,0.022503152,-0.011145989,-0.0130069535,0.0052562347,-0.005460809,-0.011647526,-0.014861319,-0.031596802,-0.0015887489,-0.0030851096,0.029326688,-0.017078638,0.020285832,0.01912438,0.00458312,0.011680522,0.014782129,-0.018688835,-0.002204121,0.011205382,-0.01351509,0.008116973,-0.023532622,-0.0071600936,0.009120046,-0.062243324,-0.020325428,0.026489047,-0.021368096,-0.011317568,-0.002804645,0.006176818,0.02465448,0.010703845,-0.0017553779,-0.022529548,-0.011258175,-0.029168308,0.0022701127,0.0046887067,-0.017672563,-0.010340891]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41abeaa8-a5da-11ee-b807-77755c4e3884', 'Science & Education', 'this article is about physics', '[0.018961515,0.020971384,0.004558565,-0.026326623,-0.0014908722,0.014888888,-0.014915334,-0.0018776396,-0.013216203,-0.034828894,0.0022825883,0.04125518,-0.012270771,0.009665877,0.011669134,-0.00071031303,0.020892046,0.00267762,0.005176732,-0.0022065572,-0.0017668986,0.019437537,0.007318828,-0.0004055685,-0.017255772,0.021156503,0.026710084,-0.031655416,-0.008528715,-0.004604845,0.023972962,0.009242747,-0.020693704,-0.034987565,-0.018181369,-0.0073320502,-0.00308918,-0.015629366,0.017652458,-0.011920366,0.014254194,0.02156641,-0.0146641005,-0.009646043,-0.011259226,0.00535524,0.028878625,-0.014267417,0.0072064335,0.0059370436,0.022055654,0.024634102,-0.041651864,-0.013097198,-0.0060031577,-0.036680087,0.0007718818,0.019133411,-0.0029024077,-0.029857114,-0.010783205,0.002307381,-0.03030669,0.021513518,-0.027318334,0.0007256019,0.0063370336,0.0035073515,-0.014174856,-0.011874087,0.017890468,0.008713834,0.0056097787,0.006621324,0.03424709,-0.0051304516,0.00704776,0.0025602675,0.007503947,-0.000326025,-0.009031182,-0.014505427,-0.019741662,0.012072429,0.015642589,-0.004657736,-0.006922143,0.008039471,0.007867575,-0.0031156256,0.006254391,0.022161437,0.009136965,-0.006099023,-0.010895599,0.030941384,0.0034974343,0.023999408,0.002875962,-0.02458121,-0.0072394907,0.005041198,-0.007682455,-0.013394711,-0.042551015,-0.0038180875,0.024039077,0.006935366,0.018340044,-0.032343004,-0.024779553,-0.00264291,0.0060593546,-0.028164594,0.0047899643,0.0029272004,0.025758041,0.004257746,0.023206038,-0.018432602,0.029962897,0.016845865,0.010029504,-0.0054147425,0.015655812,0.0026462157,-0.04895086,-0.0056924215,-0.013308763,-0.017282218,-0.0005140369,-0.0005694074,-0.0035503255,0.0104923025,0.004261052,-0.0063502565,-0.0043536117,0.020085454,-0.029116636,-0.012442668,-0.008760114,0.017626012,-0.031311624,-0.021619301,-0.010379909,0.031919874,0.016898757,0.02395974,0.013163311,0.013844286,0.008502269,0.008905565,0.03543714,0.019675547,0.0038048648,-0.009024571,-0.0131567,0.011384843,0.0040957667,-0.013262482,-0.001472691,-0.021976316,0.022280442,-0.01837971,0.0010933614,0.030888494,0.013870732,0.0046114563,0.015946714,0.004327166,-0.024832444,0.024541542,-0.019106966,0.012812907,0.013857509,0.015404578,0.021354845,-0.00029193494,-0.026247285,0.008588218,-0.015113676,0.01024107,0.020799486,0.027529899,0.0012445974,0.018472271,0.019820997,-8.877621e-06,0.021447405,-0.009520426,0.020138346,0.027450562,-0.011907144,0.0077750147,-0.68123937,-0.034088414,0.008852674,5.3872638e-05,-0.012865798,0.0150211165,0.028481942,0.005821344,-0.007682455,0.034934673,-0.006948589,-0.009401421,-0.033612393,0.0011247656,-0.022029208,-0.014240971,0.0040891552,-0.022663902,0.016740082,-0.004961861,-0.017665679,0.007662621,0.0015751678,0.0121716,0.01893507,0.010783205,0.018445825,-6.0277438e-05,0.007503947,-0.014412867,-0.0076758433,0.012773238,0.00034276012,0.03538425,0.025427472,-0.0026082,0.00996339,0.02198954,0.005027975,0.03575449,-0.02655141,-0.014135188,0.015629366,0.0114179,-0.017414447,-0.008528715,0.028032366,-0.0036494967,0.017097099,-0.0037519734,0.0075766724,0.008125419,0.015391355,0.014452536,-0.0009768354,-0.0028247237,0.019940004,0.020812709,-0.0007123791,0.015867377,0.0024263863,0.012951747,-0.006221334,-0.0041420464,0.0018759867,-0.0038147818,-0.021460626,0.018406156,0.013011249,-0.015206236,0.004380057,0.005775064,-0.0036032167,0.017758239,-0.0027305111,0.019093743,0.025506807,-0.0097650485,-0.0043436945,0.018868955,0.0013693877,0.0075634494,-0.019675547,-0.032290112,0.049506217,-0.025506807,-0.01273357,0.008158476,0.013923624,0.0020578005,0.004585011,0.00519326,-0.0050577265,0.00027044787,-0.0021156503,0.002575143,-0.0075634494,0.00012344736,0.012151766,0.027926583,-0.0052659856,-0.0075303926,0.024422538,-0.009500592,0.012231103,0.016740082,-0.0012107139,0.021460626,0.012674067,-0.02697454,-0.0033288435,-0.011093941,-0.028164594,0.03675942,-0.014902111,-0.03279258,0.016290506,0.0013032736,0.004849467,0.0053354055,0.003937093,-0.0010495608,0.004750296,-0.0027602625,-0.005887458,0.025599368,-0.019913558,-0.0011545169,-0.032025654,-0.035304915,0.010141898,0.01057164,0.0068295836,-0.001583432,0.032871917,0.01851194,-0.00020567674,0.0010173302,0.02138129,0.005831261,-0.031443853,-0.01277985,-0.002507376,0.010148509,-0.017665679,-0.025586145,-0.018432602,-0.0049354155,-0.0052230116,-0.00789402,-0.010082396,-0.0040065125,0.003735445,0.02034991,-0.007484113,0.0050742547,-0.007913854,-0.0012429445,-0.010227847,-0.004803187,-0.0108493185,0.01367239,-0.03284547,0.014240971,-0.012343497,0.0024412621,-0.0065849614,0.0065618213,-0.011946812,-0.026961317,0.006746941,0.007034537,0.0053089596,0.00082477304,-0.0045916224,0.008588218,-0.014293862,0.00034358655,0.0034081803,-0.016991315,-0.00911713,-0.022095323,-0.031100059,0.015047562,0.009229524,0.023563055,0.03919242,0.009130353,-0.012898855,0.015074008,-0.0038941188,0.03030669,-0.0057056444,-0.0022164742,-0.017467337,-0.025771264,-0.006935366,0.0021206087,0.025004342,0.018723505,0.020045785,0.0067766923,0.03985356,-0.009745214,0.019662324,-0.024779553,0.006535376,-0.025956385,0.022915136,-0.0038412274,0.021368068,-0.014545095,-0.0250969,-0.020006118,0.0033205792,-0.00025102685,-0.01569548,-0.0007813857,-0.023549832,-0.021262284,-0.019940004,-0.011318729,0.018485494,0.006029603,-0.0084361555,0.038848627,0.020892046,0.012277382,-0.0054610223,-0.036098283,0.00032168627,-0.008535326,-0.00045783992,0.017374778,0.0018230955,0.03387685,0.02603572,-0.005834567,0.03580738,0.014174856,0.009659266,0.012594731,-0.00012324075,-0.0031371126,0.012634398,-0.010201401,0.0117220245,-0.01681942,-0.00037540396,-0.0065948786,-0.024845667,0.0029966203,-0.028746398,0.027186105,0.010247681,-0.005619696,0.015431024,-0.006287448,0.006789915,0.018974738,0.013229425,0.015285573,0.0037651963,-0.008674166,0.004961861,-0.00042354327,-0.0042874976,-0.016859088,-0.0072064335,-0.017123545,-0.037473455,-0.0116360765,0.0031007498,-0.0228358,0.019212749,0.017017761,0.009024571,-0.0063833133,0.022280442,0.013897178,-0.014188079,-0.023615945,-0.015232681,0.024039077,-0.008363429,-0.022677125,-0.010829485,-0.008614663,-0.0141219655,0.0035073515,0.006287448,0.021434182,0.0146641005,-0.008535326,-0.022134991,-0.015166568,0.026842313,0.015338465,0.011384843,0.007728735,-0.00050990476,-0.0028610863,0.014082297,0.003378429,0.02377462,0.0050478093,0.005738701,-0.025493585,0.020587921,-0.012052595,0.0075634494,-0.016184725,-0.003176781,0.0051833433,0.004971778,-0.004125518,0.006426288,0.0081783105,0.036151174,-0.009441089,-0.001606572,0.003801559,-0.021830866,0.007444444,0.08155832,-0.010803039,-0.007834517,0.027900137,-0.0004504021,-0.044058416,-0.0060593546,-0.0033057034,0.011569962,-0.017216103,0.0035800769,0.0024363035,0.005520525,-0.010274126,0.007014703,0.011675744,-0.0054709394,-0.0022429198,0.016250838,-0.011847641,0.011477402,-0.01691198,-0.0022908526,0.03242234,0.019106966,-0.019900335,0.014690546,0.022769686,-0.011272449,-0.011543517,-0.0033800818,-0.007523781,0.0050775604,-0.022968028,-0.015034339,0.0114641795,0.0005846963,0.0074312217,-0.005437882,-0.00071031303,0.010869153,0.010941879,0.0048957467,-0.018353267,0.011246003,-0.015986383,0.019239195,0.040594038,-0.013989737,0.0072196564,0.01584093,-0.0037255278,-0.028111702,-0.021037497,-0.0069155316,-0.0021768059,0.0031387655,0.0023817595,-0.010300572,-0.039694887,-0.018763173,-0.018736728,0.012343497,0.006211417,-0.008720445,-0.028825734,0.0027255525,-0.015827708,-0.027794356,0.015933491,0.0033519834,-0.021791197,-0.03350661,-0.007358496,0.024210973,-0.0035536312,0.027014209,-0.01197987,-0.016885534,-0.00930225,-0.015007894,-0.013434379,-0.015550029,-0.040937833,0.00039213907,0.02077304,0.0055833333,0.02856128,-0.017520228,0.002142096,0.016502071,0.029486876,0.019212749,0.003145377,0.014016183,0.012971581,0.0021718473,0.0035205742,0.012402999,-0.0006644464,-0.0052891257,-0.012283994,0.0064064534,0.006677521,0.0079931915,0.009778271,0.011497237,0.02090527,0.00013078189,-0.006366785,0.0231267,-0.0075766724,0.020217683,-0.012574896,0.00086030934,0.0104790805,0.012740182,0.011490625,-0.007067594,-0.011655911,0.0062180283,-0.027450562,0.006922143,0.013004637,-0.001705743,0.014862443,-0.017427668,-0.027847247,-0.026115058,0.00042354327,-0.0054577165,0.011272449,-0.0118211955,-0.024277087,-0.023444049,-0.015444247,-0.032210775,0.011986481,-0.0054312707,-0.02659108,-0.002699107,0.0034015689,0.016581409,-0.012898855,0.025401026,-0.03199921,-0.010287349,-0.008052694,-0.011530294,-0.0050445036,0.0012123667,-0.00399329,-0.017414447,-0.03096783,-0.017784685,-0.03411486,-0.004426337,0.008898954,0.032686796,0.038795736,0.044322874,-0.013553385,-0.01409552,0.005117229,-0.016250838,0.0050114463,0.007933688,0.011569962,-0.042868365,0.0012181518,0.040038683,-0.024171304,0.02842905,-0.003778419,0.009130353,0.03974778,0.040937833,0.0016082247,0.0049486384,-0.022769686,0.0006070098,0.0060262973,0.002766874,0.009454312,-0.026154727,-0.009031182,0.017533451,0.006869252,-0.0059965462,-0.011087329,0.02382751,-0.011675744,0.0090510165,0.009804716,-0.003983373,-0.04622696,-0.012442668,-0.026881982,0.015550029,0.021606078,-0.002718941,0.006548599,-0.014571541,0.020297019,-0.020892046,-0.017308664,-0.0015074008,-0.015245904,-0.0046544303,-0.014042629,0.0044428655,-0.024898559,-0.019530097,-0.037896585,0.026485296,0.022029208,-0.024210973,0.051198736,-0.00660149,-0.026062166,0.02579771,-0.0022991167,0.02528202,0.0092361355,0.020918492,0.024594434,0.013474047,-0.035913162,0.001214846,0.009388198,-0.0017553286,0.022544898,0.018049141,-0.005351934,-0.013606275,0.005976712,0.019741662,-0.0071204854,-0.041651864,0.018300375,-0.018763173,-0.0018892095,-0.015576475,-0.008019636,-0.021963093,0.02198954,0.03091494,0.008118808,-0.02537458,-0.01744089,-0.01893507,0.017374778,0.000729734,0.039060194,-0.00017117347,-0.004280886,0.009857608,0.012336886,-0.019477205,0.00704776,0.0012702165,0.03120584,-0.023906847,0.006343645,0.0178508,0.0035172685,0.0137649495,-0.006730412,0.0069750343,0.025348134,-0.0016545046,-0.0143070845,0.008846062,0.015259127,0.009566706,0.004604845,-0.0034147918,-0.014650878,-0.016158279,-0.013374876,0.022954805,0.0076163406,-0.015814485,-0.0074775014,-0.0072527137,-0.0106641995,-0.013050918,0.0067204954,-0.028111702,-0.011715413,-0.03519913,-0.019649101,-0.014756661,-0.018683836,0.011768305,-0.0034842114,-0.006687438,0.031417407,-0.03210499,0.0023453967,-0.0090510165,0.009646043,-0.006836195,0.0021949871,0.015298796,-0.024409315,0.019120188,-0.0067403293,-0.017004538,-0.016806196,-0.008813006,0.0332686,-0.0040560984,-0.0120790405,-0.0008685736,0.01930531,-0.004294109,-0.0120790405,-0.04107006,0.002328868,-0.0046775704,-0.0068428065,0.026511742,-0.02382751,-0.0018082198,0.0025916717,0.002006562,-0.0062940596,-0.02142096,0.00037085862,-0.03162897,0.012971581,0.00066403317,-0.011755082,-0.0053221826,-0.0025172932,-0.013804618,-0.00874028,-0.015655812,0.0015536806,-0.004158575,-0.0039536213,0.003178434,-0.01226416,-0.014359976,-0.0135071045,-0.023034142,-0.0143070845,-0.036230512,-0.008720445,0.02349694,0.018855732,0.032554567,-0.025414249,-0.018551609,-0.001705743,-0.018591277,-0.0051238406,-0.0045122853,0.014994672,-0.002877615,0.007834517,-0.0017801214,-0.008244424,0.005371768,0.012211269,-0.011351786,-0.0033635532,0.0043767514,-0.0050478093,-0.021235839,-0.0036825538,0.0014528567,-0.014730215,0.02287547,-0.01085593,0.011252615,0.00939481,-0.0017305358,0.00840971,0.0069552003,-0.0038478388,-0.0050312807,0.02265068,0.011946812,-0.0414403,0.003176781,0.015827708,-0.010657588,-0.024369646,0.008694001,0.008826229,-0.0015065743,0.020244129,-0.0096791,-0.012231103,0.009983225,-0.0060229916,-0.0014958308,-0.010631142,0.010280738,0.01729544,0.0068428065,-0.01451865,-0.02142096,0.0059800176,-0.008198145,-0.0029519931,0.012773238,0.0024561377,0.019794554,-0.007246102,-0.026934871,-0.00430072,0.0074113873,-0.008125419,-0.012462502,-0.035913162,0.010320406,0.0051337574,-0.010829485,-0.028746398,-0.0069155316,-0.022452338,-0.026300177,-0.005163509,0.0011470792,-0.03411486,-0.006366785,-0.00023057283,-0.019768108,0.005550276,0.0039999015,0.025017563,-0.01353355,0.0037751135,0.18987961,-0.025877047,0.012925301,0.015153345,-6.895491e-05,0.0076560094,0.0076560094,-0.009970002,-0.009011348,0.009368364,0.017467337,0.01681942,-0.02447543,9.953267e-05,-0.023087034,-0.00064585183,-0.011424512,-0.017771462,-0.012700513,0.016475627,0.011834418,-0.017004538,-0.02165897,-0.02235978,0.011854253,-0.008251036,-0.011285672,-0.009553483,-0.0026462157,0.029830668,-0.0070609828,-0.025004342,-0.0036528024,0.00575523,-0.02885218,0.010657588,0.0063403393,-0.035939608,0.03067693,0.0335595,-0.0060725776,0.005606473,0.014505427,-0.009487369,-0.020561475,0.038240377,-0.022439115,0.014796329,-0.005606473,0.010227847,-0.030518254,-0.0027834023,0.0023867178,0.015391355,-0.015312019,0.0010999729,0.013090586,0.032025654,0.017678902,0.011728636,-0.01878962,0.024078744,-0.019913558,0.023734951,-0.0096791,0.014690546,-0.014135188,0.015854154,-0.0099501675,0.0058577065,-0.013262482,0.0051304516,-0.020958161,-0.007953523,-0.004492451,-0.026260508,0.019067299,0.015629366,0.018868955,0.01057164,-0.013229425,-0.0016710331,-0.004875913,-0.027133215,-0.012700513,-0.02353661,-0.0105650285,0.0036957765,-0.015100454,0.009289027,0.0073518846,0.0046775704,-0.009249358,0.0011925326,0.015854154,0.024726663,-0.00014524435,0.011589796,-0.017586343,0.0051238406,-0.027900137,0.0374999,0.020363133,0.013725281,-0.0009710504,-0.0012189782,-0.023549832,0.021116834,-0.004426337,-0.01744089,0.020006118,0.003589994,0.013222814,-0.0021536658,-7.220896e-05,0.017123545,0.0033420662,-0.00063304225,0.02909019,-0.025943162,0.0005975059,-0.017705347,-0.002986703,-0.013031083,0.019794554,-0.024554765,-0.017665679,0.021553187,-0.0135930525,-0.01720288,0.049453326,-0.008013025,-0.013712058,-0.0026544798,0.003927176,0.0077419574,0.0022214327,-0.00178508,-0.025242353,0.00063056295,-0.015087231,-0.014981449,-0.007358496,0.01602605,-0.001561945,-0.0066246297,0.012072429,0.009527038,-0.026088612,-0.008819617,-0.018472271,0.003857756,0.0010727008,-0.024144858,0.0086212745,-0.012059206,-0.021738306,-0.034696665,-0.0031371126,0.005427965,-0.0044957567,0.018776396,0.0011421206,0.009831162,-0.017916912,-0.001983422,-0.17041562,-0.004713933,0.02044247,-0.01917308,0.0053750738,0.009123742,0.033374384,0.023351489,0.005907292,-0.00030495116,-0.011688967,-0.017189657,-0.024144858,0.016554963,0.0049089696,-0.004449477,-0.030862048,0.007087428,0.009097296,0.0016098776,0.017546674,-0.018062364,0.018009473,-0.0037288335,0.009170022,-0.003623051,-0.0146641005,0.010928656,0.008813006,-0.020059008,0.0014065768,-0.0013826105,0.033771068,0.0042511346,0.01945076,0.0111071635,-0.0051040063,-0.011768305,-0.008965068,0.018802842,0.024541542,-0.0021883757,0.0009933639,-0.008211368,0.01560292,-0.0065981844,0.025982829,-0.0029635632,0.046782315,-0.03067693,0.024210973,-0.020495363,0.007874186,-0.01203276,0.028905071,0.018776396,-0.030200908,0.016488848,0.0039172587,0.006029603,-0.021606078,-0.007728735,0.021156503,-0.025996052,-0.009222913,-0.010089007,-0.004760213,0.008502269,-0.029724887,-0.0022792825,0.004528814,-0.029513322,0.0010214624,-0.017520228,0.00215036,0.0093353065,-0.03260746,-0.0026230756,-0.0012297217,-0.006399842,-0.005675893,0.020601144,0.004859384,-0.0035767711,-0.008224591,0.016713636,-0.010267515,-0.0029949674,-0.006809749,0.0069948686,0.012112098,-0.051251628,-0.026247285,-0.024382869,0.017837577,0.014174856,-0.006545293,-0.017216103,0.016383067,-0.006730412,0.008389875,-0.0025652258,-0.0047536017,0.0024495262,0.022756463,-0.0052891257,0.003857756,0.016845865,0.027847247,0.0093353065,-0.010842708,-0.008958456,0.00048593842,0.019582987,-0.011649299,0.0034610715,0.03382396,-0.020746594,0.0023718423,0.0043172487,0.03966844,0.0062576965,-0.028984409,0.024819221,0.0019949921,-0.013070752,-0.09393487,-0.03181409,0.037817247,0.028032366,0.008674166,0.012482337,-0.0006586614,0.010373297,-0.027529899,0.036680087,0.0062180283,-0.0240523,-0.0012950094,0.017559897,0.00030267847,-0.020997828,-0.010320406,-0.036706533,-0.033903293,0.0193582,0.0071204854,-0.016792974,-0.0034379316,0.004026347,-0.00081361627,0.039774224,-0.030941384,0.04355595,0.016792974,-0.0112790605,-0.0057453127,-0.013553385,-0.0135930525,-0.03139096,-0.011199724,-0.0050676432,-0.024118412,-0.018207815,0.02866706,-0.019371422,-0.010604697,0.0077221235,-0.001527235,-0.012065818,0.009361752,-0.025916716,-0.019093743,0.017612789,0.009434477,-0.03030669,-0.006723801,0.0051965658,-0.020283796,-0.00071072625,0.029830668,-0.011933589,0.008918788,0.0059403493,-0.0063833133,-0.010888987,-0.0082642585,0.009156799,-0.0050312807,0.024422538,0.020257352,-0.03612473,-0.03736767,-0.009341918,0.019106966,-0.016224394,-0.0043635285,-0.0011479056,-0.01654174,0.024316754,-0.035516478,-0.00086692075,-0.033797514,0.009500592,0.023801066,0.013434379,-0.013480659,-0.019186303,0.0062841424,0.0005065991,0.006568433,0.008700612,0.023853956,0.0111071635,0.022809355,0.0012966621,-0.0062610023,0.02739767,0.016951647,-0.014862443,-0.0071337083,0.0044693113,-0.0151930135,-0.007735346,0.013778172,0.003143724,-0.019146634,-0.016885534,-0.071032956,0.016224394,0.007814683,0.0031139727,-0.008085751,-0.016991315,0.011365009,-0.00958654,0.0068758633,-0.0027007598,-0.00911713,-0.0048560784,-0.015893823,-0.0135930525,-0.01597316,-0.033453718,0.026472073,0.0120790405,-0.015126899,-0.0005528789,-0.0036693309,0.0012900508,0.042074993,0.011867476,-0.027953029,0.02392007,0.0037651963,-0.005176732,-0.029830668,0.006604796,-0.0012156725,-0.015986383,-0.0075105582,0.016872311,0.0023371323,-0.0022776297,0.002452832,0.015589697,0.0045783995,0.034855336,0.00742461,-0.02147385,0.0005078387,-0.00037540396,0.0076692323,0.012012927,-0.022174658,0.0054147425,0.02879929,0.022769686,0.03162897,0.028296823,-0.0053684623,-0.007953523,-0.009976613,0.0014173203,0.0044858395,0.0146641005,-0.008746891,-0.011920366,0.033797514,0.021844089,0.003956927,-0.0027288583,0.0043106372,0.021037497,-0.019384645,0.0020478833,0.009176633,-0.03665364,-0.0040065125,0.003702388,0.012786461,0.01282613,-0.0033833876,-0.014055851,-0.01484922,0.007920465,-0.007166765,-0.0037056936,0.017348332,0.018498717,-0.016872311,0.011517071,0.018115256,0.0075634494,-0.023351489,0.023100257,-0.0025520031,0.008191533,-0.0015768206,0.032871917,-0.00024482867,0.012290605,0.023748174,-0.002897449,-0.012786461,-0.018948292,0.018128479,0.028957963,0.017176436,0.0012098874,0.008892342,-0.03120584,-0.026392737,0.015140122,-0.029354647,-0.032951254,-0.008204756,0.006525459,-0.0027619153,0.01264101,-0.013050918,0.007636175,-0.019278863,0.014888888,-0.013242648,-0.0020792875,-0.035119794,0.040144462,-0.026868759,-0.0029387705,0.003256118,-0.00780146,0.010611308,0.007649398,0.020746594,-0.010829485,0.020416025,-0.017533451,0.015391355,0.0117220245,-0.008085751,-0.012740182,-0.0050345864,-0.027688572,-0.0070543713,-0.0144789815,-0.010452635,0.066325635,0.010267515,0.002856128,0.0046114563,-0.016039273,0.014505427,0.016859088,0.00615522,-0.020230906,-0.02969844,-0.001092535,-0.0022544898,-0.020667259,0.004938721,-0.018538386,0.0064857905,-0.0015925227,0.027265443,-0.023483718,0.009401421,0.022134991,-0.0064494275,0.0024809304,0.014769883,-0.007556838,-0.009599763,0.012065818,0.0012644316,0.0022693654,-0.027371226,-0.01720288,0.0031900038,-0.073941976,-0.023272153,0.020825932,-0.015563252,-0.007292382,-0.0070940396,0.002452832,0.022068877,0.01667397,0.02222755,-0.013725281,-0.0025834073,-0.02640596,0.011609631,0.0066709095,-0.016502071,-0.009427866]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41b48262-a5da-11ee-b807-df48c1dc202b', 'Science & Education', 'this article is about pyschology', '[0.012396306,0.015823673,0.033827208,-0.04454266,-0.017097447,0.022297593,-0.0031844324,0.0056728856,-0.0014748519,-0.023558235,-0.015495382,0.023571366,-0.0048882677,0.007176463,-0.0014239666,0.006270377,0.032776672,0.0042513814,0.0016586953,0.0003059271,-0.01461556,0.026696706,0.012744295,-0.0024786047,-0.014760008,0.014274136,0.026000727,-0.029913967,-0.00887045,-0.00071690767,0.013039758,0.0048685702,-0.008469934,-0.038580876,-0.009724009,-0.018174246,0.0023916073,-0.016007518,0.02915233,-0.0060766847,0.0066807424,0.009599258,-0.019828837,-0.0125538865,-0.0092644,0.0021388223,0.0140771605,-0.02282286,-0.0048981165,0.012317516,0.032881726,0.024792612,-0.044437606,-0.013269562,0.0035455537,-0.027445212,0.005994612,0.010866465,0.010209881,-0.038003083,-0.0048620044,-0.0124816615,-0.039605148,0.025895674,-0.02259962,0.0057385443,-0.006322904,0.011398299,-0.0019549788,-0.005410252,0.017333817,0.0033272393,-0.004031426,-0.00045673625,0.044647712,-0.0008584836,0.006634781,0.007176463,0.015836807,0.0018302279,-0.009270966,-0.026223965,-0.027655318,0.0050163018,0.019658124,-0.0010521759,0.005009736,0.00209122,-0.0003951815,0.0004628917,0.0020616737,0.013801396,-0.004097084,0.0024145877,-0.01500951,0.04884985,-0.0051837307,0.024556242,0.0072289896,-0.031568557,-0.0020846543,0.0126655055,-0.016165098,-0.017767163,-0.0301766,-0.0043794154,0.003607929,0.0058435975,0.018594459,-0.01953994,-0.014457979,0.0056400564,-0.0037852067,-0.036873758,0.008266392,0.003164735,0.0070254486,0.004343303,0.0050294334,-0.015679225,0.036164645,0.007439097,0.017176237,0.0005240361,0.010439686,0.0190672,-0.036716178,-0.013945844,-0.014589297,-0.0058435975,0.0025508287,0.012612979,0.013427143,0.012251858,-0.01066949,-0.006687308,0.0040839524,0.012363477,-0.027524002,-0.017386345,0.0007870801,0.024227949,-0.03317062,-0.025120905,-0.014641823,0.034037314,0.0073274774,0.018660117,0.015048905,0.027602792,0.013932712,0.0044089616,0.020314708,0.01625702,0.0072421217,0.005078677,0.0023472877,0.006158758,-0.017911611,-0.0134074455,-0.01602065,-0.019014673,0.009231571,0.0024572655,0.0059289536,0.03251404,0.02626336,0.017058052,0.017215632,-0.014366058,-0.01969752,0.015836807,-0.012875612,0.016309546,0.0144842435,0.008378012,0.00738657,0.0017580036,-0.014011502,0.010735149,-0.021483429,0.015508514,0.013919581,0.035219166,-0.0051213554,0.0071305023,0.008614382,-0.0050327163,0.009500771,-0.002930006,0.01955307,0.021785457,-0.0052625206,-0.0015273786,-0.68242717,-0.029677596,0.014970115,0.008220431,-0.012678637,0.01469435,0.022455173,0.0019385642,-0.016217625,0.03860714,0.0025918654,-0.00186634,-0.013735738,-0.0037655092,-0.017648978,-0.012113974,-0.00091265177,-0.03353831,0.038397033,0.002283271,-0.026552256,0.025974464,-0.011792249,0.010301803,0.015666094,0.015994387,0.014234741,0.0011925207,0.003453632,-0.007576979,-0.0024999436,0.011989224,0.010859899,0.026552256,0.032146353,-0.004917814,0.006762815,0.028495746,0.006027441,0.048876114,-0.027497739,-0.011037177,-0.00018456166,0.018541932,-0.011798815,0.011857907,0.01500951,-0.0027986893,0.028128058,0.001033299,0.009559863,-0.0026181287,0.01868638,0.0023046099,0.019500544,0.0007760002,0.010866465,0.004257947,0.0054397983,0.004228401,0.0024999436,0.008338617,0.0030350594,0.014497375,0.010741714,0.009572995,-0.01821364,0.007045146,0.003978899,-0.017517662,0.008627513,0.009953814,-0.010656359,0.013184207,0.010177052,0.015968123,0.014720613,-0.009119952,-0.015035774,0.006395128,-0.008292655,0.008607816,-0.01340088,-0.018121717,0.037399024,-0.02697247,0.0058731437,0.012507925,0.0019205082,-0.007576979,0.00365389,0.0096255215,-0.0016972696,0.011234152,0.00619487,0.011818512,-0.006158758,-0.0100326035,0.0067135715,0.028154321,0.006605235,-0.0028594234,0.03180493,0.0028774794,0.011142231,0.014208478,0.0035094414,0.017373212,0.016125703,-0.0046486147,0.0037852067,0.0065822545,-0.015508514,0.029572543,0.0009651785,-0.03314436,0.018095454,-0.009087123,-0.0048948335,0.007714862,-0.003246808,-0.008483065,-0.00648705,-0.00217001,0.0050589796,0.02282286,-0.016939867,-0.0017497963,-0.019658124,-0.022533963,-0.0016570538,-0.004271079,0.0029923816,0.0031959226,0.01231095,0.008266392,0.005423384,0.0035947973,0.017255027,0.0060044606,-0.024214817,-0.0064575034,0.0076557696,0.015876202,-0.014497375,-0.025370406,-0.022205671,-0.0037425288,-0.014444848,-0.008240129,-0.0030695302,-0.01043312,-0.00050721114,0.034615107,0.004057689,-0.0020370518,-0.014037766,0.010708885,-0.0003213158,-1.631201e-05,-0.0071633314,0.024753217,-0.01969752,0.0027067675,-0.020813713,0.014996379,-0.009559863,0.018594459,-0.014431716,-0.025659302,0.0043728496,-0.0040150112,0.0012663864,-0.0045337123,-0.0104790805,0.008804792,-0.008634079,0.0062506795,0.010426554,-0.01712371,-0.02173293,-0.013565025,-0.030045284,0.0024802461,0.0015790846,0.0028988183,0.027891688,0.01789848,-0.0012220669,0.0015043981,-0.0019516959,0.045908354,-0.0031942811,0.01043312,-0.010603831,-0.013958976,-0.007879008,-0.0039657676,0.021444034,0.026828023,0.021864247,-0.004438508,0.026473466,-0.01000634,0.023728946,-0.019828837,-0.0053610085,-0.02267841,0.014457979,-0.0013213753,0.01254732,-0.0022094052,-0.026670443,-0.021444034,-0.0058370316,-0.0040872353,-0.004198855,0.014917589,-0.029178593,-0.00910682,-0.010209881,-0.013748869,0.0040741037,0.015613567,-0.0006471456,0.04173248,0.018042928,0.0058764266,0.0017465134,-0.031778667,0.005495608,0.0026427505,-0.004878419,0.025370406,0.0055711153,0.03041297,0.030439233,-0.015324671,0.028837169,0.009986643,-0.0064213914,0.019815706,0.009284098,-0.009842194,0.014996379,-0.009868458,0.0045271465,-0.003322315,-0.011050309,-0.006966356,-0.02062987,0.001015243,-0.01679542,0.020643001,-0.011496786,0.007839613,0.01278369,-0.005311765,-0.00046248134,0.020761186,0.0017891914,-0.004100367,0.011910434,-0.009087123,0.008266392,-0.0037622263,-0.009579561,-0.026237097,-0.0056696027,-0.031253397,-0.034904007,-0.009251269,-0.002572168,-0.016309546,0.012652374,0.017530793,0.00754415,-0.0013427143,0.024254212,0.019723784,-0.012264989,-0.012698335,-0.0001946156,0.032855462,0.0039165234,-0.021483429,-8.612536e-05,-0.006034007,-0.011483654,-0.0015454346,0.0049966043,0.018358089,0.016664103,-0.008929542,-0.02657852,-0.00839771,0.026460335,0.021142004,0.01953994,0.0017317403,0.015521646,-0.0018729059,-0.008673474,0.008082549,0.0035488366,-0.003604646,-0.012744295,-0.02400471,-0.0060963826,-0.012113974,0.018463142,-0.003036701,-0.0077411253,0.0061686067,0.0026000727,3.316262e-05,0.00090608594,0.003739246,0.030780658,-0.0017678525,0.006841605,-0.006536294,-0.033827208,0.013565025,0.102689736,-0.0049506435,-0.0132236015,0.022140013,0.0023292317,-0.0301766,-0.021680404,-0.008975503,0.019027805,-0.01930357,-0.014497375,-0.00046822647,0.008187602,-0.013118548,0.026473466,0.012521056,-0.0113786,0.0070517124,0.007924969,-0.009415414,0.008844187,-0.03416863,-0.011851341,0.023334995,0.015075169,-0.021706667,0.018581327,0.025370406,-0.023650156,-0.026158307,-0.004536995,-0.005042565,0.011634668,-0.00785931,-0.017110579,0.035376746,-0.0012163218,0.0005474269,-0.0033846905,0.0035127243,0.028311903,0.013348353,0.010689188,-0.019080332,0.006441089,-0.013256431,0.024136027,0.032619093,-0.015259013,0.0026132043,0.008982069,-0.007169897,-0.02416229,-0.009041161,0.018555064,-0.009172479,-0.00032193135,0.015508514,-0.01500951,-0.01688734,-0.007064844,-0.02828564,0.004717556,0.0058862753,0.0042448156,-0.02367642,0.012291253,-0.012238726,-0.025252221,0.0047864974,0.014904457,-0.028863432,-0.015062037,-0.011549313,0.014786271,-0.0023210244,0.023781473,-0.005794354,-0.009868458,0.014865061,-0.011667497,-0.019093463,-0.01742574,-0.033879735,0.00910682,-0.00072060095,0.002930006,0.009947248,-0.011089704,0.005754959,0.020078339,0.025816882,-0.00439583,-0.003604646,0.009546732,0.012094277,-0.004999887,0.005495608,0.009638653,-0.016467126,0.00039456596,-0.01860759,-0.013985239,-0.003978899,0.01571862,0.0052329744,-0.008010325,0.020643001,-0.0028643478,-0.012048316,0.03621717,-0.010873031,0.013893317,0.009316927,0.01860759,0.003735963,0.003690002,0.026512861,0.016782288,-0.023794604,0.011752853,-0.046170987,0.0096255215,0.028705852,-0.011477089,0.010971518,-0.015350934,-0.028023005,-0.027340157,-0.0024342851,-0.018830828,0.014195346,-0.021680404,-0.017294422,-0.014720613,-0.0064607863,-0.03243525,0.017241895,-0.008706304,-0.030570552,-0.0065888204,-0.016440863,-0.0032386007,-0.011549313,0.042257745,-0.038081873,-0.019093463,-0.0032484494,-0.004018294,-0.010380593,-0.0022258197,-0.0034142367,-0.018226773,0.0016619782,-0.00069844123,-0.030307917,-0.0014182214,0.015771147,0.043649703,0.028154321,0.02899475,-0.014182215,-0.014064029,0.009763404,-0.0028676307,-0.00910682,0.006427957,0.01360442,-0.025278484,0.003893543,0.01976318,-0.0068153418,0.0404981,0.0053314622,0.019119726,0.04149611,0.025265353,-0.0069466587,-0.012048316,-0.021693535,0.004359718,0.017163105,-0.007852744,0.020078339,-0.032881726,0.0014403812,0.02259962,0.0046978584,-0.0076951645,-0.012127106,0.019434886,-0.029651333,0.00988159,0.0075966767,-0.012173068,-0.050740812,-0.010117959,-0.021877378,0.006267094,0.021483429,0.008404275,0.014760008,-0.017688373,0.014405453,-0.016322678,-0.0054365154,0.01082707,-0.013459972,-0.014904457,-0.009284098,0.0075375843,-0.009789667,-0.017767163,-0.042966858,0.024293607,0.015272144,-0.029835178,0.052316613,-0.0009766687,-0.030859448,0.012264989,-0.004054406,0.034510054,0.010649793,0.030465497,0.02298044,0.011155362,-0.031148344,0.028390693,0.020393498,-0.0015142468,0.01649339,0.01736008,0.0046912925,-0.0106629245,0.009238137,0.016138835,-0.011575576,-0.040366784,0.0062211333,-0.0051279212,0.0003270609,-0.021325849,-0.008706304,-0.02907354,0.035271693,0.016900472,-0.0068875663,-0.0072421217,-0.0293887,-0.0040478404,0.016900472,0.0048620044,0.038738456,0.0010144223,0.0018958863,-0.009645219,0.01789848,-0.02836443,0.013459972,0.010918992,0.024398662,-0.020446025,0.007064844,0.016296415,-0.008194168,0.017346948,0.0065100305,-0.013538762,0.025134036,-0.010124525,-0.01860759,-0.004707707,0.004106933,0.0022783466,0.007222424,0.010321501,-0.028600799,-0.019579334,-0.030570552,0.02828564,-0.00045632588,-0.0023243073,0.011004347,-0.007576979,-0.013709474,-0.0061456263,-0.008903279,-0.021680404,0.00042595886,-0.019566203,-0.016532784,-0.01477314,-0.013801396,0.0079184035,-0.016046913,0.0058928416,0.03235646,-0.028469482,0.01246853,-0.021299586,0.00022590593,-0.009947248,0.0022783466,0.010223012,-0.025278484,0.018909618,-0.01781969,-0.017951006,-0.011312942,0.0033305222,0.038423296,-0.005649905,-0.011365469,-0.007268385,0.014116556,-0.009060859,-0.009868458,-0.03666365,-0.009756838,-0.0072355554,-0.020209655,0.017964138,-0.024963323,-0.0027215406,-0.015600435,0.015364066,0.0013377899,-0.032645356,-0.0031286227,-0.028023005,0.012770559,-0.0082073,-0.003988748,-0.003076096,0.0010431479,-0.022297593,0.0034306515,-0.0069597904,-0.009750272,-0.0028709136,0.0019533373,0.0076295063,-0.012238726,-0.004717556,-0.002401456,-0.031988773,-0.012435701,-0.03579696,0.0021371809,0.022140013,0.02728763,0.03934251,-0.018830828,-0.023124889,-0.0002437568,-0.026512861,-0.0025327727,0.0112210205,0.02359763,0.005370857,-0.001386213,0.004536995,-0.02836443,0.011844776,0.016677234,-0.025199695,0.0017038354,0.004021577,-0.0190672,-0.03041297,-0.0037031337,-0.0085487235,-0.006736552,0.01649339,-0.022744069,-0.0040117283,0.0021568784,-0.018725775,0.0022323856,0.004090518,-0.005751676,0.008404275,0.0007111625,0.021982431,-0.026749233,0.011115967,0.011293245,-0.011181626,-0.021312717,0.009822496,0.010899294,0.0005347056,0.016979262,-0.007471926,-0.0030399838,0.0034634806,0.0013607703,0.009034595,0.0023456463,0.008463368,0.014339794,-0.0055284374,-0.004425376,-0.03353831,0.01500951,0.0024293608,-0.008620948,0.024792612,-0.0034634806,0.023072362,-0.014326663,-0.023610761,0.0046912925,0.027917951,-0.021785457,-0.0014009861,-0.022652147,0.0047011413,0.008345183,-0.012586716,-0.02282286,-0.0075638476,-0.010170486,-0.03009781,-0.016283283,0.0019139424,-0.027812898,-0.015876202,-0.0069991853,-0.016519653,0.00508196,-0.008161339,0.015127695,-0.0198551,0.0054759104,0.17701505,-0.026381545,0.021457165,0.013092285,0.016440863,0.016007518,0.020839976,0.0005921567,-0.007301214,0.014050897,0.019329833,0.008194168,-0.020354103,0.004878419,-0.010603831,-0.019395491,-0.008509329,-0.030701868,-0.021089477,-9.9154444e-05,0.008942674,-0.015758015,-0.016677234,-0.021759193,0.018095454,-0.0056367735,-0.018331826,-0.005584247,0.0030925106,0.017255027,-0.009999774,-0.019080332,0.0070911073,0.00500317,-0.037740447,0.00627366,0.01860759,-0.031384714,0.042546645,0.0016398185,0.0033206735,0.017714636,0.015981255,-0.0041693086,-0.024713822,0.02820685,-0.023860263,0.014825666,-0.006368865,0.010426554,-0.034510054,0.00879166,0.005446364,0.007222424,-0.019907627,0.013565025,0.020524817,0.044595186,0.001091571,0.011687195,-0.006027441,0.02078745,-0.021680404,0.021299586,-0.004307191,0.0058042025,-0.007787086,0.014208478,-0.01625702,0.0023440048,-0.00058435975,-0.0056367735,-0.021273322,-0.010899294,-0.0046880096,-0.011969526,0.037267707,0.019369228,0.016427731,0.04220522,-0.021509692,-0.009461376,-0.0030449084,-0.0031893568,-0.015324671,-0.021312717,0.011168494,0.00052239466,-0.02477948,0.008010325,0.016847946,0.010636661,-0.0042842105,-0.0062408308,0.024635032,0.03135845,0.023151152,0.022284461,-0.022665279,0.009408848,-0.018266167,0.05213277,0.02697247,0.02446432,-0.013906449,-0.009454809,-0.024451189,0.03500906,-0.013643815,-0.018003533,0.01469435,-0.0040839524,0.005718847,-0.006808776,0.001887679,0.024950191,0.011949829,-0.0072552534,0.02252083,-0.02680176,-0.013656947,-0.01736008,0.00064345234,-0.010295237,0.007478492,-0.0065428596,-0.026919944,0.011523049,-0.0025344142,-0.016151967,0.04291433,-0.031542294,-0.01806919,-0.011890736,-0.0039033918,0.009540166,0.0025852995,0.016138835,-0.010833636,0.0014625408,-0.020130865,-0.021483429,-0.0155610405,0.013788264,-0.0028151039,-0.01672976,0.008174471,0.030675605,-0.024057237,-0.0072027263,-0.015364066,-0.0014953701,0.0020583908,-0.015758015,-0.00023411323,-0.023939053,-0.022284461,-0.03306557,-0.011240718,-0.010702319,-0.008686606,0.023466311,0.015836807,0.0130003635,-0.02070866,0.0039165234,-0.16840066,0.004563259,0.018121717,-0.032303933,0.0049046823,-0.0010538173,0.021667272,0.01805606,0.012028619,0.0021404638,0.008778528,-0.013151377,-0.030806921,0.012770559,0.0015429724,-0.0033420126,-0.021352112,0.0069532245,0.0024818876,-0.0044483566,0.013512499,-0.012133672,0.017517662,0.012757427,0.017452003,-0.0015741602,-0.008765397,0.0010932124,0.00030161827,-0.021916773,-0.0061686067,0.008371446,0.029572543,0.0072815167,0.00492438,0.0013279412,-0.0003059271,-0.025633039,-0.013985239,0.010400291,0.017767163,-0.0033567857,0.004907965,-0.010406856,0.01758332,-0.004021577,0.016230756,-0.013696342,0.029651333,-0.028128058,-0.0013377899,-0.009461376,0.007439097,-0.020354103,0.026762364,0.007951233,-0.0047930633,0.012908441,-0.011588708,0.0015872918,-0.014024634,-0.009743706,0.03212009,-0.011188191,-0.003522573,-0.013361485,-0.008719436,0.012829651,-0.02915233,0.008620948,0.004796346,-0.018016664,0.009270966,-0.034273684,-0.0011818511,0.0020173544,-0.024398662,0.003568534,-0.0025311313,0.009303795,0.0022701393,-0.0018170963,-0.027418949,-0.014549902,-0.0076557696,0.02070866,-0.00069803087,-0.012836217,0.0026525992,-0.0031548862,0.00804972,-0.047668,-0.024753217,-0.015994387,0.02820685,0.008909845,-0.0185288,-0.0063064895,0.005791071,-0.025068376,0.007826481,0.004057689,-0.0067956443,0.0045468444,0.03366963,-0.012028619,0.00381147,0.006355733,0.022442041,0.015744884,-0.009257834,-0.0052592377,0.0053610085,0.014917589,-0.00984876,0.021404639,0.020183392,-0.021562219,0.012731164,0.013414011,0.05730665,-0.0034634806,-0.017832821,0.023440048,0.0076623354,-0.026040122,-0.10058867,-0.03456258,0.029441226,0.023006704,0.012291253,0.0068744346,-0.0037425288,0.01969752,-0.035297956,0.023111757,0.012081145,-0.018594459,0.0023243073,-0.0030810204,0.0019418471,-0.016900472,-0.0043695667,-0.023308732,-0.02470069,0.02353197,0.015758015,-0.01976318,0.0004690472,0.016742893,0.0057221297,0.034299947,-0.02946749,0.04519924,0.004599371,0.004504166,0.000591336,-0.022967309,0.0029562695,-0.016375205,-0.0060537043,-0.0007546612,-0.027471475,-0.021903642,0.024687558,-0.017071184,-0.0061095143,0.0024080218,0.007314346,-0.022573357,0.0066544786,-0.028390693,-0.02618457,0.007583545,0.009014898,-0.040445574,-0.012251858,0.0068810005,-0.01477314,0.0033879734,0.029336173,-0.021877378,0.013958976,-0.0011637951,-0.003532422,-0.01679542,0.0007985703,-8.776681e-05,-0.008824489,0.020931898,0.03485148,-0.022652147,-0.031410977,-0.0027330308,0.0067496835,-0.014576165,0.00088474696,-0.0037884896,-0.031095818,0.021207662,-0.03663739,-0.00061103347,-0.026604783,-0.001234378,0.0052986327,0.007714862,-0.013867054,-0.009973511,0.00365389,-0.008016891,0.0057976367,-0.0025935068,0.019211648,0.010505344,0.0041233473,0.0034700464,-0.009408848,0.025344143,0.010689188,-0.012869046,-0.0026460334,0.0030531157,-0.008844187,-0.014037766,0.023807736,0.009001766,-0.012028619,-0.022494568,-0.06135121,0.008515894,-0.0023932487,0.0024703974,0.005866578,0.0007045967,0.011417996,-0.013335221,-0.0025951483,-0.008666908,-0.016046913,-0.00381147,-0.00988159,-0.000829758,-0.025659302,-0.032303933,0.028837169,0.0014691066,-0.018633854,0.012442267,0.0026214116,-0.001373902,0.04987412,0.008877016,-0.031752404,0.012068014,-0.0134074455,0.004642049,-0.022205671,-0.0047208387,-0.0065395767,-0.014799403,-0.012416003,0.018436879,-0.012166502,-0.0126655055,0.020078339,0.024017842,0.0029497037,0.044201236,0.00037363733,-0.022100618,0.008463368,-0.025028981,0.012402872,0.011037177,-0.025331011,0.0040018796,0.024372399,0.010459383,0.03243525,0.032408986,-0.0142610045,0.0012450474,-0.009087123,-0.0022225368,-0.0042907763,0.00913965,-0.022402646,-0.00976997,0.026762364,0.023151152,0.0046157856,0.0009922626,-0.013164509,0.020038944,-0.010177052,0.0003120826,0.0017973987,-0.013775133,-0.015823673,0.0037129824,0.009481073,0.011326074,0.0023784756,-0.005242823,-0.016874209,0.013282694,-0.011641234,0.0013788264,0.010682622,0.012606413,-0.021220794,0.0037195485,0.015022642,0.007380004,-0.032015037,0.019264175,0.0076623354,0.0021174834,-0.008095681,0.019132858,0.008463368,0.010328067,0.027681582,0.011825078,-0.017189369,-0.017176237,0.016427731,0.00680221,0.033091832,-0.011188191,0.009054293,-0.028968487,-0.020196524,0.0007201906,-0.027103787,-0.022717806,-0.0051574674,0.0148913255,-0.002176576,0.008666908,-0.012100843,0.0026378261,-0.02124706,0.010846768,-0.006601952,-0.0010267332,-0.027760372,0.035613116,-0.026329018,0.016611576,0.011385166,-0.00513777,0.011266981,-0.00015439984,0.022665279,-0.01696613,0.010295237,-0.016611576,-0.0023062513,0.0067825126,-0.013059456,-0.0073537407,-0.004678161,-0.04283554,-0.0023604194,-0.013177641,-0.012383174,0.05410252,0.005177165,0.002872555,-0.0002205712,-0.00410365,0.008233563,0.00627366,0.014379189,-0.027103787,-0.018712644,0.012416003,-0.016453994,-0.010735149,-0.017005526,-0.011385166,0.007984062,-0.02094503,0.02618457,-0.008529026,0.014812535,0.028968487,-0.005951934,0.011588708,0.016138835,-0.021378376,0.0003576331,0.010656359,-0.007439097,0.005406969,-0.022888519,-0.006736552,0.009566429,-0.07427278,-0.01571862,0.01183821,-0.02157535,-0.02375521,-0.0035816657,-0.010971518,0.036243435,0.00025935067,0.0064575034,-0.021562219,-0.0010390442,-0.020222787,0.009054293,0.005715564,-0.022179408,-0.01813485]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41c14baa-a5da-11ee-b807-47a1874ed782', 'Science & Education', 'this article is about biology', '[0.014551661,0.016360857,0.007614241,-0.019471632,-0.0044383868,0.025940483,-0.016438952,0.007171704,-0.015579909,-0.02294685,-0.0027853805,0.027359204,-0.011043903,0.003960056,0.013887855,0.015957367,0.036001693,0.0014358051,0.009664229,0.0033076394,-0.01486404,0.031446166,0.009332326,0.0036118836,0.0014317377,0.018534495,0.020877337,-0.039802305,-0.0134323025,-4.5409115e-06,0.011974533,0.004620608,-0.020851307,-0.03313822,-0.0022257012,-0.0029659746,5.1681865e-05,-0.0065144063,0.023805892,0.0042691813,0.01681641,0.015970383,-0.0111870775,0.0010046568,-0.012657862,-0.012534212,0.014564676,-0.018599574,-0.0072693224,0.0042756894,0.012325959,0.02130686,-0.029780142,-0.0035110111,-0.020812258,-0.032305207,0.007236783,0.010959301,0.0026698653,-0.020968448,-0.014356424,-0.0062443283,-0.03233124,0.019536711,-0.034257576,0.006729167,0.0041390234,0.008356142,-0.002497406,-0.0101002585,0.019523695,0.0005096498,0.009748831,0.005834331,0.03904739,-0.012501673,-0.007087101,-7.036665e-05,0.012436594,-0.0009867601,-0.009098042,-0.018521478,-0.017493231,0.016048478,0.02025258,-0.0013414406,-0.003268592,0.0003660693,0.0017213391,-0.006924404,0.02059099,0.013783729,-0.008362649,-0.008421221,-0.030795375,0.03675661,0.0046336236,0.028556658,0.0027089126,-0.045190845,-0.010770571,0.015488798,0.007978683,-0.020304643,-0.041051824,0.009189152,0.019575758,0.008011223,0.02312907,-0.034075357,-0.025471915,0.013679602,0.008238999,-0.045190845,0.0047572735,0.0011030887,0.034491863,0.011154538,0.02409224,-0.014746898,0.030743312,0.0048939395,0.012989765,-0.020486863,0.009918037,0.017167836,-0.03792803,-0.0018514971,-0.014473566,-0.007048054,0.009859466,0.008557886,0.0010241806,0.021775428,-0.008271539,-0.022204949,0.003829898,0.0089418525,-0.0076467805,-0.021528129,-0.00041447178,0.036444232,-0.036600422,-0.013171987,-0.009800895,0.03186267,0.014890071,0.022595422,0.004724734,0.03365885,0.009442961,0.0016562601,0.045190845,-0.0010607875,0.014330392,0.0034036308,0.00013290349,0.006800754,-0.00032315782,-0.005040367,-0.012456117,-0.016855456,0.02074718,-0.02148908,0.0062410743,0.03516868,0.01105692,0.014330392,0.015098324,-0.002619429,-0.025042392,0.020239564,-0.007373449,0.016217683,0.017597357,0.009332326,0.0069439276,-0.0047149723,-0.01535864,0.0025331995,-0.018560527,0.013354207,0.017636405,0.017167836,-0.0043830695,0.014044045,0.019510679,-0.0023379624,0.019068142,0.0008533482,0.010321527,0.018469416,0.0010022164,0.009865974,-0.68556803,-0.036079787,0.019146238,0.021801459,-0.00031888703,0.015644988,0.009605658,-0.0134323025,0.003973072,0.027098889,0.0015562011,-0.009091534,-0.024313508,0.00045921357,-0.019315442,-0.016985614,-0.004038151,-0.03220108,0.01879481,-0.0059384573,-0.026513178,0.0006511966,-0.00045351917,0.0015602686,0.014512613,0.019979248,0.021515112,-0.0029350622,0.002555977,-0.0023916527,-0.008850742,0.012228341,0.008551379,0.025445882,0.03022268,0.00023062364,0.009521055,0.025029376,0.0032604572,0.036392167,-0.027827773,-0.01257326,-0.0039860876,0.009332326,-0.01758434,0.006026314,0.013757697,-0.004090214,0.024300493,0.017467199,0.0031237912,0.012677386,0.004223626,-0.0008875146,0.0011079697,0.0051412396,0.008993915,0.022243997,0.016243715,0.001277175,-0.0143824555,0.021983681,-0.008115349,0.008284555,0.0010778707,0.0071847197,-0.026890635,0.015423719,0.017089741,-0.014811977,0.012325959,0.0013690991,-0.0059840125,0.014942135,-0.0075817015,0.030977596,0.015475783,-0.007978683,-0.007230275,0.012150247,0.0006442819,-6.7824505e-05,-0.00255435,-0.028009994,0.046622586,-0.02229606,-0.012365007,0.02523763,0.0020320914,0.003706248,0.011089459,-0.0029724825,-0.007796462,0.0055447295,-0.0018986793,-0.0021638763,-0.009455976,-0.0070090066,0.0033678373,0.01737609,0.014538645,0.0004677552,0.031758543,-0.008030746,0.016868472,0.025068425,-0.0094169285,0.023818908,0.019406553,-0.017011646,-0.0008533482,-0.0013308652,-0.029545859,0.028218247,-0.020799244,-0.027176984,0.0034426781,-0.0018319734,0.00397958,0.0060458374,-0.0018189576,-0.0078029702,-0.0011445766,-0.004418863,-0.0022289553,0.021515112,-0.040583253,-0.013204526,-0.028869037,-0.02514652,0.0100286715,0.0010209265,0.016425936,-0.0024241921,0.03004046,0.0120721515,0.0063159154,0.009573119,0.01024994,0.0041813245,-0.02310304,-0.019992264,-0.0004946003,-0.0061727418,-0.026396036,-0.0009973354,-0.013978966,0.0009330699,-0.013965949,-0.00042016618,-0.00755567,0.0047410037,-0.005502428,0.029545859,0.006572977,0.0039372784,-0.0069439276,0.0017392358,-0.006341947,0.004744258,-0.005066399,0.013185002,-0.022660501,0.0035598204,-0.018885922,0.017857673,-0.004353784,0.012755481,-0.0076988437,-0.02622683,0.008382173,0.0011893184,-0.0010079107,-0.007223767,0.012586275,-0.0013690991,-0.0169726,0.020304643,0.012618815,-0.014929119,-0.016608156,-0.028036026,-0.017831642,-0.00039250762,0.0068332935,0.0040739444,0.039021358,0.013640555,0.0050273514,0.015306577,0.0044448944,0.024469698,-0.0128856385,0.008147889,0.0027072858,-0.024365572,-0.0065599615,0.0012690402,0.020799244,0.024443666,0.028764911,-0.0052779056,0.030951565,-0.02254336,0.02476906,-0.020955432,0.00046938218,-0.013848808,0.028999195,-0.006911388,0.020460833,0.0012381277,-0.009592642,-0.014551661,0.0103020035,-0.015840225,-0.0143824555,-0.016360857,-0.033268377,-0.004822353,-0.015345625,-0.009742324,0.0017245931,0.009683752,-0.003195378,0.044852436,0.019302426,0.011545012,-0.007288846,-0.031758543,0.0073148776,-0.00767932,0.0025852625,0.010334543,0.010425653,0.034543924,0.030456964,-0.011154538,0.023063991,0.009085026,0.008212968,0.020226547,0.0057399664,-0.0060686152,0.023766845,-0.012931194,0.009586134,0.0042561656,-0.0030033952,-0.0050956844,-0.013145954,-0.0074515436,-0.027853806,0.012566752,-0.0012698537,-0.009098042,0.009872482,0.0089418525,0.012280405,0.01062089,0.013328176,0.006338693,0.008551379,-0.015684035,0.015579909,-0.0071456726,-0.007887573,-0.014929119,-0.0143824555,-0.017089741,-0.040921666,-0.0061369482,-0.0017978069,-0.02040877,0.006328931,0.020525912,0.004617354,-0.0018921715,0.0021817728,0.012404054,-0.0054145716,-0.011681678,-0.0017815372,0.029545859,-5.4401964e-05,-0.015163403,-0.0038852154,-0.013822776,-0.017232915,0.0063647246,0.00817392,0.021827491,0.015723083,0.0007707792,-0.012404054,-0.01619165,0.028452532,0.0013056471,0.02557604,0.00078582874,-0.0036867245,-0.0054731425,0.021332892,0.008011223,0.026864605,-0.0055609993,0.0040771984,-0.013106908,0.013119923,-0.027827773,0.0022956613,-0.01486404,-0.00424315,0.0026780001,-0.0063224235,0.003273473,-0.0020727657,0.01836529,0.02009639,-0.013575476,0.0024583586,-0.015684035,-0.023311293,0.010178353,0.07080594,0.01139533,-0.017141804,0.03152426,-0.0054113176,-0.03430964,-0.0071456726,0.0045717987,0.014981182,-0.032122985,-0.0089418525,-0.007438528,0.0059254416,-0.0038591838,0.010718509,0.016451968,-0.017324025,-0.010288987,0.013705634,-0.004880924,0.013041829,-0.024391603,-0.0052909213,0.040687382,0.032096956,-0.012404054,0.012104691,0.010308511,-0.013048336,-0.006088139,-0.0062963916,-0.0028634754,0.00422688,-0.013178494,-0.006439565,0.024482714,-0.006345201,-0.0035468047,0.0005218521,0.011343267,0.0169726,0.023011928,0.008252015,-0.014018013,0.0029757365,-0.019718932,0.0015252887,0.026174767,-0.012150247,0.003008276,0.014890071,-0.0048516383,-0.015397687,-0.02213987,0.005434095,-0.0021362177,-0.0024046684,0.013061352,0.00018150936,-0.027333174,-0.0076923356,-0.02972808,0.0046368777,0.006722659,0.0016546332,-0.008375665,-0.00060360756,-0.006709643,-0.031472195,0.0075621777,0.006091393,-0.038058188,-0.015319592,-0.017870689,0.0066771037,-0.004239896,0.020643054,-0.01390087,-0.008245507,0.013666587,-0.011063427,-0.012378023,-0.011902946,-0.040296905,0.005440603,0.0026112942,0.0068202773,0.010991841,-0.0132240495,0.004526243,0.015384671,0.029155385,0.0034849795,0.0046303696,0.0049460027,0.012026596,0.012722941,0.006576231,-0.0022191934,-0.016022446,-0.007965667,-0.016686251,-0.012840084,0.009761848,0.005177033,-0.0059677428,3.9301605e-05,0.027697615,-0.0121372305,-0.017206883,0.023766845,0.0083301095,0.022504313,0.010406129,0.011453901,0.013601508,0.00250066,0.010822635,0.0042073564,-0.011004856,0.02312907,-0.025159536,0.010874698,0.005417825,-0.0036997402,0.010952793,-0.02003131,-0.03384107,-0.019744964,-0.0035468047,-0.013523413,0.016699268,-0.010419145,-0.026174767,-0.011304219,-0.0111870775,-0.030743312,0.028843006,-0.011154538,-0.02393605,-0.007848525,0.004536005,0.014890071,-0.02173638,0.01610054,-0.031550292,-0.004906955,-0.017415136,0.0014463804,-0.011121999,-0.002442089,-0.008499315,-0.01207866,-0.01610054,-0.0034459322,-0.032617588,-0.016803393,0.0119354855,0.048444796,0.0374074,0.024261445,-0.03298203,-0.014929119,0.015475783,-0.006400518,0.008766139,0.0052713975,0.0146557875,-0.038188346,-0.0056098085,0.03316425,-0.015957367,0.028764911,-0.011655646,0.019770995,0.04081754,0.021345906,-0.012729449,-0.002751214,-0.013139447,-0.015840225,0.012156754,-0.0011518981,0.003273473,-0.025432866,-0.0041194996,0.021905586,0.014694834,0.0010412637,-0.014551661,0.027072858,-0.017076725,0.032461397,0.0033645835,-0.0061792494,-0.04493053,-0.01452563,-0.013952934,0.007842017,0.024964297,-0.0026064133,-0.005193303,-0.0040088654,0.003953548,-0.0063159154,-0.015475783,0.0064265495,-0.017779578,-0.002443716,-0.00755567,0.006924404,-0.01774053,-0.027749678,-0.038188346,0.018170051,0.018078942,-0.025771277,0.045138784,0.002996887,-0.02508144,0.03969818,-0.0059905206,0.024079224,-0.0005068026,0.029676016,0.022556376,0.009709785,-0.037121054,0.011486441,0.004952511,-0.00060808175,0.028452532,0.022569392,0.007165196,-0.021502096,0.015983399,0.019731948,-0.00027109464,-0.04071341,0.010822635,-0.00294157,-0.0009802522,-0.017610373,-0.006615279,-0.02523763,0.024795093,0.019784011,-0.005772506,-0.015176419,-0.021502096,-0.009163121,0.003911247,0.0067161513,0.040166747,-0.008284555,0.009156613,-0.009716292,0.015007214,-0.023428435,0.0060555995,0.0034133927,0.02411827,-0.02777571,0.016295778,0.014369439,0.00090053043,0.008844234,-0.00357609,-0.010887714,0.030118553,-0.013536429,-0.009032963,0.0027105396,0.029988395,0.0011697947,0.004041405,0.002686135,-0.0128856385,-0.019250363,-0.01901608,0.030456964,0.00963169,0.0027935153,-0.0006690933,-0.009976608,0.0016554466,-0.025888419,-0.0006898372,-0.02449573,-0.010380098,-0.020669086,-0.012827068,-0.011981041,-0.0044448944,0.004871162,-0.0094820075,-0.0058050454,0.038162317,-0.03266965,0.008707568,-0.021332892,-0.0009346969,-0.010822635,-0.0015537607,0.010308511,-0.037667714,0.01960179,-0.019393537,-0.028452532,-0.009807403,-0.014083092,0.030977596,-0.0036574388,-0.02074718,0.0060067903,0.0040576747,0.0015789788,-0.010406129,-0.046960995,0.0026552225,-0.01000264,-0.016178636,0.019562742,-0.020942416,-0.0015098325,0.008024239,-0.0013308652,0.0031595847,-0.013113415,-0.015631972,-0.035012495,0.029832207,0.0070936093,-0.00730837,-0.0041975942,-0.0033548216,-0.024873188,-0.0045034657,-0.011095967,-0.015749114,-0.008004715,-0.0073409094,0.013080875,-0.00879217,-0.0088051865,-0.0051575094,-0.025992546,-0.014031029,-0.025315724,-0.008258523,0.011584059,0.013939918,0.021749396,-0.013731666,-0.02663032,0.010315019,-0.026435083,-0.020773211,0.008889789,0.013679602,0.00079721754,0.0048614,0.011258665,-0.008662012,-0.009058994,0.004731242,-0.024808109,-0.00052022515,0.01024994,-0.022283044,-0.010256448,0.011948502,-0.011076443,-0.013848808,0.017245932,-0.022777645,-0.0017294739,0.0006849563,-0.02415732,0.020174485,0.0024258192,0.0030001411,0.0011608463,0.026916668,0.013913887,-0.023897003,-0.0017766563,0.019940201,-0.01764942,-0.03220108,0.013939918,0.006267106,0.013614523,0.040375,-0.0053202068,-0.015931334,0.0034491862,0.0014781064,-0.0016001295,0.0015033245,0.010360574,0.012690402,0.0061825034,-0.018807827,-0.023337323,-0.0066120247,-0.00950804,-0.0074710674,0.015840225,0.006794246,0.02467795,-0.013965949,-0.028322374,-0.014044045,0.008850742,-0.0035988677,-0.013054844,-0.023662718,0.006478613,3.6022233e-05,-0.013256589,-0.030925533,0.0013731666,-0.0196929,-0.028712848,-0.0028569673,-0.0074450355,-0.016894504,-0.004096722,-0.0084863,-0.016517047,-0.001791299,0.0058473465,0.01962782,-0.029441733,-0.00882471,0.17420343,-0.03860485,0.011707709,0.014148171,0.009911529,0.010614382,0.014187219,-0.001791299,-0.0035923598,0.008759631,0.017857673,0.015788162,-0.01715482,-0.0041975942,-0.007815986,-0.019653853,-0.01412214,-0.006924404,-0.01941957,-0.011102474,-0.0059189335,-0.017089741,-0.0169726,-0.01600943,0.018430369,-0.018664652,-0.018157037,-0.0107770795,-0.0009094788,0.0155408615,-0.0009981489,-0.016113557,0.00032925897,-0.0026422066,-0.031081723,0.010523272,-0.00020072798,-0.022660501,0.024703981,0.010666446,-0.0015122729,0.029441733,0.018677669,-0.006865833,-0.020551942,0.04261372,-0.019862106,0.01024994,-0.011011364,0.012781512,-0.02905126,0.018508462,-0.011284696,0.009058994,-0.0049394947,-0.008252015,0.014824992,0.020083373,0.0029301813,0.019966232,-0.015840225,0.02377986,-0.017844656,0.022387171,-0.01675133,0.012722941,-0.02059099,0.029311575,-0.009540579,-0.003140061,-0.009455976,0.0016107048,-0.025315724,-0.004932987,-0.009358358,-0.009449468,0.028218247,0.029936332,0.018404337,0.019510679,-0.010477716,-0.0024697473,-0.015189434,-0.012182786,-0.012234849,-0.023155103,-0.00076386455,0.006091393,-0.026330957,0.0062736142,0.01551483,0.004223626,-0.007926621,0.0013145955,0.015462766,0.032435365,0.0012910044,0.021345906,-0.019237347,-0.002946451,-0.029311575,0.054301903,0.020617021,0.011610091,-0.012280405,-0.0046921945,-0.036001693,0.028660784,-0.011870407,-0.019120205,0.016894504,0.0031660926,0.0034882335,-0.0059644887,0.004425371,0.023454465,0.020213533,-0.01356246,0.036079787,-0.030118553,-0.011258665,-0.019406553,-0.0028699832,-0.004353784,0.0004828047,-0.011336759,-0.017024662,0.017363073,-0.010842158,-0.029832207,0.02517255,-0.0073344014,-0.026708415,0.0043863235,0.0042301337,0.00603933,-0.010191369,0.0029936333,-0.019224333,-0.0010624144,-0.017870689,-0.0074450355,-0.0060002822,0.0070740855,-0.0024827633,-0.0072107515,0.027203016,0.025224615,-0.01715482,-0.008785663,-0.01024994,-0.012709926,-0.006683612,-0.014851024,0.0062931376,-0.018833857,-0.02263447,-0.03105569,4.141159e-05,-0.0026259369,-0.0038591838,0.016491015,0.017011646,-0.00085497514,-0.015007214,0.0007109879,-0.16639395,-0.011063427,0.016269745,-0.017506247,0.0074645593,0.012195801,0.010829143,0.017389104,0.02517255,0.011141522,0.0061402023,-0.006403772,-0.023844939,0.00035854452,-0.003332044,0.004483942,-0.01740212,0.022972882,0.0021703842,-0.0073929727,0.012156754,-0.019523695,0.010334543,-0.011928977,0.0134323025,-0.0018986793,0.0029659746,-0.00020489711,-0.0008842607,-0.019458616,-0.014265313,0.003400377,0.017870689,0.005502428,0.0057236967,0.00653393,-0.0047149723,-0.02173638,-0.010275971,0.01926338,0.020486863,0.0018368543,-0.0015806059,-0.006084885,0.005242112,-0.008544871,0.013028813,0.0045392592,0.05000669,-0.029936332,0.01551483,-0.0045815604,0.0040511666,-0.011460409,0.037902,0.019276395,-0.029597921,0.012898655,-0.011681678,0.001221858,-0.010009147,-0.008915821,0.031133786,-0.018924968,-0.0065013906,-0.006989483,-0.021202734,0.013328176,-0.019653853,0.007750907,0.003719264,-0.028738879,-0.00057147484,-0.018339258,0.007913604,-0.0009395778,-0.024547793,-0.002954586,-0.009488516,-0.00056618714,0.0008509077,0.016881488,-0.01266437,0.0021362177,-0.001670903,0.01762339,-0.006846309,-0.0032832348,0.0028716102,0.008779155,0.016985614,-0.05029304,-0.03087347,-0.022530343,0.02139797,0.019510679,-0.014434518,-0.01699863,0.0053202068,-0.016360857,0.01062089,-0.0070090066,-0.0062443283,0.003956802,0.037303273,-0.0031872431,0.014629755,0.0046531474,0.03985437,0.015462766,0.004161801,-0.0023818908,-0.008473284,0.020018294,-0.020617021,0.0074515436,0.022842724,-0.02678651,-0.0068072616,-0.0036704547,0.054197777,0.015319592,-0.01600943,0.01340627,0.007861542,-0.021345906,-0.109332696,-0.029467763,0.021111622,0.035220746,-0.0070024985,0.004936241,-0.0044318787,0.032903936,-0.023220181,0.02508144,0.00053608813,-0.01105692,-0.0020369722,-0.004021881,-0.014968166,-0.00422688,-0.024196366,-0.020473849,-0.0149941975,0.024001129,0.02049988,-0.018508462,0.00011429496,0.0057855216,0.0015610821,0.036548357,-0.0274373,0.04198896,0.015671019,0.009124073,-0.006644564,-0.020890353,-0.0013967577,-0.014877056,-0.008863757,0.0050338595,-0.020148452,-0.029623954,0.013861824,-0.0201875,-0.014317377,0.00059262547,0.006107663,-0.029545859,0.024690967,-0.021371938,-0.011408346,0.0016351094,0.0012942583,-0.033554725,-0.012033104,-0.0030945058,-0.018846873,0.00066014496,0.02148908,-0.020708133,0.0023298275,0.013783729,-0.00072563067,-0.011577551,0.009098042,0.0008460268,-0.013575476,0.02467795,0.025875404,-0.042848002,-0.037667714,-0.006257344,0.01155152,-0.020773211,0.006930912,-0.002996887,-0.01941957,0.005691157,-0.026643336,0.0012592783,-0.016725298,0.009091534,0.016803393,0.004174817,-0.0034947414,-0.017831642,0.0054080635,-0.016425936,-0.0035077573,0.006527422,0.021749396,0.007217259,0.012104691,0.0061890115,-0.014031029,0.025029376,0.01086819,-0.013113415,-0.013237066,0.012020088,-0.018664652,-0.008909313,0.024886204,-0.0068983724,-0.012007073,-0.018013863,-0.06971261,0.008935344,-0.0057822675,-0.00012456524,0.011987548,-0.005707427,0.0043147365,-0.0033027583,0.0005787962,-0.00067234726,-0.016725298,-0.006976467,-0.014668803,-0.011193586,-0.017688468,-0.034101386,0.039932463,0.004932987,-0.0035533125,0.022022728,-0.00037928845,-0.0055317134,0.05669681,0.0043277526,-0.025029376,0.012195801,-0.0030343076,0.0010713628,-0.030951565,-0.011421362,-0.0061141704,-0.015644988,-0.0152675295,0.0065209144,-0.0076923356,-0.0023818908,0.023675734,0.018990047,-2.890422e-05,0.03628804,0.0036704547,-0.014330392,0.0043407683,-0.00857741,0.00805027,0.0099635925,-0.03313822,0.0073994803,0.028530626,0.0101002585,0.036834706,0.020760195,-0.010861683,-0.008180428,-0.003650931,0.0067421827,0.0023363356,0.017428152,-0.017063709,-0.0029074035,0.023428435,0.03855279,-0.00030912517,0.011440885,-0.009905022,0.020864323,-0.020538928,0.011545012,0.007894081,-0.04066135,-0.014668803,0.010594859,0.0070545617,0.009293279,0.0066771037,0.008564394,-0.020512896,0.015072293,-0.007236783,0.008252015,0.022009712,0.018131005,-0.0014154679,0.017844656,0.0036737085,0.012234849,-0.017258946,0.029181417,0.0017132042,0.0036476771,-0.0073344014,0.02858269,0.003966564,0.022009712,0.024404619,0.019211316,-0.012612307,-0.020356705,0.007048054,0.020760195,0.016530061,0.0055219517,0.006081631,-0.027489362,-0.026864605,0.012566752,-0.022322092,-0.0323833,-0.0076337648,0.010751048,-0.015475783,0.010132798,-0.015775146,0.0073344014,-0.016451968,0.014824992,-0.00022838656,0.0033710913,-0.036834706,0.038422633,-0.01805291,-0.0012893773,0.016061492,-0.0037355337,0.0046954486,0.010477716,0.032591555,-0.025367787,0.020291626,-0.023949066,0.0034133927,0.015579909,-0.0130223045,-0.021502096,0.0055870307,-0.025693182,0.007165196,-0.013243573,-0.025719214,0.0678904,0.0030164109,0.007822494,0.008076302,-0.0182091,0.02539382,0.015345625,0.026487146,-0.027020793,-0.021254797,0.012853099,-0.011531996,-0.013536429,-0.015345625,-0.039437864,0.0127489725,-0.0060458374,0.016061492,-0.017284978,0.012325959,0.017011646,-0.008714076,-0.00027129802,0.0055382214,-0.025888419,0.0046141,0.01421325,-0.014759913,0.007087101,-0.019731948,-0.0005812367,-0.0023949065,-0.068254836,-0.01226088,0.007848525,-0.0153326085,-0.009859466,-0.0028358167,0.003320655,0.022556376,0.0090785185,0.003784343,-0.026656352,-0.0081283655,-0.024482714,0.012996273,-0.002744706,-0.019588774,-0.0013861824]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40602db2-a5da-11ee-8347-838af634529f', 'Technology', 'this article is about Big Tech', '[0.011441389,-0.0010788592,0.014298414,-0.010497906,0.0056841513,0.015454512,-0.043719128,0.0029666552,-0.013109094,-0.02910179,0.021713391,0.016650477,0.0014600727,0.004391846,0.020198504,0.005574521,0.015427936,0.010637435,0.022205064,-0.009036172,-0.036118113,0.02910179,-0.02189943,0.014604049,-0.0007711476,0.0005817867,0.011102532,-0.041300625,0.014205394,0.010066031,0.019773271,-0.0221652,-0.021434333,-0.0010655707,-0.015255185,-0.0262049,0.00062954216,-0.0121456785,0.008371748,-0.0014409705,0.025753092,0.02417176,-0.01784644,-0.0041626194,-0.017819863,0.010384954,0.028596828,-0.014750223,0.0015912965,0.0029284507,0.012172256,0.0028121765,-0.032104988,-0.017660402,-0.020291522,0.015095723,-0.023985723,0.007773766,0.02049085,0.0054848236,-0.003916782,-0.0016103988,-0.007846853,-0.0022706706,-0.0070894086,0.0027955659,-0.021314736,0.012717084,-0.00029670703,-0.012438025,0.013142316,0.01687638,0.02795898,0.019627098,-0.009873347,-0.006687432,-0.004019768,0.0016145514,0.01750094,0.006850216,-0.007202361,-0.0038968495,0.011634072,0.0063851187,0.009866703,0.014032644,-0.004670904,0.012198833,0.017912883,-0.0020979203,0.0007944025,0.012072592,0.0017175372,0.021753257,-0.03160003,0.039971773,0.016397996,0.017540805,-0.004833688,-0.030111715,0.012351651,0.008331883,-0.021381179,-0.0134346625,-0.03630415,0.018657038,0.005584487,0.0070030335,0.023374451,-0.020384543,-0.0014451231,-0.0021460908,-0.019773271,-0.02259043,-0.002747395,-0.009747107,-0.0057804924,0.00029172385,0.01609236,-0.02910179,0.04281551,0.0059964308,0.015547532,-0.019361328,0.020942658,-0.0008861761,-0.03877581,-0.021500776,0.021567218,-0.008112622,0.04223082,-0.0057804924,0.0014750223,0.0006843572,0.015109012,-0.014869819,0.012956277,0.019494213,-0.01732819,-0.02664342,0.0066409223,0.01643786,-0.0225107,-0.0019932734,-0.0038702723,0.00011274452,-0.0025497288,0.04223082,0.016756784,0.019680252,-0.008086045,-0.02498236,-0.009713885,0.02277647,0.0011178941,0.0050296932,-0.0015240236,0.007507996,-0.005574521,-0.011760313,-0.014537606,0.0001704664,0.023068817,0.015188742,0.023587069,0.03175949,0.0076010157,0.013820028,0.012869901,0.0030845904,-0.030563524,-0.0048768753,-0.020437695,0.0028138375,-0.0051858327,0.012584199,-0.0058868006,-0.005733983,-0.018736769,-0.017288323,0.0044715763,-0.0025464066,0.028703136,0.017979326,-0.004265605,0.028091865,0.0060761617,0.004561274,0.007634237,-0.017607247,0.030749563,0.026789593,-0.020597158,-0.0023769785,-0.6748426,-0.018231807,-0.017966038,0.011760313,-0.015454512,0.0003378183,0.02726798,0.008963086,0.015986051,0.016836515,-0.0053619053,-0.01706242,-0.002666003,-0.010145761,-0.012783526,-0.010590926,0.012730372,-0.029580176,0.012504468,0.023055527,-0.023427606,0.012218766,-0.009135836,-0.0042257393,-0.0025630172,-0.00042024846,0.012737016,-0.015055858,-0.010172338,0.015175454,-0.033726186,0.018165365,0.008398325,0.010365021,0.022935933,0.011800178,0.0013612396,0.0045047975,0.009434827,0.012384872,-0.027932404,-0.02550061,-0.013301778,0.013394796,-0.001576347,0.008112622,0.010796897,-0.020437695,-0.004295504,-0.006823639,0.010105896,0.0006503054,-0.007747189,0.013607413,0.0036277575,0.021421043,0.008850134,0.02014535,0.0106972335,-0.0072887363,-0.01538807,0.011687226,-0.020198504,-0.020185215,-0.017633826,-0.001848761,-0.00028321092,0.0048203995,0.013740297,-0.010411531,0.00092604157,0.0061891135,0.0038769166,0.0166239,-0.014192106,0.026018862,0.04781198,-0.02936756,0.0020713431,0.019600522,-0.0038503397,-0.0092554325,-0.01125535,-0.0240123,0.028277904,-0.0071159857,-0.01468378,-0.0129496325,0.015560821,0.0025082023,0.015321627,0.0056476076,-0.020916082,-0.015401359,0.0073551787,0.004215773,0.002913501,0.004647649,-0.000856277,0.019241732,2.1139598e-05,-0.005162578,0.024211626,0.0032291028,0.020211792,0.0070362547,0.014444588,0.019162001,0.011780245,-0.012996142,0.008371748,-0.025008935,-0.018045768,0.0057738484,-0.009973011,-0.030802717,0.0066475663,-0.025872687,-0.02163366,-0.004890164,0.02479632,-0.008152488,0.0068767928,0.0012848307,-0.014922973,0.023786396,-0.009660731,-0.016995978,-0.034443762,-0.012557622,0.006165859,-0.020118773,0.009461404,0.007069476,0.0124646025,0.018364692,0.01011254,-0.02506209,0.021580506,-0.025753092,-0.00288028,-0.016730208,0.0067937397,0.015560821,-0.007315313,-0.026749728,0.009381673,0.0012109135,-0.028517097,-0.00025040496,-0.011680582,-0.013660567,0.013527682,0.021088831,0.006162537,0.0040064794,-0.012345006,-0.0113417255,-0.028596828,0.0009102615,-0.0155209545,0.008743825,-0.019932734,-0.033566725,-0.015534244,-0.0098932795,-0.008491345,0.0023055528,-0.009806905,-0.014032644,0.014338279,-0.0076475255,0.010963003,0.009262077,-0.013521037,0.02997883,-0.008763758,0.026696574,0.021832988,-0.01059757,-0.009328519,-0.0067804516,0.0009725513,0.00712263,0.02672315,-0.010238781,0.019932734,0.026085304,-0.008777047,0.018936096,-0.013328354,0.016584033,-0.014178817,-0.0076275924,0.000105840736,-0.0027324455,-2.0633493e-05,0.004312115,0.019932734,-0.0065080374,0.01906898,0.024038875,0.028118443,-0.011049379,0.014564184,-0.011242062,-0.003202526,-0.030297754,0.005464891,0.013122383,0.035746034,-0.0032124922,-0.006112705,-0.009109259,0.0007101036,0.012590843,0.001374528,0.02136789,-0.007999671,0.011687226,0.004976539,-0.027586903,0.0017391309,-0.028782867,-0.02058387,0.019454347,0.019640386,0.01582659,0.017833153,-0.043586243,-0.007182428,0.023892703,-0.016916247,0.0075345733,-0.0013437985,0.009095971,0.029500445,-0.023002375,0.022656873,-0.015228609,-0.018710192,0.041779008,0.023188412,-0.026138458,0.021181852,0.008006315,0.029447291,0.015055858,-0.0062588784,-0.0119928615,-0.004484865,-0.009720529,-0.022005737,0.017102284,0.0188165,-0.021766545,0.01942777,-0.012743661,0.00756115,0.023347875,0.002963333,0.007255515,0.011355014,0.004112787,-0.00795316,-0.009368384,0.00940825,0.008092689,0.006003075,-0.01601263,-0.01397949,-0.009873347,0.0132752005,-0.0024633536,0.009999588,0.016902957,0.0010373327,0.0024068775,-0.008790336,0.022523988,-0.0043619466,-0.03314149,-0.004684192,0.013381508,-0.011634072,-0.009474693,-0.023999011,0.0023504014,-0.013527682,0.0029483836,-0.007687391,0.027666634,0.023733241,0.032902297,-0.008325239,1.2344409e-06,0.043373626,0.006607701,0.004139364,-0.00450812,0.0050762026,0.018138787,0.010624147,-0.005501434,0.029420715,-0.0298991,0.0045778845,-0.00031311,-0.005664218,-0.027507171,0.012457958,-0.034364033,-0.00077903765,-0.004518086,-0.022670163,0.010471329,-0.00082347105,0.027374286,0.014816665,0.011328436,0.008092689,-0.006823639,-0.019680252,0.02619161,0.12958935,0.00940825,-0.022563854,0.026165035,-0.03234418,-0.02947387,-0.011434745,-0.024105318,0.009275366,-0.034443762,0.016464438,-0.0018221841,0.01147461,-0.016291687,0.020078907,0.004923385,-0.008092689,-0.0026975633,-0.0027523784,-0.003531416,0.002935095,-0.013022719,-0.010916494,0.0068635046,0.04052989,-0.02567336,0.057565734,0.03369961,-0.0055878097,0.008092689,-0.004212451,-0.0051127463,-0.009115904,-0.0020181893,-0.011840044,0.025965707,-0.018165365,0.019813137,-0.00024023096,0.002119514,-0.0030098427,0.021141985,0.011554341,-0.02910179,0.00019631666,-0.039147887,-0.0027357677,0.04581871,-0.014444588,-0.018417846,0.014311703,0.008976374,-0.047094405,-0.01775342,0.011142398,0.011308504,-0.0029002128,-0.0055346554,-0.014364856,-0.043161012,-0.010491262,-0.044941667,-0.011899842,-0.022258218,0.012889834,-0.021088831,0.008916576,-0.0365965,-0.008644162,0.003448363,-0.0020198503,-0.021328025,-0.041805588,-0.0060761617,0.039254196,-0.011654004,0.023547202,-0.0052290205,-0.0134346625,0.019799849,0.0014310041,-0.015175454,-0.004650971,-0.03930735,0.009913213,-0.024038875,-0.020238368,0.00328724,-0.003966614,0.00402309,0.013215402,0.0055678766,0.023427606,0.017314902,0.012690507,0.015574109,-0.005192477,-0.0097271735,0.018869653,-0.027932404,-0.0027656667,-0.0166239,0.0033536823,-0.016584033,-0.0061027384,0.017686978,0.010823474,0.00862423,0.009328519,0.0046077836,0.017726844,-0.0015597363,-0.015853167,-0.00069058617,-0.014497741,0.0010132473,-0.004052989,-0.007142563,0.0010124168,-0.0018288282,-0.005139323,-0.030457217,-1.4806803e-05,0.0074083325,-0.010252069,0.014351568,-0.012418093,-0.029261252,-0.024490684,0.003910138,-0.0063020657,0.003561315,-0.0121789,-0.009780328,-0.010690589,-0.023879414,-0.016597323,0.0074149766,-0.0060263295,-0.020796485,-0.025261417,0.019401195,0.025221553,-0.0061758254,-0.010026165,-0.03439061,0.0023836226,-0.0049566063,-0.008318594,0.021261582,-0.004541341,-0.010464685,0.001045638,-0.010198915,-0.01969354,-0.026125168,0.012756949,-0.021965872,0.027400864,0.037473537,0.0339388,-0.014311703,0.025101956,0.03412484,-0.005139323,-0.007793699,-0.002501558,0.0113417255,-0.018444423,0.004212451,0.016039206,-0.0065944125,0.015255185,-0.00302147,-0.006850216,-0.0011594207,0.013215402,0.01934804,-0.023228278,-0.014178817,-0.028782867,-0.0059764977,0.011308504,0.01283668,-0.033832494,-0.0037407095,0.030563524,0.04414436,0.0147768,0.0074548423,0.035427112,-0.004159297,0.011142398,0.007235582,-6.955693e-05,-0.045685824,0.008145844,-0.03276941,-0.017009266,0.041220892,0.0047140913,-0.00062455895,0.001592127,-0.007022966,0.0009974672,0.0213546,-0.016557457,0.0038669503,-0.0039201044,-0.025022224,-0.004405134,-0.032530222,-0.026842747,-0.041274045,0.016663766,0.013135672,-0.018590596,0.025620207,-0.005740627,-0.047466483,0.0072422265,0.0045247306,0.025168398,0.005351939,0.018869653,0.01706242,0.015773436,-0.005381838,-0.011587562,0.00291184,-0.006743908,0.018789923,0.022151912,-0.0063153543,0.0042224173,0.014298414,-0.007481419,-0.00046468186,-0.021832988,0.018391268,-0.013075873,0.0071691396,-0.018165365,-0.026537113,-0.034762688,0.018936096,0.015839878,0.011899842,-0.012185545,-0.031546872,-0.006657533,0.00024334545,-0.00096092385,0.015095723,-0.0044915094,-0.0006623481,0.0024301324,-0.0070761205,0.005906733,-0.018072344,-0.01748765,0.016584033,-0.031041909,0.011208841,0.012876546,0.01147461,0.0024384377,-0.0118267555,-0.012172256,0.029208098,-0.010896561,-0.020092195,0.0037373875,0.011534409,0.019786559,-0.030377485,-0.020517427,-0.0155209545,-0.014484453,-0.008843489,0.024331223,-0.012338362,-0.011886553,0.0014418011,0.009986299,-0.025221553,0.0055114008,-0.00843819,0.0010688928,-0.006650889,-0.012291852,-0.0066774655,-0.011859977,0.0021693457,0.0017374699,-0.0052290205,0.0021444298,0.027719788,-0.0342843,0.010298579,-0.004322081,0.005797103,0.004239028,0.02259043,0.009461404,-0.0056110644,0.024211626,-0.01845771,-0.0150425695,-0.028968906,-0.014431299,0.012311785,-0.014298414,0.008697316,0.0011419795,0.018843077,-0.010903205,-0.0051791887,-0.00928201,0.0009899924,-0.0009160752,-0.018444423,0.024118608,-0.024822896,0.015693706,-0.0046941587,-0.0016560779,-0.012205477,-0.021992449,-0.0086042965,-0.0081325555,0.029580176,-0.0016602306,0.00549479,-0.014099087,0.012637353,-0.0018138788,-0.019866291,-0.007634237,0.012657286,0.01926831,0.016809938,0.0033869036,-5.528219e-05,-0.016411284,-0.014125664,-0.017633826,-0.01926831,-0.03146714,-0.008086045,-0.0037373875,0.022298085,-0.0010713844,-0.013580835,-0.019480925,-0.00059590564,-0.043586243,-0.02286949,0.014457876,0.010491262,0.017580671,0.002910179,0.010272002,-0.0056974394,0.0023138581,0.012550978,-0.014165529,-0.0011760313,0.014178817,-0.012550978,0.011368303,-0.010252069,-0.010757032,-0.0050396593,0.021646949,-0.03587892,-0.0066708215,0.030935602,-0.01028529,0.014670491,-0.013647278,-0.0118333995,-0.009208923,0.031972103,0.016610611,-0.048609294,0.017195305,0.019361328,-0.0017756743,-0.026284631,0.026404228,-0.008664095,0.014165529,0.0015265151,0.00751464,-0.00077530026,-0.023175124,-0.0028470587,0.007747189,-0.0027806163,-0.0069498797,0.021793121,0.0058901226,-0.012863257,-0.015295051,0.031546872,0.022617009,-0.012012794,0.002963333,-0.018311538,-0.0054250257,-0.0032506967,0.0045014755,0.0017275035,0.013022719,-0.022470834,-0.011886553,-0.012909767,-0.00042274006,0.023374451,-0.007255515,-0.005169222,-0.0035978584,0.006777129,-0.011866621,0.0030762851,0.0027291235,-0.033805914,5.1492894e-05,0.016132226,-0.014564184,-0.02437109,0.016902957,0.0097404625,-0.031520296,0.0018421168,0.20719412,-0.012185545,-0.0054283477,0.015932899,0.0065146815,0.012099169,0.024543839,0.011541053,0.0043685907,-0.003916782,0.008198998,0.025474032,-0.0054416363,-0.004594495,0.004916741,-0.018431135,-0.025341148,-0.0067970622,-0.009773684,0.005597776,0.0026444092,-0.027507171,-0.016384706,-0.022178488,0.012119101,-0.0049831835,-0.015241897,0.012989498,0.018856365,0.023573779,-0.0103716655,-0.015879745,0.024238203,0.017035842,-0.005219054,0.003670945,-0.0017291646,0.0035812478,0.017966038,0.012185545,0.01363399,0.025128532,0.013966202,-0.005375194,0.009966367,0.0262049,-0.009474693,0.005215732,-0.0006112705,0.00945476,-0.005601098,0.000380383,-0.0029749605,0.01811221,-0.029766215,0.013202114,0.010185626,0.045366902,0.0014418011,0.001305594,-0.0166239,0.023188412,-0.008325239,0.01617209,-0.025194975,0.019162001,-0.00967402,0.016504303,0.0036377239,-0.008976374,0.009953078,-0.0036942,-0.009547779,-0.01601263,-0.032477066,-0.032237872,0.032902297,0.034895573,0.038191117,0.01249118,0.003724099,-0.0061525702,0.0023537236,-0.013833317,0.0016544169,-0.009388317,0.016251821,-0.009587645,-0.0087704025,-0.004557952,0.009295298,0.007587727,-0.022710027,-0.00521241,0.017859729,0.030005408,-0.013049296,0.011202196,-0.00093600794,-0.01784644,-0.03229103,0.048662446,0.033194646,0.016331553,-0.013547614,0.0031908983,-0.016836515,0.037739307,-0.0069698123,-0.018470999,-0.020769907,-0.01565384,0.017168727,-0.0075412174,0.005328684,0.014404722,0.010843406,-0.02611188,0.034736108,-0.02542088,0.00582368,-0.013036008,0.010291935,-4.181202e-05,0.006009719,-0.015148877,0.0069498797,0.007979738,-0.010943071,-0.02119514,0.0298991,0.019600522,-0.012192189,-0.014138952,-0.014869819,0.0052655637,0.012723728,-0.007395044,-0.0027224792,0.00641834,-0.0065445807,0.008238863,-0.004109465,-0.004262283,0.00712263,-0.002687597,0.013029363,0.0053685494,-0.008066113,-0.016491015,-0.028862597,-0.00039491727,-0.0015115656,-0.008431546,0.019334752,-0.013308422,-0.019600522,-0.010232137,0.005003116,-0.008816913,-0.03401853,0.008385036,0.03340726,-0.002636104,-0.022138622,0.018696904,-0.17094313,0.01890952,0.00673062,-0.015268474,0.005843613,0.007687391,0.0015099045,0.0007017983,0.024238203,0.0034849062,0.010265358,-0.01336822,0.00028321092,-0.0019135424,0.004644327,-0.01845771,-0.008159132,-0.0019916124,0.013315066,0.0027075296,0.025208263,-0.0071890727,-0.0030563525,-0.011009513,-0.00054815016,0.01195964,-0.009933146,0.003534738,0.012418093,-0.011846688,-0.008471412,-0.013328354,0.039785735,0.0106972335,0.0068900813,-0.005866868,-0.0070827645,0.0036875557,-0.010551061,0.022670163,0.024477396,0.007846853,0.02595242,0.004325403,-1.9530446e-05,0.010956359,0.006328643,-0.016052494,0.012325074,-0.016384706,0.025022224,-0.03869608,-0.00073294324,0.00087787077,0.016889669,0.0043719127,-0.017088996,-0.001006603,0.006036296,0.013966202,0.0024766421,-0.010444752,0.0016079071,-0.011747024,-0.0210091,-0.017514229,0.0047971443,-0.0050330153,-0.028517097,0.010252069,-0.009547779,0.010172338,-3.8697533e-05,-0.009002951,0.0004040531,-0.007634237,-0.034098264,-0.0067870957,0.014178817,0.02313526,0.0052622417,-0.0068435716,0.0046310383,-0.011899842,-0.020211792,0.015401359,-0.02708194,0.0051559336,-0.02690919,-0.0072090053,0.005242309,-0.025474032,-0.0038503397,-0.029580176,-0.00081142836,0.0068701487,0.007507996,-0.012172256,-0.0066376003,-0.02769321,0.0002863254,-0.0029550276,0.0049632504,-0.007096053,0.006162537,0.008079401,0.011733736,0.01001952,0.029792791,0.018138787,-0.031334255,0.0029068568,-0.00604294,-0.0076209484,-0.01011254,0.010810185,0.0067605185,-0.017341478,0.008072757,-0.0033254444,0.06022343,0.004601139,-0.020969236,0.025978995,0.013162248,-0.031174796,-0.08568417,-0.01926831,0.027214825,0.020198504,-0.006162537,0.011614139,-0.009707241,0.04448986,-0.020238368,0.038456887,0.004890164,-0.035373956,-0.023520626,-0.015574109,0.013846605,-0.0032789346,-0.033300955,-0.010883273,-0.01724846,0.02611188,-0.01249118,-0.014843242,-0.0040463447,-0.019321462,0.0060196854,0.012258631,-0.04650971,0.028968906,0.024809608,-0.0009268721,-0.003101201,-0.024344511,-0.0018720159,-0.030191446,0.018750058,0.0017341478,-0.011222129,-0.012119101,0.037659578,-0.03375276,-0.01590632,0.0024683368,-0.01125535,-0.028968906,-0.010032809,-0.019759983,-0.01953408,0.0068767928,0.00756115,-0.0067571965,-0.014444588,-0.0022125335,-0.017075708,-0.019494213,-4.5627272e-05,-0.00870396,-0.0030812684,-0.019932734,-0.01670363,0.002611188,-0.017992614,-0.0037706087,-0.0014692085,0.046483133,0.010683945,-0.00604294,-0.009860058,0.0033869036,-0.01261742,-0.017221881,-0.00060171937,0.010876629,-0.022736605,0.023228278,-0.022470834,-0.009594289,-0.028118443,-0.01249118,0.027174959,0.007694035,-0.010757032,-0.015866457,0.030855872,-0.0031493718,0.0135874795,-0.0070761205,0.0033802593,-0.0026344429,-0.00045014755,-0.02963333,0.012544333,0.01582659,0.003041403,-0.0020165283,-0.0032008647,0.00751464,-0.026218189,-0.0013421373,0.009355096,0.016424572,0.005634319,-0.01811221,-0.066442445,0.013700432,0.00402309,0.004235706,0.0058834786,-0.008391681,-0.0012142357,-0.023573779,-0.009301942,0.008318594,-0.010232137,0.004112787,-0.011188908,-0.022643585,-0.00630871,-0.0298991,0.024517262,-0.013009431,-0.0039034935,0.0116606485,0.009654087,-0.00084714114,0.03149372,0.0055047567,-0.01257091,0.02119514,-0.023028951,0.006763841,-0.027321134,-0.031440563,-0.008517921,-0.0028387534,0.0064648497,0.01502928,0.017952748,-0.0052256985,-0.002360368,0.020118773,-0.0063386094,0.024570417,0.009301942,-0.036091536,0.0023753173,-0.021155274,-0.009135836,-0.0051260344,-0.013926337,0.00074290956,0.024397666,0.0298991,0.025872687,0.012384872,-0.03181264,-0.007800343,-0.022484124,0.0014476147,0.018444423,0.015627263,-0.015015992,0.012245342,0.020371253,0.031945527,0.01829825,0.002523152,-0.0033254444,0.0047805337,-0.0228562,0.009667376,0.019387905,-0.02304224,0.02329472,-0.003591214,0.024145184,-0.004019768,-0.00072546845,0.002362029,-0.0075677945,-0.002993232,-0.017221881,0.014192106,0.0022175165,0.015175454,-0.017275035,0.010491262,0.014816665,0.024809608,-0.01714215,0.0043054703,-0.011760313,0.0070296107,-0.016185379,0.021726679,-0.007448198,0.008591008,0.0008911593,-0.002009884,-0.012863257,0.025992284,0.009786972,-0.00013828334,0.011149042,-0.0010614181,-0.0040397006,0.015680417,-0.034629803,0.023201702,-0.0025347793,-0.0062223347,-0.00021946769,0.038616348,0.0076010157,0.005657574,0.00044391857,-0.0067040427,-0.015893033,0.020862928,-0.004431711,-0.0036011804,-0.0365965,0.03550684,0.005302107,0.010471329,0.017607247,-0.0262049,0.005003116,-0.016384706,0.0033154779,-0.0339388,-0.009169057,-0.02338774,-0.018431135,-0.0041659414,0.0098999245,-0.0013504426,-0.015613974,-0.011654004,-0.009049461,0.019401195,0.014311703,0.04520744,0.0018022513,-0.0044981535,0.0065013934,-0.0036676228,0.023467472,0.016584033,0.021965872,-0.04653629,-0.019985886,0.00074290956,0.02769321,-0.013560903,-0.0034682956,-0.006066195,0.014205394,0.002418505,0.0014600727,-0.01502928,0.01310245,0.014484453,0.0049931495,0.008664095,0.00024126912,-0.024304647,-0.0027540394,0.019480925,0.014564184,-0.0016569084,-0.018218517,0.00317761,0.0044981535,-0.040237546,-0.015866457,0.027374286,-0.019055692,-0.011727092,-0.017168727,0.007222294,0.005707406,0.014896396,0.019480925,-0.017115574,-0.001563889,0.002014867,-0.016783362,0.011202196,-0.015680417,0.0045247306]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('4064d4f2-a5da-11ee-8347-bba0b4704509', 'Technology', 'this article is about Software Engineering', '[0.018696824,0.0078104045,0.011381257,-0.02499597,0.018282231,0.014109549,-0.039800964,-0.0117356675,-0.013467599,-0.030064708,0.012919265,0.032739505,0.010893107,0.010358148,0.010672436,-0.0019459141,0.01790776,-0.0011844331,0.0030108173,-0.0045805885,-0.025584424,0.025236702,0.0013984168,0.004550497,-0.014778248,0.021050645,0.010639002,-0.04434812,0.004814633,0.007857214,0.028112108,-0.013815322,-0.024822108,-0.0062155575,-0.016356379,-0.022334548,-0.010732619,-0.015981907,0.003126168,-2.5219879e-05,0.022428166,0.017359426,-0.012364245,-0.00993018,-0.017025078,0.006720425,0.020368572,-0.01854971,-0.0061085657,0.014443899,0.003417052,0.014069428,-0.041379094,-0.00991012,-0.009074246,0.004226178,-0.023123613,0.00592133,0.016356379,-0.0056538503,-0.005483332,0.0039486676,-0.012451176,-0.006329236,-0.01192959,0.004119186,-0.013594652,0.028700562,-0.011214083,-0.012611664,0.017747272,0.006880913,0.0069945916,0.023471335,-0.0013883864,-0.0032431902,0.0034772349,0.00088769797,0.025049465,-4.675669e-05,0.0072286366,-0.012123513,0.010318026,0.013213493,0.006456289,0.00064404076,0.0031027636,0.0026697807,0.014136298,-0.010144164,-0.00026267333,0.021946702,0.004497001,0.01488524,-0.023096865,0.024795359,0.014978858,0.021278003,0.004794572,-0.01797463,0.0008785034,0.018696824,-0.010692498,-0.0017720524,-0.043893404,0.0033802735,0.003741371,0.008733209,0.023177108,-0.020783165,-0.019459141,0.019392272,0.007877274,-0.0046441145,0.004861442,-0.020114467,0.0067906384,-0.017693777,0.024367392,-0.016891338,0.04025568,0.014604387,0.02415341,-0.01797463,0.022856133,0.010926542,-0.029315766,-0.014457273,0.0028302686,-0.012431115,0.028433083,-0.0070882095,-0.010812863,0.0077435346,0.007636543,-0.00875327,0.009662701,0.014109549,-0.021558857,-0.032739505,0.01186272,0.016650606,-0.017934509,-0.0107660545,-0.006626807,-0.005389714,0.012631725,0.016770972,0.01764028,0.014056054,-0.0014435541,-0.01757341,0.009656014,0.008057823,-0.0037514016,0.008211624,-0.0012596617,-0.005747468,1.0056607e-06,-0.011655424,-0.0043833223,0.008385486,0.016717475,0.0042295214,0.015446948,0.03841007,0.00819825,0.016249387,0.01579467,0.0015614122,-0.027817879,3.2781925e-05,-0.015099224,-0.0043131085,0.00646632,0.004032255,-0.004828007,-0.0037848365,-0.012524732,-0.012377619,0.01102016,0.014537517,0.038918283,0.043866657,-0.027924871,0.0160889,0.012417741,0.005687285,0.0098633105,-0.0014728096,0.030653164,0.022628775,-0.0058444296,0.011093717,-0.6740486,-0.025624547,-0.012076705,0.009763006,-0.0059514213,0.010832924,0.02859357,0.008759957,0.0025460715,0.017091947,-0.0046207104,-0.010090669,0.0014009244,-0.0036979057,-0.011053595,-0.011334448,0.004921625,-0.030358935,0.007669978,0.01868345,-0.027256172,0.016423248,-0.024367392,-0.0064529455,0.0035340744,-0.01713207,0.0051690433,0.007950831,-0.0051122042,0.013387354,-0.01723906,0.024380766,-0.0064863805,0.0059246733,0.033354707,-0.0014293442,-0.0030475957,0.015580688,0.010532009,0.028379587,-0.0104049565,-0.023457961,-0.011026847,0.024955848,-0.01750654,0.002430721,0.025076214,-0.023792312,-0.0056070415,-0.018054873,0.005800964,-0.0030175042,-0.0046140235,0.009662701,0.003727997,0.00999705,0.018870687,0.0115484325,0.016356379,-0.0040255683,-0.012464549,0.01582142,-0.02197345,-0.01579467,-0.013922313,-0.0018105026,0.010772741,-0.0071149576,0.001066575,-0.013587964,0.008358737,0.0014159702,-0.00957577,-0.010391583,-0.011682172,0.018228736,0.031696334,-0.023631824,0.0007522864,0.0036912186,-0.0030241914,-0.015701054,-0.00888701,-0.018135117,0.04694267,-0.018924182,-0.02472849,-0.02355158,0.022561906,0.012190383,0.016155768,0.010003737,-0.036403976,-0.008345364,0.00861953,0.018362476,0.008673026,0.0008709805,0.016730849,0.006051726,-0.0052626613,-0.0014577638,0.030385684,0.0010757695,0.02308349,0.010378209,0.0003661127,0.020743044,0.026279872,0.0005930524,0.004112499,-0.0140828015,-0.017720524,0.018710198,-0.0031596029,-0.033996657,-0.005245944,-0.022133937,-0.0036778445,-0.0011677156,0.0033551974,-0.009963616,0.0025711476,0.003754745,-0.017051825,0.030947391,-0.027577147,-0.0012788869,-0.026921824,-0.019739995,0.0152329635,-0.010839611,0.0065465635,-0.0026747962,0.011334448,0.00143018,0.0066401814,-0.01770715,0.020248206,-0.014724753,-0.008632905,-0.011040221,-0.0029305734,0.010170912,-0.009127742,-0.02157223,-0.02886105,-0.0040188814,-0.006322549,-0.010926542,-0.0063793887,0.002383912,0.01770715,0.031241618,0.011896156,0.008599469,-0.012310749,-0.020689547,-0.036377225,-0.019191662,-0.009876684,0.00799764,-0.030278692,-0.02543731,-0.017720524,0.009221359,-0.019164914,0.015059102,-0.002059593,-0.025022717,0.009408595,0.019044548,0.013246927,-0.0012070017,-0.018014751,0.016503492,-0.0077970307,0.0029573215,0.011026847,-0.016811093,-0.006165405,-0.0017636936,-0.024888977,-0.008980628,0.018121744,-0.004092438,0.017279183,0.02257528,0.005727407,0.018710198,-0.020141214,0.0037915234,-0.0034404565,0.0020779823,-0.018670077,0.005199135,-0.017412923,-0.0021532108,0.0045872754,0.01039827,0.032338284,0.010498575,0.017934509,-0.0016057135,0.009562396,-0.018616581,-0.00062815915,-0.01495211,0.012778838,0.00027270382,0.026600847,0.0056906287,-0.011140525,-0.021064019,0.0153533295,0.009468778,-0.008947193,0.014096175,-0.020087719,0.0037948668,-0.001145983,-0.02284276,0.019499263,-0.020221459,-0.010110729,0.028700562,0.018228736,0.024875604,0.0010339759,-0.053629663,-0.017185565,0.010639002,-0.0064027933,-0.0024975908,0.023578327,0.03188357,0.029101782,-0.033515196,0.029075034,-0.001304799,-0.014711378,0.029690236,0.015834793,-0.032712758,0.029101782,0.007663291,0.036029503,0.018857313,-0.00082166394,-0.0013816993,-0.010318026,-6.0235154e-05,-0.01908467,0.012083392,0.009696136,0.0015012294,0.022762515,-0.020448817,0.017747272,0.016222639,0.018843938,0.014617761,0.009047498,0.007756909,-0.0022501722,-0.00044008755,-0.0023571642,-0.011541745,-0.00070505956,-0.028112108,-0.009836563,-0.011200708,0.0124578625,-0.009341725,0.008739896,0.023564953,0.00757636,0.007917397,0.018148491,0.016944833,-0.02472849,-0.019873735,0.008780018,0.010324713,0.00056881213,-0.01528646,-0.0049851513,-7.303447e-05,-0.010425018,-0.005633789,-0.0014527487,0.02516983,0.02143849,0.02499597,-0.003911889,0.0036042877,0.03972072,0.010351461,-0.019753369,0.007496116,0.010632315,0.010237782,0.008873636,-0.020154588,0.038356576,-0.032980237,0.001245452,-0.021411743,0.002151539,-0.030733407,0.021612352,-0.022026947,0.009789754,-0.008505852,-0.008666339,0.0043131085,-0.010338087,0.019753369,0.022401417,0.009816501,0.0027032157,-0.011561806,0.0032599077,0.03003796,0.10078631,-0.008385486,-0.008211624,0.0196865,-0.036698204,-0.037179668,-0.018349102,-0.024795359,0.016757598,-0.027470157,0.0064529455,-0.0055067367,0.006569968,-0.030358935,0.01566093,0.010558758,0.002046219,-0.009348412,-0.0060283216,-0.011080343,-0.0036811882,-0.016610485,-0.003112794,0.004807946,0.024915725,-0.0060049174,0.047825355,0.024313897,-0.015139346,-0.0026162849,0.0033351365,-0.0014744813,-0.0026029109,0.012357558,-0.009301604,0.05288072,-0.00071091065,0.009916807,0.003503983,-0.012170322,0.0051289215,0.017091947,0.009836563,-0.011000099,0.011053595,-0.039292756,-0.00206628,0.041914053,-0.035334058,-0.01606215,0.0049349987,0.0099836765,-0.03910552,-0.017225686,0.013139936,0.021358246,-0.002562789,0.0019826926,-0.025236702,-0.035895765,-0.014698004,-0.046247225,0.003972072,-0.010618941,0.017319305,-0.008880323,0.013935688,-0.026935197,-0.020689547,0.0010532009,-9.126697e-05,-0.030358935,-0.04434812,-0.003517357,0.023230605,-0.01350772,0.013828696,-0.009214672,-0.028352838,0.009341725,-0.022160687,-0.016490119,0.00073724065,-0.042288527,0.0036176618,-0.01592841,-0.025825156,-0.0026179566,-0.009936867,0.008632905,0.014911988,0.015915036,0.022695646,0.011314387,0.018937556,0.016249387,0.0030275348,-0.0037112795,0.0190178,-0.01764028,-0.009936867,-0.022321174,0.011026847,-0.031295113,0.0013917298,0.023698693,0.005650507,0.015915036,0.0024591407,0.016302882,0.008840201,-0.0011284295,-0.0044134133,-0.007756909,-0.006496411,0.012049956,-0.003112794,0.003517357,0.018228736,0.008151441,0.0107058715,-0.040335923,0.008499164,0.013073066,-0.013668208,0.009569083,-0.0033668997,-0.025718164,-0.02059593,0.007549612,-0.008251746,0.014778248,-0.0049349987,-0.010491888,-0.007028027,-0.036564462,-0.014965484,-0.004807946,-0.008933819,-0.030786904,0.0050353035,0.0020629365,0.0232841,-0.0035842268,-0.0025176518,-0.028914547,0.019526012,-0.006780608,-0.011936277,0.02288288,-0.010070607,0.008525913,0.00055919954,-0.00999705,-0.023738815,-0.04223503,0.010545383,-0.019566134,0.018389223,0.041379094,0.037340153,-0.013280363,0.024982596,0.017733898,-0.010980038,0.005941391,-0.0048580985,0.0076833516,-0.0190178,0.0096827615,0.036965683,-0.0058043078,0.016383126,-0.010284591,0.008853575,0.019098043,0.011976399,0.0063426103,-0.0127989,-0.021278003,-0.026453733,0.011394631,-0.0073623764,0.010980038,-0.026346741,0.0106456885,0.021933328,0.025464058,0.009121055,0.011314387,0.028673815,-0.005747468,0.004182712,0.0089605665,0.0026129414,-0.033140723,-0.00025932983,-0.03843682,0.0027985054,0.027710887,0.0088335145,0.012584915,0.0056304457,0.0024140035,-0.008994002,0.014591013,-0.012625038,-0.013801948,0.0015781297,-0.009956929,-4.803662e-05,-0.030840399,-0.012464549,-0.019980727,0.020836663,0.020756418,0.0028018488,0.03910552,-0.0042897044,-0.029743733,0.015273086,0.0052091656,0.01790776,0.0056371326,0.027229425,0.02516983,0.008124693,-0.02428715,-0.007068149,0.012404367,-0.013139936,0.02526345,0.030519424,0.0054264925,-0.010304652,0.014831744,0.00017010032,0.00585446,-0.023524832,0.006389419,-0.0023671945,-0.00044510278,-0.026253123,-0.02459475,-0.04774511,0.019726621,0.01764028,0.008238372,-0.026814831,-0.018696824,0.0021231193,0.020769792,-0.0101040425,0.017346052,0.011173961,0.013962436,0.0060951915,-0.014684631,0.00081832043,-0.004022225,0.0014193137,0.012163635,-0.03359544,0.0017536632,0.015139346,0.015099224,0.008004327,-0.014069428,0.00012141067,0.029155277,-0.004721015,-0.028968042,0.006941096,0.020890158,0.013608025,-0.018964304,-0.009348412,-0.024982596,-0.022588653,-0.022521783,0.01710532,-0.0016266104,0.0022969812,0.0029105125,-0.002258531,-0.027189303,0.008659652,0.00027521144,-0.014149671,-0.015594061,-0.007924084,-0.014684631,-0.023123613,0.0057842466,0.009462091,-0.009314978,0.0017854264,0.031830072,-0.026988693,0.0052827224,0.0026831548,-0.010438392,-0.0065900288,0.013266989,-0.0071751405,-0.009388534,0.034772348,-0.014216541,-0.0063091754,-0.012711968,-0.012143575,0.0077702827,-0.026493855,-0.013079753,0.015339956,0.005329531,0.012123513,-0.010745993,-0.016048776,0.008659652,-0.008452356,-0.0125782285,0.037072673,-0.0145107685,0.0013633101,0.011133838,-0.009087619,-0.0089605665,-0.03215105,-0.01344085,-0.009488839,0.028566822,-0.004617367,-0.011889469,-0.0103447735,0.0047711674,-0.0044000396,-0.014443899,-0.009542335,-0.00013468016,0.009549022,-0.0045605274,-0.011474875,0.0039018588,-0.012437802,-0.018763695,-0.027470157,-0.021384995,-0.035869017,-0.006272397,-0.00017041377,0.02530357,0.014056054,-0.0076164817,-0.012183696,-0.010311339,-0.04750438,-0.02237467,0.0054866755,0.0020712952,0.0073088803,0.0024257058,0.0125782285,-0.0017787394,-0.0048380373,0.010438392,-0.01528646,-0.013721704,0.005312814,-0.00757636,-0.0022501722,-0.0026614221,-0.0069277217,0.00098048,0.0038517064,-0.019940605,0.003079359,0.009542335,-0.009990363,-0.00030028765,-0.007288819,-0.00797758,0.009950241,0.025450684,0.014336907,-0.042208284,-0.00013812815,0.02573154,-0.021023897,-0.014109549,0.006322549,-0.00083670963,-0.0003483504,0.0020228145,-0.018777069,-0.0005596175,-0.003952011,-0.009254795,0.012143575,-0.00797758,-0.013587964,0.011535058,0.00077987026,0.004660832,-0.006396106,0.012096765,0.0024006295,0.0016416562,0.0033535257,-0.00855266,0.0018188613,-0.0027165897,0.00014721826,0.0011702233,0.0022485005,-0.010217721,0.005389714,-0.02072967,-0.00028649575,0.031107878,0.0044869706,-0.022588653,-0.015380078,0.0064395717,-0.016155768,-0.0062423055,0.010906481,-0.026774708,-0.010231095,0.011267578,-0.025357068,-0.007496116,0.014430525,0.020743044,-0.026788084,0.024046417,0.19836287,-0.0125180455,0.0060049174,0.003396991,0.021732718,0.018563084,0.029101782,0.011983086,-0.0075562987,0.020609304,0.017493166,0.00993018,-0.010478513,-0.00010887256,0.011782477,-0.01750654,-0.010558758,-0.02977048,-0.014698004,0.0061219395,0.01632963,-0.037045926,-0.03188357,-0.025637921,0.030465927,-0.000728464,-0.019619629,0.019338775,0.020020848,0.02086341,-0.0056036976,-0.013206806,0.016877964,0.015139346,-0.0033451668,-0.0013867146,0.019459141,-0.0015246337,0.026239749,-0.0034438,0.004634084,0.0085326,0.017038452,-0.020609304,-0.005734094,0.03779487,-0.016503492,0.0013022914,-0.011809225,0.010284591,-0.0087733315,0.0035006395,0.00855266,0.008746583,-0.00833199,0.012163635,0.000979644,0.05090137,0.005563576,0.009007376,-0.016984954,0.025892027,-0.020555807,0.014497395,-0.025624547,0.008231685,-0.0073623764,0.024340644,-0.006549907,-0.020756418,-0.0053395615,-0.005600354,0.0035608222,-0.0042663,-0.03322097,-0.026346741,0.012411054,0.025464058,0.038597308,0.023310848,-0.0008868621,-0.024581376,-0.010050546,-0.020783165,-0.0047310456,-0.016289508,0.01606215,-0.014390403,-0.015527192,-0.009074246,0.0006849986,-0.00047937362,-0.014015932,-0.0055468585,0.015139346,0.033889666,0.0037313406,0.011722294,0.0052760355,0.0029054973,-0.026774708,0.04996519,0.024273774,0.022909628,-0.0076164817,0.014671257,-0.021023897,0.036698204,0.008124693,-0.014056054,-0.024313897,-0.013347233,0.021946702,-0.011541745,0.0056973156,0.014029305,-0.0029289017,-0.029369261,0.031241618,-0.023123613,0.003918576,-0.013614712,-0.0045672143,-0.0035909137,-0.009040811,-0.011280953,-0.02573154,0.01495211,-0.031562593,-0.02385918,0.04148609,0.0027516964,-0.018001378,-0.008164815,0.012611664,-0.006225588,0.0068240734,-0.00096710597,-0.022214182,0.010806176,0.0060383524,-0.00069711875,-0.0029523063,0.009896746,-0.015741175,-0.007382437,0.013614712,0.014457273,-0.017466418,-0.017720524,-0.010271217,-0.02183971,0.012190383,-0.023778938,0.02294975,-0.017720524,-0.026841579,-0.015513818,0.016784346,-0.0047979155,-0.028540075,0.025798408,0.036136497,0.0034020063,-0.019699873,0.017747272,-0.17279182,0.0073690633,-0.0009595831,-0.03501308,0.02597227,0.012310749,0.011942965,0.019579507,0.010980038,0.005025273,0.0016107288,-0.0057040025,-0.027002066,-0.00084674015,0.014176419,0.009054185,0.0011760744,0.011889469,0.027657392,0.00846573,0.026092635,-0.0062556793,0.012538107,-0.007944144,0.018790442,0.012277314,-0.0045404662,0.0023989577,-0.0035808834,-0.022053694,0.00143018,0.008438982,0.029556496,0.018054873,-0.0016458355,-0.0061553745,0.0022668897,0.012377619,-0.010712558,0.020328451,0.021117516,0.015299833,0.018121744,-0.014804997,0.008512539,0.013467599,0.017600158,-0.02728292,0.03605625,-0.009669388,0.024180157,-0.038731046,-0.010986725,-0.022254303,0.021144263,0.0063760453,-0.02912853,0.009228047,-0.0021916612,0.021946702,-0.00013394878,-0.013006196,0.021679223,-0.004694267,-0.013454224,-0.020903531,0.00025744914,0.011274265,-0.026119383,0.005125578,-0.008077884,-0.005416462,-0.010097356,-0.020836663,0.01501898,0.00078697514,-0.025691416,0.011107091,0.0039821025,-0.015179467,0.017894385,-0.0011209068,0.011535058,-0.0029823976,-0.004376635,0.01226394,-0.013206806,-0.008646279,-0.016048776,-0.003231488,0.022053694,-0.042716492,0.00057048385,-0.026333367,0.008652966,0.009609205,-8.635621e-05,-0.017546663,-0.0043231393,-0.0153533295,0.01750654,-0.008071197,-0.0038383324,-0.018322354,0.008271807,-0.0027165897,0.0032498774,0.018803816,0.033889666,0.02143849,-0.029289017,0.0145107685,-0.00073473307,0.00075270433,-0.005627102,0.007897335,0.02512971,-0.018295605,0.0025343692,-0.011240831,0.04640771,0.0049082506,-0.019485889,0.018563084,0.018215362,-0.03132186,-0.07970893,-0.021665849,0.02912853,0.030385684,-0.01186272,0.013521094,-0.007355689,0.030198447,-0.027309667,0.032579016,0.0038650804,-0.039453242,-0.034959584,-0.03292674,-0.0034805783,-0.009562396,-0.031241618,-0.0027182614,-0.016516866,0.032311536,-0.007623169,-0.016169142,0.0027249486,-0.013079753,-0.012524732,0.0465682,-0.03964048,0.016022028,0.016918086,-0.011474875,0.0072620716,-0.027817879,-0.0025928805,-0.013721704,0.0058912383,-0.0065866853,-0.020141214,-0.011247518,0.03725991,-0.023658572,-0.013380667,-0.013581277,0.0034672045,-0.015513818,-0.0045270924,-0.0071216444,-0.028807554,0.012591602,0.016169142,-0.026560726,-0.03544105,-0.00137752,-0.022802636,-0.020234833,0.02341784,-0.02335097,0.0013624743,-0.019913858,-0.006880913,-0.003517357,-0.015540565,-0.0066067465,0.004761137,0.048226573,0.022267677,0.0023003246,-0.016503492,-0.006603403,-0.005677255,-0.008559347,0.007950831,0.011240831,-0.031402107,0.005894582,-0.024848856,-0.00094537326,-0.018763695,-0.0053395615,0.014457273,0.011347823,-0.006737143,-0.028299343,0.014443899,-0.0012788869,0.00323316,0.01693146,0.014845118,0.002781788,-0.0025510867,-0.016556988,0.0132402405,0.018335728,0.015647557,0.00420946,0.0018723572,-0.0033618843,-0.013721704,-0.0027600552,-0.009301604,0.009729571,-0.0048046024,-0.02372544,-0.07098909,0.013079753,0.004226178,-0.0041024685,0.0053930576,-0.006245649,0.009535648,-0.00813138,0.003131183,0.006355984,-0.023765564,-0.0232841,-0.010859672,-0.020903531,-0.012243879,-0.015553939,0.01606215,0.004463566,0.006549907,-0.002363851,-0.008632905,-0.008800079,0.023538206,0.01128764,-0.029823976,0.008873636,-0.0073423153,-0.00062230806,-0.028647067,-0.023952799,-0.0021833023,-0.008612843,0.0024357361,0.020141214,-0.008659652,-0.0007506147,0.015326582,0.016784346,0.014604387,0.043920152,0.006483037,-0.029503,-0.002524339,-0.016556988,-0.0077435346,-0.018496215,-0.0064362283,-0.009495527,0.025383815,0.025611173,0.026413612,0.015674304,-0.020636052,-0.012384306,-0.023524832,-0.012324123,0.021986824,0.016155768,-0.018094996,0.0040957816,0.035093326,0.009308291,0.0033786017,-0.01164205,-0.00764323,0.0062657096,-0.019271906,0.021893205,0.009595831,-0.023805685,0.00875327,-0.007469368,0.009836563,0.00826512,0.011040221,0.012390993,-0.013935688,-0.0051356084,-0.012752091,0.013173371,0.014738127,-0.0073021934,-0.017747272,0.017600158,0.013668208,0.0047845417,-0.012290688,-0.0050954865,-0.006024978,0.009829876,-0.015634183,0.021318125,-0.019793492,0.015874915,-0.016383126,-0.0030007868,-0.012270628,0.015246338,0.014644508,0.010532009,0.012003147,0.013200119,0.008077884,-0.015714427,-0.03487934,0.017680403,-0.01582142,-0.005179074,-0.011561806,0.014430525,0.013367293,0.015567313,0.004881503,-0.009896746,-0.035039827,0.009702823,-0.020930279,0.00046014853,-0.04252926,0.033408202,-0.01626276,0.01579467,0.021719344,-0.036002755,0.017747272,0.00037593424,7.829786e-06,-0.021826336,-0.015968533,-0.026854953,-0.0021498674,0.013761826,0.010893107,-0.011314387,-0.015072476,-0.01739955,-0.0043732915,-0.00964264,0.0029890847,0.049644217,0.006934409,-0.006429541,0.008933819,-0.0033685714,0.013186744,0.0079909535,0.029208774,-0.028219098,-0.04865454,0.0067003644,0.022775888,-0.009990363,-0.005523454,-0.0060350085,0.008646279,-0.016824467,0.014778248,-0.02039532,0.02372544,0.0049517164,0.020569181,0.001139296,0.0045204055,-0.023070116,-0.0017076902,0.040656902,0.020582557,0.00599823,-0.033140723,-0.00022882044,0.020836663,-0.04145934,-0.015273086,0.018228736,-0.007663291,-0.012531419,-0.015273086,0.009040811,0.028138855,0.0050118994,0.015553939,-0.022628775,-0.015674304,-0.023203855,-0.007409185,-0.003748058,0.00020813257,0.014336907]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('406ea536-a5da-11ee-8347-83d2cbe21305', 'Technology', 'this article is about Artificial Intelligence', '[0.005339989,0.0048233233,0.005606655,-0.0139466375,0.0113066435,0.028986607,-0.032613266,7.187485e-05,-0.019973291,-0.022413287,0.01268664,0.02694661,0.0012549973,0.010033312,0.012973307,0.0010683311,0.023546617,0.018346628,0.0162533,-0.0035299927,-0.02815994,0.03698659,-0.0034599928,-0.0020433292,-0.0009324981,0.0064199865,0.020066625,-0.047973234,0.0065199863,0.0057333214,0.028533274,-0.014119971,-0.024773281,-0.014973302,-0.011653309,-0.013093306,0.0035366593,-0.016679965,0.0115466425,-0.0037333255,0.02073329,0.022093287,-0.0112199765,-0.017119965,-0.02286662,0.0064766533,0.013473305,-0.012239975,-0.0048366566,0.0060499874,0.017613297,0.02081329,-0.040586583,-0.009906646,-0.020493291,1.2226537e-05,-0.01674663,0.0039199917,0.021133289,-0.003043327,0.0041099912,-0.017946629,-0.0005637488,0.01427997,-0.014559969,0.0038566587,-0.015786633,0.035626594,0.007486651,-0.010859977,0.0079466505,0.010406645,0.006559986,0.0023133284,0.013606639,0.002963327,0.0132266395,0.0069599855,0.0006849986,0.010646644,-0.0057733213,0.0010333312,0.0121799745,0.01463997,0.024426615,0.005993321,-0.014119971,0.005536655,0.021106623,-0.0074399845,0.00316666,0.008159983,0.010899977,0.023826618,-0.031919934,0.047013234,0.015653301,0.0122666415,0.00022208288,-0.032213267,0.010599978,0.0053266557,-0.01312664,-0.017039964,-0.025293281,0.0065199863,0.008393316,0.029786605,0.024746615,-0.0061033205,-0.0041366583,0.0096266465,0.0045733238,-0.014039971,-0.0077866507,-0.017306631,0.0052433223,-0.0149066355,-0.0022633285,-0.0159333,0.036373258,0.022573287,0.011593309,-0.006249987,0.022573287,0.011933308,-0.017173298,-0.015493301,-0.005076656,-0.01774663,0.02198662,-0.01153331,0.008539982,0.01754663,-0.00312166,0.0013641638,-0.0031833267,-0.00023979117,-0.003706659,-0.0061933203,-0.002959994,0.004593324,-0.022133287,-0.012359974,-0.023293285,0.003889992,0.004913323,0.01967996,0.014333303,0.035519928,-0.009673313,-0.03141327,-0.0032533265,0.021346623,0.0054566553,0.009239981,0.0011658309,-0.0054766554,-0.0023983284,-0.0038633253,-0.013413305,-0.0053633223,0.007839983,0.012206641,0.021933287,0.0319466,-0.009946646,0.017279964,0.012853307,-0.0076133176,-0.014293304,0.010333312,-0.0074933176,0.002513328,0.004166658,0.012473308,0.011406643,-0.0051333224,-0.025626613,-0.0041999915,0.0069999853,0.012046642,0.026026612,0.016973298,-0.0018766627,0.015479968,-0.0010608311,0.0015641634,0.0053099887,-0.012099975,0.019626625,0.01891996,0.0034566594,-0.0013383306,-0.68095857,-0.036319923,-0.007219985,0.025013281,0.0087866485,0.011299976,0.016786631,-0.014999969,0.014813302,0.013479972,0.000619582,-0.015239968,-0.014146637,0.00022749952,-0.0037799922,-0.012839973,0.0075399843,-0.034533262,0.016879965,0.03367993,-0.017799962,0.015746634,-0.023346618,-0.008199983,-0.007913317,-0.010319979,0.0067533194,0.002578328,-0.014239971,0.0064833197,-0.016026633,0.031119935,0.008913315,0.006933319,0.027439943,0.002459995,0.002429995,0.024119949,-0.0033866595,0.023706617,-0.01459997,-0.025679946,-0.00979998,0.009553313,-0.008379983,0.006839986,0.012579974,-0.013646638,0.00078416505,-0.021239955,0.008739982,0.0055333218,-0.010839977,0.0046733236,-0.0002102079,0.025159948,0.019746626,0.01258664,0.01762663,-0.0091466475,-0.004636657,-0.004706657,-0.01786663,-0.013179973,-0.009099981,0.012919973,0.0067466525,0.014226637,0.0005237489,-0.028426608,0.010506645,0.017613297,-0.014946636,0.008633316,-0.006666653,0.01276664,0.025146615,-0.017973296,-0.011733308,-0.006689986,-0.004116658,-0.01447997,-0.007259985,-0.023333285,0.031173268,-0.0054133222,-0.019506626,-0.010499978,0.0126266405,0.0069066524,0.008586649,0.011686643,-0.03653326,-0.015039968,5.703113e-05,0.0058366545,8.005192e-05,-0.0063766534,0.006236654,0.00474999,0.0032549931,-0.004966656,0.029226605,0.008586649,0.014813302,0.010946644,0.001482497,0.021199957,0.009359981,-0.015079969,-0.009899979,-0.0039033252,-0.010099979,0.021026623,0.0035166594,-0.029573271,0.0036666591,0.00037666588,0.0053766556,-0.003999992,0.017279964,-0.017973296,0.002691661,0.0034866594,-0.016853299,0.01270664,-0.030106604,-0.011759976,-0.032319933,-0.021413289,0.0077133174,-0.022306621,-0.0011133311,-0.0008499982,0.021813288,0.0013608305,0.0037566589,-0.010213312,0.016319966,-0.00074249844,-0.024653282,-0.0072733182,0.003473326,0.012646641,-0.025013281,-0.028533274,-0.0121133085,0.0012699973,-0.037813254,-0.0031299936,-0.016119966,-0.008899981,0.007319985,0.02222662,0.014333303,0.0011408309,-0.016759966,-0.012226641,-0.02097329,-0.017439963,-0.00463999,0.021386622,-0.00822665,-0.0149066355,-0.014253303,0.0020849956,-0.01121331,0.010513311,-0.025599947,-0.030933268,0.020039959,-0.0050399895,0.008479983,-0.0009149981,-0.0126266405,0.019426627,-0.010859977,0.012193308,0.022159955,-0.020919956,-0.021386622,0.0032983264,-0.008799981,-0.010013312,0.01786663,-0.007106652,0.031199936,0.020399958,-0.0031799935,0.02714661,-0.010033312,0.034213264,0.00790665,-0.00027520777,-0.012226641,0.013959971,-0.017733296,-0.0022833287,0.011139977,0.008866648,0.03698659,0.020066625,0.024066616,0.0014208304,0.0107399775,-0.0130199725,0.0002437495,-0.025799947,0.016373299,-0.0018333296,0.030159937,0.011973308,0.0013633305,-0.021106623,0.0116999755,0.0084266495,-0.0018733294,0.0041199913,-0.027359944,0.005219989,0.005283322,-0.009013315,-0.0012958306,-0.0028949939,-0.0105866445,0.023746617,0.022359954,0.016626632,0.009593314,-0.054079887,-0.0028666607,0.00939998,-0.006136654,0.0054199887,0.017013298,0.019906625,0.029999938,-0.01439997,0.028079942,0.00023583285,-0.016306633,0.014866636,0.017733296,-0.034426596,0.025293281,0.0005741655,0.03287993,0.022066621,-0.012966639,0.0042466577,-0.021959955,-0.010573312,-0.027519943,0.01451997,0.010966644,-0.008966648,0.013506639,-0.024866614,-0.0028283275,0.024893282,0.015333301,0.011679975,0.0092666475,0.007913317,0.0043933243,0.0019266626,0.007546651,0.007219985,-0.0048733233,-0.0068066525,-0.012446641,-0.01294664,0.010573312,-0.024813281,0.032453265,0.013959971,0.005699988,-0.005669988,0.014559969,0.016466632,-0.010239978,-0.045973238,0.0075999843,0.015333301,-0.0034016597,-0.020866623,-0.014239971,0.01111331,-0.021199957,-0.016573299,-0.0042033247,0.02415995,0.025053281,0.030159937,-0.012519974,-0.0023516617,0.045119908,0.010833311,5.1588435e-05,-0.020199958,0.010713311,0.018413294,0.008579982,-0.026679944,0.0166533,-0.04319991,0.0006979152,-0.0036933257,-0.0076533174,-0.02569328,0.018599961,-0.01806663,0.004676657,0.0051399893,-0.0026649944,0.009513314,-0.015573301,0.014346637,0.009133315,0.011966642,0.011439976,-0.015426635,-0.004636657,0.025786612,0.112106435,-0.0016233299,-0.013013306,0.025319947,-0.027306609,-0.02541328,-0.016586632,-0.01097331,0.022933286,-0.022306621,-0.0062033203,0.0018733294,-9.7447715e-05,-0.027413277,0.02997327,0.011753309,-0.009406647,-0.0092666475,0.0041699912,-0.01077331,0.004993323,-0.015439968,-0.009853313,-0.0018299962,0.013526638,-0.0329066,0.045893237,0.031199936,-0.018279962,-0.005269989,0.011873309,-0.009833313,-0.0078599835,-0.009493314,-0.01294664,0.032159932,0.0073466515,0.020279957,0.0044966573,-0.009153314,0.006879986,0.019306626,0.008346649,-0.021306623,-0.0008933315,-0.039039917,0.0125399735,0.03791992,-0.027199943,-0.035919923,0.0013983304,0.006763319,-0.047813233,-0.0130733065,0.010419978,0.037973255,-0.0032599932,0.006616653,-0.007626651,-0.028133275,-0.0058766543,-0.033999927,0.00072166516,-0.0007770817,0.002251662,-0.029786605,0.02145329,-0.011459976,-0.01302664,0.0033283264,0.010953311,-0.01939996,-0.037893254,-0.011319976,0.016906632,0.0010108312,0.02553328,-0.016106633,-0.026493277,0.026413279,-0.004423324,-0.022373287,-0.005759988,-0.03871992,0.006873319,-0.012853307,-0.018119963,-0.01278664,-0.0016783299,0.0111866435,0.016719965,0.015039968,0.0321866,0.03037327,0.016039966,0.00957998,0.010466645,-0.017973296,0.0147866355,-0.024826614,-0.000939998,-0.021493288,-0.0034866594,-0.019933293,0.0020199958,0.0025199947,0.015533301,0.0077066505,0.0028049941,0.0003906242,0.0067966525,0.013719971,0.0025816613,-0.016919965,0.008999981,0.0075533176,-0.0015749967,-0.005739988,0.011939975,-0.007473318,-0.0028199942,-0.04210658,0.004329991,0.014799969,-0.00087499816,0.009586647,0.0035699925,-0.011499976,-0.02997327,0.0033033264,-0.0070666517,0.008673315,0.0071133184,-0.02254662,-0.010566644,-0.025493281,-0.03429326,0.0056933216,-0.009133315,-0.022573287,-0.006189987,0.015453301,0.017573297,-0.004656657,-0.0018383295,-0.029759938,0.016693298,0.002158329,-0.002073329,0.008759982,-0.016226633,0.017106632,-0.012126641,-0.015893301,-0.023413284,-0.029493272,0.009926646,-0.00640332,0.034399927,0.038693253,0.03674659,-0.009159981,0.014559969,0.025799947,-0.018826628,-0.012106641,0.007293318,0.010126646,-0.01822663,0.0019183294,0.024986615,-0.0017899963,0.028426608,-0.014839969,-0.005556655,0.0054799886,0.012933306,0.007833317,-0.012526641,-0.019999959,-0.01963996,0.010733311,0.013839971,0.008526649,-0.025493281,0.0071533183,0.033226598,0.021813288,0.007626651,0.004116658,0.027039943,-0.0120266415,-0.0068533192,0.0150266355,-0.0018333296,-0.038186587,0.002829994,-0.0322666,0.009533313,0.039173253,0.005403322,0.010246646,0.00808665,0.0009466647,0.0039799917,0.014119971,-0.0053699887,-0.009306647,-0.012359974,-0.021639954,-0.0060999873,-0.0333066,-0.010033312,-0.027013278,0.025106614,0.017106632,-0.011919975,0.03751992,0.0037133256,-0.040186584,0.022439953,0.005699988,0.03375993,0.0030549937,0.032319933,0.027653275,0.013513305,-0.0127466405,0.0008574982,0.013399972,-0.00067208195,0.018546628,0.028026609,-0.0038799918,-0.017839963,0.013153306,-9.874979e-05,-0.008033317,-0.04335991,0.0036599925,0.010079979,0.012406641,-0.028906606,-0.03935992,-0.034746595,0.031226601,0.00959998,-0.0014891636,-0.014133303,-0.02545328,-0.00328166,-0.010099979,-0.011179977,0.0116999755,0.007046652,0.0134666385,0.003419993,0.003933325,0.006129987,-0.005299989,9.135398e-05,0.0127466405,-0.023119953,0.016199967,0.011479976,-0.0047533233,0.015426635,-0.006769986,-0.0016866631,0.028239941,-0.015706634,-0.016373299,0.0027483276,0.011373309,0.009166648,-0.024306616,-0.011126643,0.006659986,-0.023946617,-0.010646644,0.026879944,0.0014391637,-0.01427997,0.0048666564,0.0051399893,-0.022813287,0.01153331,-0.00065291533,-0.017253298,-0.010373312,-0.015093302,0.0017166631,-0.013193306,-0.011653309,0.018613294,-0.018533295,0.0016074966,0.03746659,-0.03429326,-0.0057899877,-0.00042145746,-0.009506647,-0.0041533248,0.0044899904,0.0039866585,-0.0037333255,0.030719936,-0.023973284,-0.005913321,-0.022653285,-0.013526638,0.019719958,-0.013286639,-0.005649988,-0.006833319,0.010553312,-0.019759959,0.009893313,-0.014839969,-0.008659982,0.006409987,-0.007146652,0.028239941,-0.031039935,0.005056656,0.0046233237,0.010233312,-0.0020566625,-0.028746607,-0.011873309,-0.016386632,0.031119935,0.0029416606,-0.0044533242,0.0006970819,0.024453282,-0.020266624,-0.01786663,-0.0051099895,-0.0031033268,0.0025183281,0.0055699884,-0.008759982,-0.013439972,-0.0042833243,-0.012573307,-0.019719958,-0.008499982,-0.032799933,-0.0054999883,-0.0074999845,0.021026623,0.0033816595,-0.017719964,-0.022799952,-0.0135866385,-0.034213264,-0.015839968,0.0014916635,0.0053699887,-0.005823321,0.012559974,0.01875996,-0.0012133308,0.003573326,0.0013858305,-0.009093314,-0.0027483276,0.0064199865,-0.008739982,-0.009333313,0.00812665,-0.0153866345,-0.010399979,-0.0049999896,-0.03391993,0.00066583196,0.031173268,-0.015533301,0.008866648,-0.002023329,-0.0077599837,-0.008199983,0.024879947,0.0120266415,-0.032666598,0.0031899933,0.0031849933,-0.02557328,-0.015826633,0.019559959,-0.0020799956,0.014733302,0.008199983,-0.012813306,-0.0071199853,-0.012133308,-0.015173302,0.023333285,-0.0023566617,-0.0062766536,0.014213304,0.0041233245,-0.00067791523,-0.021906622,0.021173289,0.011586643,-0.02395995,0.015653301,-0.011893309,0.011986642,-0.0021266623,0.0047766566,-0.0102599785,0.0069599855,-0.013759972,-0.0042033247,-0.022946618,0.0008699982,0.015693301,-0.0041433247,-0.013099973,-0.002736661,-0.0032583266,-0.026199946,-0.012319975,0.0022133286,-0.03021327,-0.009126647,0.014266637,-0.026666611,-0.015679967,0.022559954,0.0082199825,-0.035919923,0.011519976,0.20117292,-0.030666603,-0.007139985,0.0022949951,-0.0036533256,0.025719946,0.039386585,0.0021499954,0.0005008323,0.00651332,0.021119956,0.025906613,-0.017573297,-0.0038433254,0.005513322,-0.026373278,-0.02017329,-0.021666622,-0.008973314,0.0036999923,0.013033306,-0.030559937,-0.018773295,-0.026906611,0.031066602,-0.00048041568,-0.013166639,-0.0031149935,0.0042133247,0.023093285,-0.011399976,-0.015013302,0.030293271,0.011713309,-0.011619976,-0.006239987,-0.0057866545,0.0045399903,0.02238662,0.0025149947,0.0125066405,0.019266626,0.02041329,-0.008606649,-0.0032133267,0.03853325,-0.000787915,-0.0067033195,-0.014106637,0.01722663,-0.010446645,-0.002958327,-0.004043325,0.0089066485,-0.019026628,0.00832665,-0.0011049977,0.03871992,0.02194662,0.0058933212,-0.0064199865,0.022999952,-0.011033311,0.010866644,-0.02423995,0.02403995,-0.015546634,0.017799962,0.0040166583,0.005869988,0.0067933192,-0.0155066345,-0.020919956,-0.023279952,-0.026306612,-0.034533262,0.03045327,0.03349326,0.02871994,0.009939979,-0.0031399934,-0.0016974965,0.0005762488,-0.007939983,-0.01407997,-0.018133296,0.013853304,-0.007999984,-0.005636655,-0.0064899866,0.0024566615,-0.014133303,-0.0150266355,-0.004256658,0.00786665,0.019426627,0.018039962,0.0052666557,0.010673312,-0.0045199906,-0.022506619,0.034559928,0.02625328,0.02443995,-0.011506643,0.02037329,-0.03335993,0.03375993,-0.0017583297,-0.007699984,-0.019546626,-0.025039949,0.0159733,0.0011891642,0.010246646,0.009726646,-0.00091083144,-0.030026603,0.030293271,-0.030319937,0.007486651,-0.0070666517,-0.008833315,0.0007124985,-0.013986638,-0.018653294,-0.01694663,0.011166643,-0.019626625,-0.007146652,0.040586583,0.0026983276,-0.015159968,0.0043533244,0.003419993,0.008393316,0.025879946,0.00052291556,-0.008133316,0.0071333186,-0.008133316,0.007413318,-0.0055899885,0.0029866605,-0.0038266587,-0.006723319,0.024586616,0.0160933,-0.010419978,-0.012273308,-0.015173302,-0.003626659,0.0015633301,-0.004229991,0.014733302,-1.7626917e-06,-0.022999952,0.011919975,0.0062333206,0.0014008305,-0.03549326,0.02053329,0.014999969,-0.008733315,-0.030106604,0.012133308,-0.17215964,0.008099983,0.011919975,-0.045546573,0.014853302,0.013299973,0.009566647,-0.0025599946,0.017853295,0.009273314,0.0070799855,-0.003389993,0.0015599967,0.0019516626,0.010879978,-0.008919981,-0.025626613,0.019986626,0.008273317,-0.009686646,0.0102599785,-0.01419997,0.010159979,-0.007959983,0.025839945,0.004893323,-0.010566644,-0.0025799947,-0.00468999,-0.02714661,0.006879986,-0.015519967,0.03189327,0.007799984,0.028106607,-0.0121799745,0.0059399875,0.0039266585,-0.020679956,0.026719945,0.016039966,0.033573262,0.026093278,-0.004033325,0.0028083276,0.005123323,0.0122666415,-0.026413279,0.018599961,-0.024519948,0.02097329,-0.031919934,-0.0006058321,-0.02246662,0.021826621,0.0138266375,-0.020199958,-0.002914994,-0.0015349968,0.0158133,-0.002958327,0.0010491644,0.020599958,-0.003033327,-0.014853302,-0.0018916627,0.00036041593,0.0033533263,-0.022399953,0.016759966,-0.010986644,-0.0031149935,-0.0017233298,-0.016893297,0.00045166572,0.0037999921,-0.024853282,0.009666647,-0.007433318,0.000324166,0.0048133233,0.003523326,-0.014226637,-0.008439982,-0.0052033225,0.011966642,0.00076583173,0.0021433288,-0.026266612,-0.015866634,0.018653294,-0.037653256,-0.011846642,-0.02218662,0.009233315,0.013393305,-0.0067666527,-0.013066639,0.0035766591,-0.025039949,0.0037133256,-0.0010791644,0.012639973,-0.019306626,0.009846646,0.0030999936,-0.0042033247,0.01097331,0.028506607,0.017799962,-0.010239978,-0.0064799865,-0.008726648,0.024359949,-0.011999975,0.01947996,-0.0063866535,-0.029386606,0.015986633,0.0048766565,0.04469324,0.009966646,-0.017973296,0.02447995,0.0012558307,-0.029919937,-0.088266484,-0.021639954,0.021599956,0.04053325,-0.011086644,0.0075333174,-0.0023533285,0.036959924,-0.030986601,0.035839926,-0.007546651,-0.04706657,-0.023533285,-0.015626634,0.0022783286,-0.020479957,-0.031093268,-0.013759972,-0.013906638,0.024053283,0.008779982,-0.0021966621,0.010233312,-0.019253293,0.005473322,0.013373305,-0.035199925,0.028506607,0.0166533,0.004383324,-0.0027866608,-0.0318666,0.008433316,-0.02214662,0.00067166524,-0.0012533307,-0.006516653,-0.016399967,0.02601328,-0.022853285,-0.017413298,-0.012073308,0.001736663,-0.009493314,0.013679972,-0.020519957,-0.01907996,0.0091799805,-0.0015341635,-0.025986612,-0.034506597,-0.008539982,-0.025919946,0.003093327,0.011386643,-0.013619971,0.01762663,-0.022986619,-0.002533328,-0.0058266544,-0.022893285,-0.0020933289,-0.007659984,0.040879916,0.018519962,-0.006496653,-0.023573285,-0.006986652,-0.00927998,-0.01109331,0.013653304,0.015199969,-0.015559968,0.005606655,-0.029013272,-0.012613307,-0.0147866355,-0.009159981,0.020439958,0.016599966,-0.021759955,-0.019919958,0.015039968,-0.00636332,0.0005529155,-0.0016908298,-0.005973321,-0.0048366566,-0.0040299916,-0.019959958,0.0034699927,0.02037329,0.005179989,0.00016739548,-0.004279991,0.0033733263,-0.020079957,-0.0059399875,0.012739973,0.0012258308,-0.011646642,-0.022906618,-0.06959985,0.015426635,0.005853321,-0.0028616607,0.0092666475,-0.0040299916,0.014866636,-0.009913312,0.014159971,0.0066733193,-0.023133285,-0.0121466415,-0.013439972,-0.009913312,-0.0010916644,-0.0116666425,0.029386606,-0.007939983,-0.0035499926,-0.008239983,-0.0010674978,0.013666638,0.033199932,0.01258664,-0.026439944,0.008059983,-0.022613287,0.0021766622,-0.021693287,-0.0030866603,-0.0057899877,-0.0046099904,-0.0073266514,0.013139972,-0.010219979,0.0013808304,0.007299985,0.027733276,0.0047266567,0.035999924,-0.006079987,-0.035839926,0.012186641,-0.009813312,-0.009133315,-0.00808665,-0.0141866375,0.00023541617,0.03247993,0.016839964,0.026879944,0.015559968,-0.033733264,-0.019746626,-0.03509326,0.004156658,0.035679925,0.004943323,-0.003419993,0.013853304,0.026306612,0.024013283,0.0071866517,0.007839983,-0.021133289,0.015493301,-0.017453296,0.010179979,0.014506636,-0.024586616,0.0048233233,-0.001949996,0.0086666485,-0.010919977,0.026559945,0.0053533223,-0.0005224989,0.0132266395,-0.003909992,-7.442693e-05,0.010626645,0.00046624904,-0.030159937,0.0009008315,0.016026633,0.024506615,-0.011139977,0.008573315,-0.0012108308,-0.00015624968,-0.005126656,0.02335995,-0.006456653,0.016066633,0.0011949975,-0.0008999981,-0.031066602,0.0041866577,0.015399968,0.00804665,0.031839933,0.0008783315,0.0024149949,-0.0016666632,-0.040986583,0.007039985,-0.02089329,-0.016759966,-0.0041199913,0.00939998,0.011706642,0.026506612,0.009673313,-0.005769988,-0.023933284,0.04074658,-0.00832665,0.0020666623,-0.04634657,0.034746595,0.00014427054,0.007619984,0.017199963,-0.028613273,0.009939979,0.0049366564,0.0113066435,-0.026733277,0.002583328,-0.02521328,0.005033323,0.007846651,-0.008533316,-0.0015291634,-0.015133302,-0.01280664,-0.0150266355,0.009926646,-0.00814665,0.049066566,0.0016908298,0.0051733227,0.008013316,-0.010819977,0.007526651,0.0125066405,0.01674663,-0.04490657,-0.029893272,-0.00036645756,0.013193306,-0.0059466544,-0.0070799855,-0.008533316,0.0135866385,-0.015346635,0.00796665,-0.0042866576,0.003603326,0.013853304,0.024119949,-0.0010358312,-0.0010474978,-0.026026612,-0.0009633313,0.017879963,0.010173312,-0.0018649962,-0.028106607,0.0092666475,-0.0011549976,-0.04485324,-0.022453286,0.015253302,-0.0135533055,-0.005016656,-0.015013302,-0.0032883266,0.028586607,0.007853317,0.033573262,-0.019866625,-0.012226641,-0.019853292,0.0027983275,-0.0050399895,-0.010513311,-0.0012649974]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('407cd98a-a5da-11ee-8347-ff74000c0500', 'Technology', 'this article is about Cloud Engineering', '[0.012896101,0.0007302063,0.017895529,-0.025347508,0.025711348,0.018987048,-0.03484777,-0.02197862,-0.019579973,-0.036410935,0.015389077,0.029592307,0.0053194733,0.008691729,0.009291392,0.0048343535,0.017989859,-0.0008262196,-0.00508702,-0.017033095,-0.03166754,0.010450289,-0.007748441,0.003139803,-0.010665897,0.0034261586,0.027287988,-0.034389604,0.009594591,0.009480049,0.019660827,-0.013145398,-0.018205468,-0.001765297,-0.0245255,-0.028271703,-0.0006055575,-0.024296416,0.0093655065,-0.0056866817,0.03805495,0.0075260946,-0.0050735446,-0.01398762,-0.02086015,0.013286891,0.0282178,-0.014674873,0.0022032524,0.006151588,0.0070679258,0.012916314,-0.044226754,-0.015159993,-0.021857342,0.012316653,-0.03557545,0.013455336,0.019337414,-0.0104166,-0.001332395,-0.0018798391,-0.00454126,-0.016871387,-0.010638947,-0.004015714,-0.014176278,0.018852293,-0.011218395,-0.009237489,0.020428933,0.0096956575,0.011528333,0.0023211634,-0.010948884,-0.011649612,0.00029583042,-0.013812439,0.00784277,0.0038270561,-0.00055670866,-0.0004074248,0.021035332,0.01804376,0.009998858,0.00560246,0.0016187504,-0.011946075,0.013044332,-0.0004354287,-0.005770904,0.016736632,0.0025216122,0.014418838,-0.02131832,0.032206565,0.018717539,0.017248703,0.015267798,-0.028460361,-0.0043492336,0.014364935,-0.009176849,-0.0067748325,-0.044765774,-0.010921933,0.017019618,0.0039281226,0.027058903,-0.018353699,-0.0087119425,0.011083639,-0.013509238,-0.0034211052,0.0034733228,-0.026775917,-0.0024458123,-0.009507,0.0063301395,-0.013825914,0.04190896,0.018367173,0.016615352,-0.01777425,0.015793344,0.00020739713,-0.035494596,-0.020981431,0.021183563,-0.016871387,0.01777425,-0.0012321706,-0.014149327,-0.0022571546,0.011009524,-0.009426147,0.014701825,0.0074587166,-0.017194802,-0.015496882,-4.4058732e-05,0.022355936,-0.011952813,-0.013697896,-0.004959002,-0.0021729323,0.008307676,0.016022429,0.017221753,0.01704657,-0.008098805,-0.013320581,0.0074048145,0.009527214,0.0018191992,0.0036821938,-0.009480049,0.019795582,-0.002749012,-0.010618733,-0.002076919,0.014850056,0.015995476,-0.0060303085,0.028271703,0.032314368,0.004810771,0.0046120067,0.021116186,0.0021055546,-0.01913528,0.0050297487,-0.024943242,-0.0014806261,-0.0034059451,0.01568554,0.006545748,-0.004719811,-0.016871387,-0.025711348,0.009102734,0.01292979,0.02894548,0.0251319,-0.018596258,0.009668707,-0.0036687183,0.0021796701,-0.00011949022,0.009608067,0.02661421,0.027031953,-0.011023,0.012377292,-0.67097455,-0.024053857,-0.0058955527,0.009405933,-0.010194253,0.0013399749,0.02231551,0.0038843271,-0.0011791106,0.022288559,0.0044536693,-0.00036741927,-0.0048949933,-0.00049943756,-0.00085106515,-0.01765297,0.0022083058,-0.017302606,0.0092038,0.01023468,-0.024875864,0.01922961,-0.01447274,-0.015011762,0.0017156058,-0.019189183,0.013192563,0.012579425,-0.016386269,0.009850627,-0.013259941,0.026681587,0.00993148,0.006636708,0.029107187,-0.006791677,-0.0055148685,0.015496882,0.0011193128,0.032637782,-0.016116757,-0.016062856,0.008570449,0.017356507,-0.022868007,0.015389077,0.025778726,-0.028972432,0.0044435626,-0.014688349,0.011588973,-0.008280725,-0.0048613045,0.006377304,-0.0067377747,0.007000548,0.024094282,0.0040258206,0.010093187,0.0053666374,-0.00735765,0.013610305,-0.037300322,-0.026681587,-0.016871387,-0.00084853853,0.0030387365,-0.0073239612,0.010268369,-0.015294748,0.010436813,0.0005647098,0.0014393572,0.0019539546,-0.001992697,0.016386269,0.028514262,-0.023097092,-0.010039285,0.011582235,-0.004901731,-0.016763583,-0.010288582,-0.021547403,0.025765251,-0.010915195,-0.022854531,-0.032799486,0.0028029142,-0.00881301,0.018448027,0.011737203,-0.042286273,-0.019674303,0.010120138,0.018448027,0.00790341,-0.00036657706,0.011723728,0.015766393,-0.003469954,-0.0014191438,0.017801201,-0.008112281,0.034039237,0.007384601,-0.008974716,0.019674303,0.035925817,-0.0048613045,0.0021931457,-0.006468264,-0.0155373085,0.024390744,0.0006299819,-0.03436265,0.012680492,-0.014418838,-0.010618733,-0.0014014571,0.004578318,-0.01098931,-0.003803474,-0.005380113,-0.023056665,0.03015828,-0.018852293,-0.012033666,-0.016372792,-0.011023,0.004157207,-0.010248155,0.0153486505,-0.0075597833,0.030859008,0.007620423,0.005706895,-0.026695063,0.020981431,-0.014661398,-0.013125185,-0.0016490704,0.0075530456,0.01159571,-0.011366626,-0.014823104,-0.026843295,-0.000785793,-0.017235227,-0.0031768607,-0.0073643876,-0.004881518,0.021439599,0.022692826,0.0054542287,0.0071824677,0.0011142595,-0.036249228,-0.036437888,-0.031559736,-0.007883197,0.008220085,-0.023393555,-0.009715871,-0.0141358515,0.0077956053,-0.025765251,0.0016836014,-0.0040729847,-0.019539546,0.0066030193,0.0030016787,0.013650732,0.013475549,-0.013765274,0.0068017836,-0.0072565833,-0.008530023,0.0010839396,-0.009055569,-0.013421647,0.0024542345,-0.017100472,-0.003109483,0.012741132,0.0032290786,0.030104378,0.022504168,0.0020786035,0.0028096521,-0.026102139,0.014513167,-0.0050095357,0.014391887,-0.008698467,-0.0077214898,-0.0184076,0.0050331177,0.002885452,-0.0031381187,0.011743941,0.009682182,0.020024667,0.005080282,0.020617591,-0.020038143,-0.010403125,-0.009560903,0.015631637,0.011474431,0.023124043,-0.0004918575,-0.019458694,-0.02119704,0.009951693,0.011993239,-0.0126400655,0.007937099,-0.028002191,-0.003166754,-0.0009458151,-0.01726218,0.022140328,-0.010349222,-0.017383458,0.027786583,0.017140899,0.016291939,0.0075463075,-0.051826965,-0.0051038642,0.017989859,-0.0040999358,-0.008523285,0.010194253,0.026937623,0.020590639,-0.029754013,0.025468789,-0.0060033575,-0.0056058285,0.028298654,0.022261608,-0.033203755,0.025670921,0.023124043,0.018259369,0.019094853,0.0042010024,-0.0063267704,-0.016035903,-0.00023413767,-0.01123187,0.010120138,0.022908434,0.006980335,0.011252084,-0.022962335,0.0075799967,0.013583354,0.021453075,0.0153486505,0.025846103,-0.0010106663,0.015820295,-0.016777059,-0.007923624,-0.012464884,-0.008873649,-0.018205468,-0.00066998746,-0.007883197,0.022248132,-0.026169518,0.0013256571,0.027355365,0.006363828,0.0034413184,0.010362698,0.025024096,-0.0126400655,-0.026492931,0.0042010024,0.010793915,-0.0011563706,-0.007606948,-0.011339675,0.009527214,-0.01220211,0.0012313284,0.0005348109,0.01583377,0.020172898,0.016965717,-0.0012928105,-0.0042346916,0.03975287,0.0044637755,-0.008314414,0.004959002,0.0041369935,0.011191444,0.0075732586,-0.0052419887,0.028352557,-0.024242513,-0.010295319,-0.006043784,0.01317235,-0.034766916,0.008893862,-0.03309595,-0.009183587,0.013684421,-0.022234656,0.0051645045,-0.007566521,0.008536761,0.01507914,0.0045581046,0.0065053217,-0.0064985836,-0.016682731,0.029996574,0.09583811,-0.0034564785,-0.005383482,0.025334032,-0.03457826,-0.042528834,-0.016547974,-0.032422174,0.011932599,-0.029026333,0.0055788774,0.0077214898,0.010200991,-0.02988877,0.018003333,0.015483406,-0.002855132,0.0033267762,-0.0120808305,-0.007088139,-0.0018747859,-0.009911267,0.0046861223,0.015281273,0.038944338,0.00078410853,0.033419363,0.020725396,-0.014486216,0.0009070729,0.0035339629,-0.005538451,-0.003998869,0.011541808,-0.004696229,0.049832582,-0.016345842,0.006370566,0.0006156642,-0.020401983,-0.0090420935,0.015335175,0.009641755,-0.011218395,0.010376173,-0.04042665,0.020118995,0.05247379,-0.035979718,-0.010281844,0.016750108,0.008786058,-0.05320147,-0.024633305,0.012269488,0.027031953,0.016238037,-0.0036821938,-0.0131521365,-0.036842152,-0.030751204,-0.036734346,-0.013879816,-0.0070746634,0.0008068485,-0.026196469,0.018609734,-0.010180778,-0.013030856,-0.011683301,-0.0059629306,-0.023636114,-0.045439553,0.013677683,0.032260466,-0.0035912339,0.01816504,-0.007027499,-0.029376699,0.006218966,-0.015618162,-0.005295891,0.0104907155,-0.033365462,-0.001810777,-0.017181326,-0.019782107,0.0037462027,-0.0133879585,0.016601877,-0.003712514,0.012720918,0.03234132,0.022760203,0.03236827,0.027193658,0.010450289,-0.01062547,0.008260512,-0.03479387,-0.0061751707,-0.019243084,0.009891054,-0.01059852,0.009614805,0.030239133,0.007027499,0.0017922481,0.008065117,0.0024811856,0.0040763537,-0.0016111704,-0.0064177304,-0.0131993005,-0.02161478,0.010457027,-0.0008304307,-0.0049286825,0.012195372,0.0072767967,0.011474431,-0.036410935,0.0073172236,0.008536761,-0.014001096,0.015146517,0.0060404153,-0.017922482,-0.024983669,0.0065086903,-0.0088062715,0.014580545,0.0013307105,-0.012512048,-0.018488454,-0.04053445,-0.00095929066,-0.00092391734,-0.008819747,-0.036923006,-0.023514833,0.012047141,0.017545165,0.003166754,-0.00021097658,-0.027544023,0.0022015679,-0.0007390497,-0.010308796,0.02125094,-0.007916885,0.0073239612,0.0027574343,-0.01556426,-0.03358107,-0.03430875,0.016359316,-0.027193658,0.030454742,0.03503643,0.02712628,-0.0138528645,0.03061645,0.024902815,-0.014620971,-0.008375054,-0.0021308213,0.0015328438,-0.028298654,-0.002418861,0.03412009,-0.0075799967,0.011258822,-0.0020550212,0.0055519263,0.009480049,0.017585592,0.008321152,-0.022504168,-0.037893247,-0.020617591,0.0074048145,0.00028572377,0.013441861,-0.022989288,0.0069331704,0.032529976,0.01716785,0.01573944,0.0017535059,0.033742774,-0.005979775,0.008233561,0.0027052166,0.00999212,-0.026695063,-0.00258899,-0.023326175,-0.0042717494,0.029780965,0.0075597833,0.017437361,-0.009924742,0.0071689924,-0.025926957,0.023811296,-0.0125929015,-0.013259941,0.0011176284,-0.025360985,-0.00786972,-0.030266084,-0.0042346916,-0.02437727,0.025414886,0.013906767,0.0063941483,0.04705662,-0.016318891,-0.011366626,0.02195167,0.009325081,0.01583377,0.0042717494,0.030993763,0.02870292,0.012242537,-0.02125094,-0.0075463075,0.0060673663,-0.01338122,0.021291368,0.040049333,0.004709705,0.0062492862,0.011056689,-0.003978656,0.025738299,-0.02231551,0.0118450085,0.003921385,-0.00908252,-0.018070713,-0.03975287,-0.02282758,0.019364364,0.013125185,0.003272874,-0.014149327,-0.014998287,0.0046120067,0.005562033,-0.011562021,0.02479501,-0.0043256516,0.0069870725,0.017855102,-0.007910147,-0.007856245,-0.00944636,-0.0041134115,0.01804376,-0.03587191,-0.0063840416,0.016332366,0.019350888,0.00863109,-0.009109472,-0.012727656,0.026290797,-0.0068287347,-0.026951099,0.011292511,0.0071285656,0.03412009,-0.02246374,0.0016659148,-0.022126852,-0.0015016815,-0.027570974,0.023541786,-0.012532261,-0.017545165,-0.010079711,0.0049286825,-0.025630495,0.014540118,-0.00569342,-0.004642327,-0.019391315,-0.026102139,0.001777088,-0.019633876,0.008287463,0.0025468788,0.0026412078,-0.009823675,0.038162757,-0.027085854,0.005979775,0.0074048145,-0.017019618,0.0007167308,0.02515885,0.0032964563,-0.0014873638,0.023124043,-0.0057237395,-0.0071016145,-0.01765297,-0.0068354723,-0.005929242,-0.022652399,-0.002425599,0.007303748,0.011016262,0.0046524336,-0.02156088,-0.020280702,0.014971335,-0.010322271,-0.0141089,0.044038095,-0.020523261,-0.0018326747,0.008220085,-0.006141482,-0.0097428225,-0.010881506,-0.026924148,-0.0005941875,0.032179613,-0.00481414,-0.015672063,-0.0042852247,-0.0049387887,-0.004430087,-0.02146655,-0.0012650172,0.020994905,0.020199848,0.003948336,-0.001719817,0.0077282274,-0.023838246,-0.028568165,-0.028783774,-0.029484503,-0.038944338,-0.011811319,-0.01035596,0.024565928,0.00047627644,-0.00956764,-0.024943242,-0.012862412,-0.037866294,-0.01507914,-0.0029663052,0.0062021217,0.0035676518,0.016507547,0.023797821,0.0028483942,-0.0029343008,0.037165567,-0.009197063,-0.007997738,0.0061482196,-0.028136948,0.0024929766,-0.0111442795,-0.01571249,0.011380102,0.003067372,-0.014378412,0.004992691,0.008105543,0.00974956,0.011002786,-0.0046793846,-0.011198182,0.007593472,0.027395792,0.0055283443,-0.049239658,-0.017747298,0.023474406,-0.014850056,-0.011117328,0.013906767,0.016143708,-0.008671517,-0.0041639446,-0.009527214,0.0005706053,-0.0019270036,-0.009655232,0.015240846,-0.004878149,-0.0006316664,0.019566499,0.0066805035,-0.0032880341,-0.008071854,0.018070713,0.0029241943,0.006006726,0.0017038148,-0.014405362,-2.5700925e-05,0.016965717,-0.007229632,-0.0025687767,-0.009480049,-0.019822534,-0.0036855629,-0.004008976,-0.007876459,0.03234132,0.0032391853,-0.008078592,-0.005289153,-0.0011218395,-0.013893291,0.0032593985,0.010005595,-0.033311557,-0.017666446,0.009614805,-0.031694494,-0.019014,0.008179658,0.02107576,-0.0026748965,0.019889912,0.20224105,0.0032762429,-0.0028029142,0.006360459,0.015052189,0.0022015679,0.02743622,0.013724847,-0.015240846,0.02049631,0.01886577,0.013569878,0.003823687,-0.0012448039,0.0075463075,-0.027449694,-0.023083616,-0.0045715803,-0.010544618,0.02195167,0.013933718,-0.037192516,-0.019445218,-0.01838065,0.019997716,-0.013758536,-0.011279035,0.027894387,0.021776488,0.03775849,-0.012619852,-0.010820867,0.016521024,0.009978645,0.001153844,-0.007593472,0.024121234,-0.006097686,0.022894958,0.016965717,0.0074317656,-0.00028003877,0.030319987,-0.0053430554,-0.002349799,0.028109996,-0.017585592,0.0050937575,-0.016062856,0.013361007,-0.008826485,0.008361579,0.00082285074,0.012613114,0.0021864078,0.008395268,0.016089806,0.044199802,-0.0034901674,0.0010864661,-0.016453646,0.02819085,-0.022760203,0.0045345225,-0.020226799,0.0057641664,-0.013933718,0.007411552,-0.0053666374,-0.004197634,0.0033604652,-0.0014898904,-0.001943848,-0.004197634,-0.033554118,-0.025994334,0.016750108,0.018084187,0.033230703,0.012101043,0.0051308153,-0.005376744,-0.007451979,-0.018434552,0.0063907793,-0.016601877,0.020698445,-0.0103963865,-0.030535595,-0.014378412,-0.0033773095,-0.0010485662,-0.026641162,-0.0060505215,0.010881506,0.028756823,0.008092067,0.00865804,0.0067984145,-0.001446095,-0.028756823,0.040049333,0.024161661,0.028918529,-0.0044940957,0.01641322,-0.013866341,0.029619258,-0.013697896,-0.019391315,-0.018960098,-0.00820661,0.02146655,-0.0028079676,-0.0016271726,0.025590068,-0.00040763538,-0.01338122,0.02585958,-0.035710204,0.010692849,-0.020253751,-0.00826725,-0.003094323,-0.0077888677,-0.01396067,-0.017733824,0.019296987,-0.01656145,-0.026897198,0.051153187,0.0058719707,-0.0037832605,-0.0028315498,0.002866923,0.023097092,0.015281273,-0.0068961126,-0.0125929015,0.011070164,0.0020381769,-0.0038337938,0.008846698,0.013138661,-0.012869149,-0.0057607973,0.015523833,-0.001104995,-0.01556426,-0.026964575,-0.020092044,-0.005983144,0.0030909542,-0.01617066,0.022719776,-0.01716785,-0.022894958,-0.025549643,0.009608067,0.0024727634,-0.038324464,0.013556403,0.027355365,0.0044098734,-0.0127343945,0.020455884,-0.17453532,0.0053733755,-0.0020213325,-0.026277322,0.023865199,0.022167278,0.011279035,0.016696205,-0.0044671446,0.0012203795,-0.006252655,0.007202681,-0.0145535935,0.00054660195,0.01047724,0.005167873,-0.019849485,0.0074856677,0.017221753,0.0032223407,0.02867597,-0.0025805677,0.005706895,-0.00956764,0.010969098,0.011211657,-0.018811867,0.0022841056,0.0016254882,-0.0031061142,-0.0021409278,-0.003971918,0.041828107,0.012235799,0.0060269395,-0.0141089,-0.0039314916,0.010214467,-0.017181326,0.017639494,0.020307653,0.02037503,0.026897198,-0.005535082,0.008004476,0.019014,0.008145969,-0.01913528,0.033203755,-0.014270607,0.03385058,-0.033769727,-0.017747298,-0.009796725,0.008280725,0.0057001575,-0.011871959,0.0113329375,-0.0073441747,0.0012532261,-1.8871033e-05,-0.024687206,0.0063806726,-0.019674303,-0.021277893,-0.017383458,0.013637256,0.016777059,-0.021601306,0.010342484,0.0036451363,-0.016588401,-0.016682731,-0.012950003,-0.0023784344,0.012161683,-0.05171916,0.009864102,0.014095425,-0.018286321,0.015389077,-0.0012515417,0.005831544,0.008745631,-0.023407029,0.00941941,-0.02282758,-0.0009070729,-0.014054998,0.0003804737,0.019243084,-0.03630313,-0.004581687,-0.032988146,-0.0012608061,0.008415481,0.0054778107,-0.014607496,-0.011588973,-0.013253203,0.0043896604,-0.00908252,-0.011481168,-0.011380102,0.0056091975,0.013724847,0.0024491812,0.023016239,0.033500217,0.0075260946,-0.03215266,0.0063840416,0.0060404153,0.008799534,0.0011816373,0.011117328,0.019270036,-0.023083616,0.003109483,-0.003648505,0.050910626,-0.006821997,-0.024943242,0.011434004,0.010787178,-0.023784345,-0.06964164,-0.0066266013,0.027705729,0.018084187,-0.015389077,-0.006033677,-0.0141089,0.035413746,-0.0478921,0.029214991,0.001370295,-0.023973003,-0.022881484,-0.01398762,-0.0011715306,-0.021749537,-0.038216658,-0.00015328437,-0.02037503,0.03659959,0.010120138,0.009170111,-0.001541266,-0.02234246,-0.01005276,0.021453075,-0.03654569,0.017248703,0.020226799,-0.013327318,0.01244467,-0.020981431,-0.004211109,-0.010120138,-0.0046625403,-0.0037933672,-0.012107781,-0.006020202,0.03649179,-0.019849485,-0.012458146,-0.010066235,0.004130256,-0.019633876,-0.007620423,-0.0052487263,-0.02994267,0.006245917,0.0016103282,-0.021668684,-0.02240984,-0.0023363235,-0.015025238,-0.009001667,0.018596258,-0.021035332,0.01017404,-0.014270607,-0.01741041,-0.0051914556,-0.015820295,-0.005531713,-0.008792796,0.056327797,0.0331229,0.008725419,-0.016615352,-0.0030437896,-0.010787178,-0.0073239612,0.001734977,0.0007276797,-0.02231551,0.0128287235,-0.028433409,-0.018111138,-0.01726218,-0.0141089,0.0067984145,0.014984811,-0.004126887,-0.02394605,0.013131923,-0.011858484,0.019943813,0.013778749,0.015995476,-0.013920243,0.0059865126,-0.02401343,0.009466574,0.011979763,0.012067354,0.0037495717,0.003614816,-0.007836032,-0.028999383,-0.012114519,-0.011521595,0.008125756,-0.0010746751,-0.016022429,-0.06780896,0.0124514075,0.006886006,0.012074092,0.0026664743,-0.01398762,0.006731037,-0.009769773,-0.006859055,0.031209372,-0.011871959,-0.0053363177,-0.0074924054,-0.013226252,0.00019750102,-0.013475549,0.01080739,-0.005717002,0.0016431748,-0.011454217,-0.012148208,-0.0036990384,0.031290226,0.010147089,-0.021493502,0.016979191,-0.005915766,-0.0033672028,-0.018272845,-0.012970217,-0.0089949295,-0.022113377,0.008624352,0.023177946,0.006232442,-0.0058551263,0.015456455,0.02240984,0.013051069,0.037165567,0.001712237,-0.038674828,0.009594591,0.00053523196,-0.007532832,-0.013495763,-0.015146517,-0.011124066,0.035225086,0.02743622,0.045682114,0.012242537,-0.013334056,-0.016130233,-0.009109472,-0.007984263,0.028783774,0.018731013,-0.018245894,0.0073374365,0.04711052,0.015820295,0.0147153,-0.0026327856,0.011151018,0.020658018,-0.025347508,0.019930338,0.003469954,-0.03778544,0.024633305,-0.010005595,0.005585615,0.022814106,0.0028652388,0.0073104855,-0.00786972,-0.009574378,-0.0063200328,0.020873627,0.015186944,-0.00010296162,-0.013839389,0.0124985725,0.002760803,-0.0014999971,-0.0071689924,-0.0028332344,0.0056866817,0.011299248,-0.018798392,0.016628828,-0.016426696,0.014823104,-0.0016111704,-0.0082470365,-0.011063426,0.011380102,0.025819153,0.009789987,0.021143137,0.01226275,0.0021813547,-0.009830413,-0.038135804,0.009176849,-0.015523833,-0.0097428225,-0.02158783,0.024336843,-0.00093402405,0.0062964507,0.003651874,-0.0037259895,-0.023838246,0.01556426,-0.0145535935,0.0024778168,-0.038836535,0.02552269,-0.022948861,0.008570449,0.003200443,-0.031451933,0.013495763,-0.0023868566,-0.009621542,-0.016669255,-0.010847817,-0.020887101,0.0155373085,0.010820867,0.009729347,-0.006377304,-0.016669255,-0.011043212,-0.004746762,0.003412683,-0.008226823,0.059184615,0.01356314,-0.020092044,0.01971473,-0.0058517572,0.023851722,0.013340794,0.014809629,-0.018286321,-0.025468789,-0.001609486,0.023811296,-0.020590639,0.0022841056,-0.014526642,0.013361007,-0.010847817,-0.002873661,-0.006821997,0.01226275,0.010403125,0.008395268,-0.0016423326,0.0014317771,-0.028595116,-0.0035844962,0.03390448,0.019930338,0.011818057,-0.022814106,0.013125185,0.0073441747,-0.05244684,-0.025064522,0.0131049715,-0.00786972,-0.0154429795,-0.005865233,0.003215603,0.008482859,0.008664778,0.012114519,-0.023878673,-0.018313272,0.0013104972,-0.012121256,0.012222324,0.0029090343,0.017855102]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('4080a574-a5da-11ee-8347-1f6a7fda6e7f', 'Technology', 'this article is about Security', '[0.021416772,0.00255026,0.011290143,-0.030900763,0.007630486,0.021687357,-0.04169709,-0.02075384,-0.014286868,-0.026070828,0.02126795,0.017222712,-0.00053820974,0.01760153,0.01637037,0.008692531,0.025637893,0.018318579,0.009023997,-0.013170706,-0.03612305,0.021768533,-0.01081662,0.01003869,0.00068407174,0.0046878783,0.007840189,-0.046865255,0.0028529766,0.0020057084,0.029358432,-0.0115471985,-0.027153166,-0.015058034,-0.014110988,-0.008746648,0.002560407,-0.027017875,0.0038389193,-0.009199877,0.013069237,0.010701622,-0.0037002447,-0.008827823,-0.015572145,0.0074207834,0.024406733,-0.0076846033,-0.012561891,0.010667799,0.006866085,0.009903397,-0.04521469,-0.014611569,-0.025313191,-0.0013588421,-0.0120816035,-0.0045559686,0.015815672,-0.017222712,-0.0148686245,-0.010410743,-0.017290358,0.007271962,-0.0017993877,-0.0023473215,-0.009341934,0.0281408,-0.013333057,-0.008455769,0.009544873,0.019292684,0.014692745,0.011344261,-0.00019839349,-0.0011423745,0.012676889,0.00086375687,0.01881916,-0.0032470154,0.00049339415,-0.00011584404,0.005475956,0.015720967,0.01830505,0.00053736416,-0.00303393,0.0052899295,0.018277992,-0.003997888,0.016397428,0.010518977,-0.001664941,0.008638414,-0.036501866,0.043753535,0.010248393,0.0147062745,-0.003909948,-0.013001591,0.0147062745,0.008827823,-0.012629537,-0.013563054,-0.036907744,-0.016654484,0.0031370905,0.01258895,0.015964493,-0.025191428,-0.020835016,0.007961952,-0.0020395315,-0.01795329,0.0021511477,-0.0082257725,0.0017173667,-0.010309274,0.013373645,-0.02409556,0.037503026,0.0040181815,0.015342148,-0.008205479,0.025110252,-0.0028191535,-0.019793265,-0.013698346,0.021227363,-0.0096192835,0.01320453,-0.012392775,0.0067409393,0.009713988,0.00942311,-0.0012548362,0.008016069,0.009098408,-0.012548362,-0.027843157,0.010228098,0.019211508,-0.023879092,-0.00633168,0.005685659,-0.0046100854,0.0007842726,0.025543189,-0.008848117,0.022553228,-0.012846005,-0.015639791,0.006987848,8.439915e-05,-0.009910162,0.020672664,-0.005428604,0.008658708,-0.010836914,-0.024027914,-0.011364554,-0.0036562746,0.0045322925,0.0030373123,0.01310306,0.035825405,0.0059190383,0.029493723,0.011526905,0.014029812,-0.013806581,-0.0054827207,0.003507453,0.0038998008,0.0016395737,0.021538535,0.005296694,-0.014395102,-0.013799815,-0.007366666,-0.008712824,0.006152418,0.030116068,0.03447248,-0.034743067,0.023703212,0.0066124117,0.014368043,0.0020665901,-0.011093969,0.02971019,0.02270205,-0.015382736,0.001768947,-0.68317205,-0.024203794,-0.008029599,0.029141964,0.00071831763,-0.0027853304,0.025867889,0.012906887,-0.007630486,0.024082031,-0.0014374808,-0.017303886,-0.007177257,-0.0073125493,-0.017168595,-0.011019559,0.0021731327,-0.026327884,0.012440128,0.016248606,-0.018250933,0.01881916,-0.020699723,-0.004356412,0.004339501,-0.009768105,0.007265197,-0.008131068,-0.0128189465,0.012298071,-0.015802141,0.015179797,0.007928129,0.0147468615,0.026882581,-0.0071501983,0.006652999,0.017168595,0.013197765,0.043374714,0.002692317,-0.02938549,0.00853018,0.011012794,-0.0115877865,0.012717477,0.02567848,-0.029358432,0.0041331802,-0.017317416,0.013096295,-0.010207805,0.0008464225,0.010018395,0.0061625647,0.01443569,0.03366073,-0.007975481,0.029764308,-0.0043902355,-0.011141322,0.022012059,-0.027193755,-0.022242056,-0.020780899,-0.0012514539,-0.0023693065,0.00391333,0.009132231,-0.019252095,0.013218058,0.007880777,-0.02040208,-0.004231267,-0.011066911,0.019211508,0.025881419,-0.030521944,0.0008164045,0.007271962,-0.012338659,-0.009294582,-0.026070828,-0.016465073,0.03555482,-0.010498683,-0.018359166,-0.018913865,0.021673828,0.010999265,0.023310864,-0.0028073154,-0.023378512,-0.0031337081,0.0076643093,0.015612733,0.015139209,-0.0128595345,-0.0011948003,0.007846954,-0.013001591,0.0042583253,0.017709764,-0.010951912,0.024866726,0.019049156,0.015450382,0.010228098,0.017723292,-0.025313191,0.011100734,-0.008185185,-0.013948637,0.016870951,-0.008577532,-0.034174837,0.03201016,-0.008584297,0.0028005508,-0.0036055401,0.018440342,-0.019969145,-0.0017156756,-0.006703734,-0.012636302,0.026584938,-0.017547412,-0.0016480294,-0.013508937,-0.011384848,0.010546035,-0.012852769,0.018575635,0.00576007,0.0054319864,0.008367829,0.0073328433,-0.02304028,0.025935536,-0.013833638,-0.010951912,-0.023364982,-0.009152525,0.00378142,-0.009524578,-0.029818425,-0.010918089,-0.0012362335,-0.023283806,0.0015981405,0.00017292048,-0.01037692,0.014422161,0.0049855215,0.0123251295,0.008293418,2.6655491e-06,-0.021971472,-0.02003679,0.006351974,0.00065024866,0.024082031,-0.028330209,-0.021565594,-0.0071704923,0.012365717,-0.0025908477,0.0027176843,-0.0020395315,-0.029764308,0.0016632498,0.008259595,0.008712824,-0.007745485,-0.0021714417,0.026584938,-0.009984572,0.014219222,0.014936271,-0.0025181281,-0.0015068181,-0.016573308,-0.025123782,-0.0011220806,0.0147468615,-0.0003822008,0.025421426,0.02603024,-0.0026466558,0.018210344,-0.0030728267,-0.005966391,0.008658708,0.0020462961,-0.017046832,-0.008367829,-0.0041500917,-0.00018930354,0.017385062,0.012582185,0.0401277,0.0074546062,0.031198407,-0.010282216,0.015585674,-0.02130854,-0.0026331267,-0.02393321,0.024244381,-0.0009825605,0.025881419,-0.00022175255,-0.006700352,-0.0158292,0.016113315,0.017276827,-0.012575421,0.010383685,-0.019928558,0.006538001,0.012392775,-0.013150413,0.02410909,-0.015883317,-0.018440342,0.03303838,0.026639055,0.009477226,0.0054150745,-0.0559569,-0.0070622587,0.011743372,-0.008699295,0.012575421,0.016424486,0.021687357,0.039370064,-0.026774349,0.02249911,0.0016666321,-0.008219007,0.037530087,0.013738934,-0.01987444,0.03325485,0.011750137,0.023946738,0.012196601,-0.009382522,-0.005902127,0.0031776782,0.0022915136,-0.020347964,0.019495621,0.021917354,-0.007177257,0.014016284,-0.022661462,-0.0050058155,0.00995075,0.028627852,-0.0023929828,0.016532721,0.009551637,-0.004048622,0.0024014385,-0.011351025,-0.007901071,0.004461264,-0.019252095,-0.0065244716,-0.006165947,0.018223874,-0.0045897914,0.014733332,0.022742637,0.0036867154,0.0033366466,0.01634331,0.02041561,-0.032524273,-0.036637157,0.0022069558,0.016695071,-0.0067206454,-0.027207283,-0.015883317,-0.008273125,-0.005969773,0.00034393842,0.0066969693,0.022972634,0.02496143,0.012291307,-0.0052459594,-0.0070352,0.040533576,0.0031692223,0.004031711,0.011026323,0.011581021,0.007901071,-0.0018856366,-0.019603856,0.021416772,-0.03468895,0.011175144,-0.007156963,0.009179583,-0.031739578,0.02216088,-0.023824975,-0.0031387815,-0.009348699,-0.007549311,0.03287603,-0.016397428,0.013258646,0.025475541,0.02006385,0.0078537185,-0.009483991,-0.007982247,0.024190266,0.09989984,-0.00077539403,-0.003375543,0.019143863,-0.027586102,-0.04307707,-0.011817783,-0.020442668,0.014029812,-0.03993829,0.0032351774,0.0076778387,-0.008313713,-0.018007407,0.038423017,-9.3964736e-05,0.0018822543,0.005942715,-0.0134751145,-0.014340985,0.017709764,-0.031036057,-0.0023608508,0.011398377,0.01917092,-0.024690846,0.053548697,0.017385062,-0.008381358,0.0067781447,-0.010228098,0.0024538643,0.0024572467,-0.008300183,-0.02359498,0.034986593,-0.018169757,-0.00022830577,-0.01459804,0.008205479,0.009436639,0.0148280375,0.007630486,-0.014124517,0.0050836084,-0.038044196,0.012210131,0.037773613,-0.021376185,-0.016640954,-0.0021054866,0.008239302,-0.037205387,-0.019238567,-0.00018275031,0.013319528,-0.0064703547,0.008158126,-0.026503764,-0.034905415,-0.022472052,-0.038233608,0.01258895,-0.007441077,0.001965121,-0.024677318,0.008509886,-0.03241604,-0.010884266,-0.008029599,0.011371318,-0.013150413,-0.020672664,-0.0010544345,0.028465502,-0.0037273031,0.016735658,-0.008239302,-0.03236192,0.009896632,-0.010092806,-0.018183287,-0.0056890417,-0.040046524,0.0037678909,-0.018507987,-0.024054972,-0.013393939,-0.015450382,0.006274181,0.0066191764,0.018751513,0.020726781,0.009727517,0.007014906,0.009639577,-0.0001171124,-0.009558402,0.027667277,-0.011553964,0.0036461276,-0.015152738,0.0065988824,-0.016126843,0.001115316,0.015518028,0.0067882915,0.016627425,0.019779736,0.014368043,0.006057713,-0.0019837236,-0.013251882,-0.003419513,-0.014395102,0.0024927608,0.0050362563,-0.0013596878,0.0025671716,-0.008232537,0.009166054,-0.02128148,0.0012362335,0.010762503,0.0062674163,0.009835751,-0.00036444367,-0.02636847,-0.025029078,0.0075222524,-0.00496861,0.008949586,0.0012709021,-0.0184674,-0.013657759,-0.024325557,-0.016627425,0.0037002447,-0.0069202017,-0.038666543,-0.01706036,0.0044680284,0.01477392,-0.012602478,-0.0021054866,-0.032037217,-0.0009783325,-0.00215453,-0.000190889,0.022377348,-0.018386224,-0.0026737142,-0.012690418,-0.016262136,-0.036961857,-0.044240586,0.013082766,-0.0035142177,0.03707009,0.04553939,0.02513731,-0.019793265,0.018548576,0.025448484,-0.007008142,-0.013197765,-0.011959841,0.012331894,-0.023378512,0.012724242,0.02356792,-0.009078114,0.006494031,0.007271962,-0.0025181281,0.008421946,0.021484418,0.018075053,-0.026097886,-0.017182123,-0.011229262,-0.0046777315,-0.004955081,0.014273339,-0.038287725,0.005306841,0.016099785,0.012846005,0.011303673,-7.927284e-05,0.03555482,-0.0055469847,-0.007759014,0.005114049,0.0016843893,-0.030927822,-0.0041839145,-0.026179062,8.574679e-06,0.036095988,0.014300397,0.019887969,0.00047056357,0.0020158554,-0.0047961124,0.026300825,-0.005235812,-0.014002754,0.0047284663,-0.019712089,-0.015369207,-0.03344426,-0.022580286,-0.027044933,0.023283806,0.0072110803,-0.015463911,0.04518763,0.0046777315,-0.033687785,0.008604591,0.018426813,0.026841994,-0.0007978018,0.018859748,0.015436852,0.013799815,-0.019103274,-0.0011051691,0.0075898985,-0.020469727,0.028005509,0.029277256,-0.01862975,0.0007673611,0.009538108,-0.0011931091,0.0059055095,-0.030738413,0.0083543,0.010140158,0.006385797,-0.030305477,-0.036988918,-0.04115592,0.0072787264,0.021213833,0.017817996,-0.0075560757,-0.022715578,-0.004569498,0.01634331,-0.025583776,0.010119865,9.0423884e-05,-0.00068111223,0.01688448,-0.012473951,0.011236026,-0.024893785,-0.009693694,0.014895683,-0.014178634,-0.008083715,0.02021267,0.012683654,0.0063350624,-0.01250101,-0.0015634717,0.031008998,-0.009943984,-0.023838505,-0.002230632,0.005993449,0.01311659,-0.0007800447,-0.0043699415,-0.019130332,-0.008936057,-0.013908049,0.011973369,0.009308111,-0.014368043,-0.0030085628,-0.008361065,-0.025191428,-0.0047656717,-5.5068198e-05,-0.0041399444,-0.00053355907,-0.028709028,-0.0071366695,-0.024920844,0.0058412454,0.011641903,-0.008794,-9.6554315e-05,0.036339514,-0.030792529,0.00013360116,-0.001922842,-0.0012725933,-0.0003073672,0.0022543082,0.014124517,-0.015680378,0.043158248,-0.019157391,-0.013495408,-0.03536541,-0.026706701,0.0042245025,-0.00069760095,-0.0068288795,-0.0017232858,0.011026323,-0.0030626797,0.012291307,-0.012961003,0.0017241314,-0.007704897,-0.0054861032,0.021403244,-0.029493723,-0.0038558308,-0.005283165,-0.0029054023,-0.008577532,-0.020970307,-0.017669175,-0.019509152,0.024812609,0.002957828,-0.021497948,0.0016632498,0.020848544,-0.011804254,-0.023689684,-0.0036190692,0.005756688,0.014395102,-0.02126795,-0.010532507,-0.0011085514,-0.018332109,-0.023784388,-0.017358003,-0.031577226,-0.014855095,-0.009470462,-0.010701622,0.032821916,0.0076101925,-0.0078537185,-0.028546678,0.0053338995,-0.03179369,-0.0070487293,-0.016221547,0.008476064,0.009314875,0.014733332,0.013908049,0.0033112792,0.016059197,0.011019559,-0.007819896,0.006609029,0.007833425,-0.03376896,0.009957514,0.0013740625,-0.025610834,-0.002736287,0.0051715486,-0.03357955,0.0028276092,0.026354942,-0.019455034,0.01373217,-0.00782666,-0.005902127,0.007894306,0.024312029,0.0024115855,-0.05260165,0.01741212,0.024663787,-0.012636302,-0.019509152,0.024609672,0.009023997,0.01108044,0.001313181,-0.0077319555,0.0024048209,0.0016133608,-0.01654625,0.020117966,-0.0016091329,-0.005560514,0.01302865,0.0025316572,0.0065988824,-0.005638307,0.015193326,0.0070216707,-0.010661034,0.0020378404,-0.016032139,0.0062166816,0.0006916819,0.0041027395,0.005604484,0.010072513,-0.013529231,-0.005692424,-0.0158292,0.011039852,0.015693909,-0.012169544,-0.02498849,-0.014557453,0.0009022306,0.005019345,-0.007725191,-0.0074140187,-0.034039546,-0.015315089,0.016830364,-0.010370156,-0.009544873,0.016072726,0.006274181,-0.020605018,-0.010823385,0.19774324,-0.016695071,-0.005070079,0.003154002,0.008848117,0.018859748,0.017736822,0.0071704923,0.0051072845,0.004505234,0.010633975,0.015436852,0.0042921486,-0.0032520888,-0.0010569711,-0.0032690004,-0.012467186,-0.006514325,-0.018386224,0.013076002,0.006220064,-0.03236192,-0.023946738,-0.021727946,0.035473645,0.001396893,-0.0065041776,0.016072726,0.011222497,0.020456197,-0.009199877,-0.015152738,0.031712517,0.010694857,-0.0058344807,0.0032876031,-0.0013064164,-0.011405142,0.012338659,-0.0030779,0.014016284,0.017885644,0.02164677,-0.005212136,-0.008570768,0.025624363,-0.004978757,-0.0026331267,-0.020889133,0.009984572,-0.017385062,-0.0051039024,-0.0078063663,-0.009558402,-0.018169757,0.0115471985,0.0021342363,0.038612425,0.0077793077,-0.009463697,-0.007481665,0.016086256,-0.020605018,0.025110252,-0.036420688,0.04083122,0.009727517,0.019157391,0.010836914,-0.0065210895,-0.005283165,0.0077860723,-0.017655646,-0.012149249,-0.022025589,-0.015423323,0.015748024,0.025719069,0.030467829,-0.001956665,0.0029967246,-0.015436852,0.0071840216,-0.010958677,0.010349861,-0.013407468,0.009226936,-0.00958546,-0.012054545,-0.00940958,0.015003917,0.011046617,-0.018710926,-0.011161615,0.011161615,0.023297336,0.016992714,0.024298498,0.013603642,-0.011493082,-0.015639791,0.052006364,0.018386224,0.008868411,-0.008286654,0.01600508,-0.035176,0.046946432,-0.0024082032,-0.021416772,-0.0033569403,-0.023270277,0.009436639,-0.00810401,0.0027768747,0.017845055,0.003551423,-0.011628374,0.03179369,-0.033904254,0.01118191,-0.0084287105,-0.008509886,-0.009226936,-0.007217845,-0.010248393,-0.016221547,0.009531343,-0.022187939,-0.021944413,0.04819112,0.011060147,-0.011736608,-0.01020104,-0.000322799,0.004332736,0.031252522,-0.0014053489,0.004055387,0.0028293005,0.00010109929,-3.5434958e-05,-0.000999472,-0.00518846,0.0023118074,-0.012480715,0.016979184,0.012446892,-0.015328619,-0.011553964,-0.01795329,-0.015450382,-0.005256106,-0.017696233,0.012988062,-0.019590326,-0.024569083,-0.015978022,0.009666636,0.010965441,-0.027870215,0.030413711,0.029060788,-0.013786286,-0.017385062,0.017317416,-0.17588,0.019725619,0.009138996,-0.030900763,-0.00030715583,0.011750137,0.01125632,0.012074838,0.004877288,0.017696233,0.013360116,-0.004735231,-0.01283924,0.0016361914,0.0030254743,-0.0067172633,-0.007745485,0.0149903875,0.018616222,0.0036427455,0.031631343,-0.008415182,0.0127513,-0.003328191,0.016600367,-0.0009039217,-0.018142698,0.014110988,-0.012961003,-0.024663787,-0.0011288453,0.003953918,0.02919608,0.02409556,0.0017621823,-0.012264248,-0.0007301557,0.0030508416,-0.009301347,0.028032567,0.027843157,0.026463175,0.018900335,-0.01037692,0.008022834,-0.00072719617,0.01884622,-0.023500275,0.02129501,-0.01688448,0.018724456,-0.029439606,-0.0058885976,-0.016749188,0.009862809,0.013711875,-0.015436852,-0.0052899295,0.005570661,0.019157391,0.00430906,-0.018616222,0.012832476,-0.012352188,-0.015220385,-0.024068503,0.006020508,0.0029882689,-0.021768533,0.015761554,-0.016559778,0.00018031929,-0.004319207,-0.027531985,0.01651919,0.0046878783,-0.030846646,0.0068119676,0.0009436639,-0.0053880163,0.02359498,-0.009450167,0.005942715,-0.0047284663,-0.0016361914,0.019915028,-0.017560942,-0.010525742,-0.0105528,-0.006362121,0.019563269,-0.025299663,0.009916927,-0.031414874,0.018034466,0.004813024,-0.0035920108,-0.014584511,0.00063967897,-0.011939546,0.00014829305,-0.0073328433,-0.0036224516,-0.019969145,-0.010228098,-0.0035886285,0.0064331493,0.021119129,0.027924333,0.006791674,-0.026639055,0.018900335,0.0026973905,0.004860376,-0.021403244,0.0056112483,0.020131495,-0.01530156,0.0067544687,-0.01760153,0.04378059,0.0033383376,-0.027004344,0.015937435,0.007143434,-0.032632504,-0.077116616,-0.00958546,0.034228954,0.024230853,-0.004525528,0.008273125,-0.00773872,0.030657237,-0.012690418,0.031766634,-0.0015837656,-0.041886497,-0.026652586,-0.020902662,-0.014679216,-0.011371318,-0.023608508,0.00083543,-0.011337495,0.023419099,-0.007934894,-0.0073734308,-0.002584083,-0.009030762,-0.0028394472,0.02428497,-0.027653748,0.027653748,0.00712314,0.0037848023,-0.0038625954,-0.0072922553,-0.01020104,-0.019806795,0.004305678,0.0071163755,-0.018751513,-0.011229262,0.033200733,-0.019116804,-0.01320453,-0.009828987,-0.006091536,-0.018426813,0.003845684,-0.021146188,-0.032821916,4.3203698e-05,0.014800979,-0.016451545,-0.030197244,-0.009281052,-0.020821486,-0.02021267,0.014205692,-0.012372482,-0.005824334,-0.0073531372,-0.011926017,-0.0015575527,-0.003811861,-0.0036867154,-4.6770972e-05,0.04959816,0.009172819,-0.0016826981,-0.021700887,0.0022086469,0.003504071,0.0005103057,0.007271962,0.008577532,-0.026774349,0.012426599,-0.024596142,-0.0010341406,-0.013326293,-0.0163839,0.010397214,0.011581021,-0.011459258,-0.018900335,0.017763881,-0.012467186,0.017736822,0.007630486,0.024000855,0.011513376,0.0024487907,-0.012142485,0.021457361,0.024312029,0.008131068,0.007995776,-0.0006358739,0.017709764,-0.025096724,-0.0050734617,-0.0017046831,0.015220385,0.005076844,-0.011188674,-0.08003893,0.014192163,0.011763667,-0.004359795,-0.0024995254,-0.00065405376,0.017385062,-0.009023997,0.002296587,0.017128006,-0.011946311,-0.013305998,-0.01258895,-0.0063824146,-0.004123033,-0.011973369,0.020158553,0.0017841674,0.006034037,0.0021849708,-0.0029781219,0.004667585,0.01620802,0.012534833,-0.023364982,0.026977286,-0.016194489,0.0011136248,-0.028573737,-0.01688448,0.00030165957,-0.0009098408,-0.0074546062,0.010343097,-0.017182123,-0.007285491,0.0028377562,0.017642118,0.019157391,0.02182265,0.009511049,-0.03325485,0.0007284645,-0.017533883,-0.0034973063,-0.014300397,-0.021146188,-0.00184674,0.025462013,0.012906887,0.032794856,0.0071501983,-0.028384326,-0.007725191,-0.014530394,0.007718426,0.026152004,0.010140158,-0.0060813893,-0.014733332,0.02849256,0.0334172,0.016803306,-0.0068559377,-0.007928129,0.009186348,-0.03255133,0.007224609,0.015585674,-0.035446584,0.013806581,-0.0058547747,0.019116804,0.005702571,0.0017571088,0.0078537185,-0.009138996,-0.0012700566,-0.0149903875,0.009781634,0.011493082,8.112254e-05,-0.024000855,0.0055030147,0.01373217,0.011614845,-0.006913437,0.010126629,-0.015085093,0.011222497,-0.024244381,0.026990816,-0.006301239,0.0102348635,-0.007975481,0.005475956,-0.007921365,0.02164677,0.005462427,-0.0012869681,0.016424486,0.008996938,-0.00075298623,-0.0012083295,-0.03891007,0.021579124,-0.009166054,-0.019685032,-0.011763667,0.01775035,-0.004329354,0.015342148,0.0014653848,-0.007792837,-0.0316584,0.017033301,-0.012419834,0.008875175,-0.04307707,0.028303152,-0.010086042,0.01883269,0.015910376,-0.030711355,0.0065684416,0.0017215946,-0.0019380624,-0.03325485,-0.0026669498,-0.032605447,0.010884266,0.02040208,-0.0015279575,-0.014638628,-0.016410958,-0.0025316572,-0.00488067,0.008780471,-0.0011305363,0.0495711,0.009010468,0.0034245865,-0.0006806894,-0.002759963,0.0036731863,0.007583134,0.022904988,-0.035284236,-0.035825405,-0.0026669498,0.019766206,-0.017804468,-0.0048874347,-0.023324395,0.019252095,-0.017222712,0.00036867155,-0.016695071,0.020320905,0.025272604,0.010911325,0.0018162993,-0.0033907634,-0.012392775,-0.0042989133,0.020510314,0.0074207834,-0.0014307161,-0.022282643,0.0013004973,0.006649617,-0.03761126,-0.023635566,0.0199015,-0.019509152,-0.017317416,-0.019982673,0.00272614,0.02919608,0.0029442988,0.020375023,-0.013380409,-0.013549524,-6.3946754e-05,-0.010228098,-0.00011172185,-0.00085572386,0.031631343]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('408a3bb6-a5da-11ee-8347-a344224d910c', 'Politics', 'this article is about world politics', '[0.021474984,0.0008907458,0.014769714,-0.038212266,-0.007197161,0.0050192433,-0.017164454,0.011248801,-0.020245252,-0.032102447,0.012821562,0.01447199,-0.023830889,0.004329947,-0.00556615,0.022937715,0.037383817,-0.020387642,0.017229175,-0.014290767,-0.011002854,0.007339551,0.0056567616,0.0028429434,0.00041098899,0.010038487,0.025643123,-0.035804585,0.003941611,-0.020452365,-0.0016293933,-0.016258337,-0.016802005,-0.014238988,0.0019044647,0.0012273038,0.0020759797,-0.029409982,0.00052425364,-0.011086994,0.0146014355,0.02055592,-0.0047894777,-0.010342684,-0.01915791,-0.0034594268,0.034976132,-0.015429885,0.004715047,0.008802284,0.013669428,0.0336299,-0.047713555,-0.0032296614,-0.018743686,-0.022225766,-0.013158119,-0.001694116,0.00082400057,-0.009494816,0.01570172,0.008608116,-0.02100898,0.0036438867,-0.02297655,-0.014769714,-0.011138773,0.01949447,-0.016776117,-0.002058181,0.027338857,0.020128751,0.004983646,-0.013061035,0.022678824,-0.019002577,-0.018704852,0.013248731,-0.0026099419,0.0041810847,0.006944743,-0.009824902,-0.0029610624,0.0084980875,0.021241982,0.006533754,0.0013883014,0.0070806607,0.013708263,-0.007947944,0.009805485,0.009980236,-0.00065936224,0.0046600327,-0.031869445,0.02726119,0.003488552,0.030108988,0.015740555,-0.04869734,0.021138426,0.015546386,-0.038160488,-0.016361892,-0.04512465,0.0041357786,-0.010944604,0.011138773,0.038807716,-0.008465726,-0.018471852,-0.012679172,0.010536851,-0.024749951,0.009540122,-0.02266588,-0.00072003977,-0.026950521,0.01161772,-0.025125341,0.03254256,0.040438727,0.0027846931,-0.014989771,0.013255204,-0.016478393,-0.034846686,-0.009119425,-0.009941403,9.834812e-05,-0.0016415288,-0.000296713,0.00040370767,0.005116327,0.002588907,0.011863667,0.003728026,0.010478601,-0.024076834,-0.030937439,0.0070353546,0.012452642,-0.019882806,-0.019365024,-0.018225905,0.01544283,0.0021504108,0.015119216,0.0063590026,-0.00029651076,0.021112537,-0.0027264426,0.034794908,0.013410538,-0.008439837,0.029384093,-0.00047975683,-0.0014651596,0.00890584,-0.014730881,-0.013798874,-0.016245391,-0.006003028,-0.0025808166,0.020115808,0.033733457,0.011954278,0.022161044,-0.003993389,0.00040593251,-0.009740762,0.012562671,-0.01923558,0.024529893,0.010452712,0.037357926,0.0006447996,-0.00034606404,-0.032775562,-0.0015784242,-0.025940849,0.03365579,0.0414484,0.033785235,-0.004941576,0.026277406,0.003795985,-0.009067646,0.010265016,0.0011358829,0.016918506,0.032154225,0.0159865,0.013319926,-0.6896848,-0.025656069,0.004692394,0.035519805,0.0013575581,-0.0026779007,0.021539707,0.01946858,-0.011546525,0.01975336,-0.022445824,-0.0091776755,-0.0127892,-0.006006264,-0.012277891,-0.004258752,0.003168175,-0.027675414,0.006653491,0.009041757,-0.0059318333,0.016025335,0.0020743618,0.004064584,0.016064167,-0.0047021024,0.013928319,-0.019106133,0.011074049,0.007520775,-0.008944673,0.011663026,-0.017850513,-0.0020144933,0.03619292,0.009604845,-0.002689227,0.0033332177,0.012633866,0.021733874,-0.0052069393,-0.015714666,-0.010413879,0.0044658645,-0.012808617,-0.0008142921,0.022135155,-0.026238572,0.015753498,0.008439837,-0.008543393,0.01878252,0.010258544,0.025474845,0.009203564,0.009358899,0.013306982,-0.007973833,0.0051454525,0.0142519325,-0.00037620054,0.021539707,-0.01570172,0.001817089,-0.001135074,-0.004258752,-0.017203286,0.026212683,0.005061313,-0.024555782,-0.012485004,0.01655606,-0.014653213,-0.010582157,0.016115947,0.012277891,0.018963743,-0.013721207,-0.008925256,0.0024076835,-0.0017523664,-0.009449511,-0.008070918,-0.003488552,0.039662056,-0.012057834,-0.016685504,0.008983507,0.003414121,-0.0044432115,0.014161321,0.007598442,-0.003507969,0.008303919,0.000533153,0.0078055547,-0.0022361684,-0.002273384,0.03342279,0.018148238,0.014497879,1.740686e-05,0.018471852,0.0024254823,0.0033040924,0.018601296,-0.007048299,0.038781825,0.020775978,-0.013319926,0.009721345,-0.0011755256,-0.02754597,0.004870381,-0.017177397,-0.03303445,0.026613964,0.0070612435,0.0060192086,-0.0038218738,0.01977925,0.004666505,0.0010679241,-0.022627046,-0.014925049,0.026458628,-0.012821562,0.0021439386,-0.006368711,-0.017656345,0.009773124,0.014834437,0.03256845,-0.005598511,0.02868509,0.0091776755,0.00765022,0.005511136,0.012879812,0.011345885,-0.014627324,-0.018743686,0.0028898674,0.006757047,-0.005077494,-0.01989575,-0.008977035,-0.013734152,-0.036503587,0.009294176,0.01007732,-0.004239335,-0.0024416628,0.016167725,-0.009559539,0.000533153,-0.007197161,-0.0059641944,-0.022186933,-0.0042005014,0.006944743,0.021850375,-0.026160905,-0.010426823,-0.0075401915,0.016594894,-0.024115669,-0.0057279565,0.011067578,-0.030419657,0.012213169,0.010245599,-0.0010800597,-0.015429885,-0.009611317,0.011785999,-0.02643274,-0.002755568,0.0027329149,0.0049027423,-0.009462455,-0.0143296,-0.04282052,-0.008232724,0.01475677,-0.012096668,0.013061035,0.022212822,-0.0017232412,0.020711256,-0.003433538,0.01489916,-0.0057991515,-0.012782728,-0.007967361,-0.0069123814,0.0037377344,-0.0019028466,0.022885937,0.0058541656,0.028607422,0.0021633555,0.025306566,-0.021876264,0.026795186,-0.026562186,0.009423621,-0.025940849,0.023481386,0.0131516475,0.029591206,-0.0070612435,-0.01475677,-0.012866868,-0.0143684335,0.017060896,-0.007740832,0.0021940987,-0.03399235,-0.005973903,-0.007520775,0.013436427,-0.013578817,0.0056567616,-0.013850653,0.018653074,0.014174266,0.0016115946,0.00097569433,-0.04931868,-0.024568727,-0.001864013,-0.0036827202,0.021099592,-0.0042134463,-0.0054528853,0.019882806,-0.019999307,0.012860395,0.000496342,9.111739e-05,0.024025057,0.017229175,-0.004381725,0.01572761,-0.026846966,0.02543601,-0.006297516,-0.00046843034,0.0014117634,-0.015662886,0.00093038846,0.010718075,0.011481802,0.0014975208,-0.008646949,0.0041325428,-0.0038380546,0.022484656,0.017798735,0.00077505404,0.0044432115,0.0039869165,-0.0064787394,0.010731019,-0.02515123,-0.017009119,-0.0068864925,-0.0073978016,-0.016374836,-0.024309836,-0.0010590247,0.038264044,-0.028348532,0.005760318,0.012491476,0.009132369,-0.014213099,0.011824832,0.008375114,-0.0036665394,-0.018316517,-0.0037603874,0.031170439,-0.016387781,-0.03174,-0.0175269,0.0041810847,-0.023610832,0.015675832,-0.022135155,0.0223811,0.010187349,0.005329912,-0.006504629,-0.0053881626,0.031843554,0.019662749,0.01258856,-0.0057441373,0.023131883,-0.002739387,0.020141697,-0.00017373993,0.015662886,-0.0049059787,-0.015766444,-0.01766929,0.006462559,-0.010200294,0.0027766027,-0.013449372,-0.009087063,0.005889763,-0.005100147,0.005203703,-0.015520497,0.02069831,0.03870416,-0.0032733493,0.0034723715,-0.012517365,-0.005617928,-0.0008134831,0.11908972,0.007041827,-0.015158051,0.033500455,-0.012769784,-0.04005039,-0.014031876,-0.015714666,0.0022847103,-0.013552928,-0.017462177,0.011527108,0.0041325428,-0.003873652,0.031973,0.011695387,-0.007960889,-0.0048768534,0.0009409059,0.007229523,0.020180529,-0.026160905,-0.01587,0.020763034,0.0035629831,-0.023364885,0.02520301,0.019831028,-0.015481664,-0.016724339,-0.014459046,-0.014342545,-0.012963952,-0.011300579,-0.017047953,0.019818082,0.012355559,0.027778972,0.0055046636,-0.0025533095,-0.0062586823,0.014109543,0.003485316,-0.01738451,-0.004546768,-0.036943704,-0.0029335553,0.039351385,-0.006685852,-0.013682373,0.001864013,-0.005902708,-0.038264044,-0.02394739,0.009611317,0.006197196,-0.0031665568,0.0348208,-0.003003132,-0.02366261,0.012620921,-0.03831582,-0.014679102,0.0008397767,0.0076825814,-0.030989217,-0.0049965903,-0.005255481,-0.0074366354,-0.0046406155,0.008802284,-0.037694484,0.0010590247,-0.01027796,0.016633727,-0.006847659,0.022471713,0.002829999,-0.0023801764,0.01864013,-0.0149768265,-0.025591346,-0.023960333,-0.04038695,-0.004986882,0.0005877628,-0.011177606,0.014096598,-0.03205067,0.01641367,-0.0017992903,0.031662334,0.0039804443,0.011824832,0.01669845,0.020025196,0.0036438867,0.0020209656,0.0066114212,0.0014918577,-0.00431053,-0.013915375,-0.018989632,0.010239127,-0.0041001816,0.010608046,0.014381378,-0.0028704505,0.014886215,0.00036972828,0.024271002,-0.013306982,-0.008912312,0.0074948855,-0.00304682,0.027856639,0.01909319,0.032982673,0.01724212,-0.013488205,-0.006077459,-0.02726119,-0.00876345,0.03360401,-0.0036730117,-0.005349329,-0.008879951,-0.021487927,-0.0050936746,-0.00847867,0.011915444,0.0084527815,0.0024578436,0.0066017127,-0.0144849345,0.0065240455,-0.021099592,0.02252349,-0.0026212684,-0.0024141558,-0.022005709,0.00431053,-0.0036600672,-0.011300579,0.020258198,-0.03417357,-0.0027539497,-0.012459115,-0.014704991,0.013009258,-0.001282318,-0.010575685,0.0030096043,0.004475573,-0.0008543393,-0.025073564,0.0077990824,-0.015805276,0.013552928,0.025992626,0.030186655,-0.002543601,-0.0033720513,0.021746818,-0.0007252985,-0.0015476809,0.008401003,0.0041195983,-0.029099314,0.0066987965,0.029746542,0.0044335034,0.004164904,0.0015145106,0.012141974,0.017112674,0.0058282767,0.010640408,-0.014238988,-0.015481664,-0.02058181,-0.004935104,-0.011501219,0.002393121,-0.041500177,-0.0015282641,0.006776464,0.0139930425,0.0130351465,-0.0069900486,0.017915236,-0.011365302,0.02515123,0.0019724234,-0.014679102,-0.03145522,-0.0033299816,-0.019106133,0.018717797,0.026186794,0.0069835763,0.014342545,-0.023183662,-0.0062133768,0.01641367,0.014549657,0.004867145,-0.0009311975,0.01544283,-0.019455636,0.0090611745,-0.026380962,-0.018277682,-0.021889208,0.010601574,0.0066923243,-0.01915791,0.035079688,-0.0019934583,-0.054470602,0.008368642,-0.0018478323,0.007870277,0.00097245816,0.012116085,0.012853923,-0.0036503589,-0.032956786,0.013772985,-0.000823596,-0.023571998,0.031843554,0.002349433,0.0032393697,-0.021798596,-0.0073007178,0.019973418,0.0047182827,-0.027105857,0.022963604,0.011423552,0.0146014355,-0.015624054,-0.027209412,-0.01615478,0.029021647,0.008549865,-0.0017022063,-0.016711395,-0.012096668,-0.009889625,-0.012562671,-0.027183523,0.019740416,-0.009378316,-0.008310392,0.0147179365,-0.0018963744,0.0045661847,0.018277682,-0.013294037,0.017462177,-0.022743547,-0.0012774637,0.00556615,0.0016924979,0.0002603065,-0.011462386,-0.0087569775,0.024322782,-0.013067508,-0.0023785583,0.013332871,0.008465726,0.023481386,-0.020361753,-0.005129272,-0.004770061,-0.01236203,-0.019507414,0.027442414,-0.014342545,-0.028581534,-0.008595171,-0.012109612,-0.0100902645,-0.029927764,0.0027571858,-0.0131516475,0.015960611,-0.015831167,-0.0050257156,-0.027934305,0.00028882493,0.0044949898,-0.013294037,-0.0051907585,0.029539429,-0.038056932,0.0026503934,-0.01641367,0.0208407,-0.012368503,0.006705269,-0.0016391018,-0.0239215,0.026613964,-1.3235282e-05,-0.016348947,-0.0051939944,-0.010543324,0.016853785,-0.01695734,0.0017912,-0.0020986327,0.02183743,-0.0103232665,-0.014213099,-0.016465448,0.02669163,-0.0077990824,-0.0075725527,0.0055467333,-0.011248801,0.016348947,0.0019335899,0.004524115,0.010899298,-0.017928181,-0.011209968,-0.00036103115,0.034950245,-0.007261884,-0.007896166,-0.018484795,-0.01544283,-0.01461438,0.009999653,0.0031843556,0.004401142,0.020918367,0.006485212,0.01273095,-0.0123814475,-0.008394531,-0.017941125,-0.028633311,-0.014795603,-0.015481664,-0.013980097,0.011255273,0.027727194,0.011669498,-0.01783757,-0.02297655,0.00623603,-0.026821077,-0.020711256,0.015494608,0.018769575,0.017190343,0.013235787,0.011022272,0.009727818,0.005462594,-0.003148758,-0.012698589,-0.016581949,-0.0027167343,-0.018135292,-0.0050257156,0.013235787,-0.014510823,0.0058509298,0.012620921,-0.0027992555,0.0068411864,0.025500733,-0.009184147,-0.014640269,-0.01838124,-0.012763311,-0.015391052,0.014925049,-0.012834506,-0.046910994,0.0036179975,0.02726119,-0.006514337,-0.03425124,0.01669845,-0.012633866,-0.018847242,0.010769853,-0.010640408,-0.016776117,-0.0010476983,-0.016310114,0.015740555,-0.0016957341,0.0011431642,0.016478393,-0.0019691873,-0.004232863,-0.012659755,-0.0011431642,-0.0075660804,-0.021423206,0.023481386,0.0054269964,0.018653074,-0.0029837154,-0.02212221,-0.0041325428,0.017358622,-0.013255204,-0.011022272,-0.013371704,0.009883152,0.03539036,-0.029668873,-0.0042458074,-0.010776325,0.012374976,-0.018174127,-0.010239127,-0.014135432,-0.01880841,-0.016103001,-0.010853993,-0.010718075,6.866671e-05,0.0033461621,0.0028963396,-0.035260912,0.028866313,0.18660842,-0.026251517,0.0072813006,0.0078055547,0.005394635,0.019481525,0.027131746,0.009274759,-0.0074625243,-0.0048218393,0.0038607074,0.023067161,-0.010316794,0.0040742923,-0.01244617,-0.014135432,-0.02894398,-0.03533858,-0.015261606,-0.018730741,0.0014983299,-0.0071712723,-0.009443038,-0.0063072247,0.0124267535,-0.006323405,-0.0053622737,-0.008957618,0.0037668596,0.031817667,-0.00073419785,-0.019856917,0.0010565977,0.0013106342,-0.015779387,0.010485074,0.008536921,-0.009663095,0.01864013,0.0032765854,-0.009281231,0.022860048,0.027960194,0.007941472,-0.0018672491,0.042924076,-0.0033849957,0.013850653,-0.0058606383,0.028762756,-0.01695734,-0.0024659338,0.0054528853,0.025021786,-0.005973903,0.0029594442,0.009967292,0.035985805,-0.01244617,0.0094818715,0.0095983725,0.036244698,-0.023274273,0.013604706,-0.017371565,0.045435317,-0.013682373,-0.0041907933,0.007190689,-0.0070612435,-0.005831513,-0.008472198,-0.013708263,-0.018911965,-0.017436288,-0.010620991,0.026950521,0.028814534,0.03034199,-0.0040160418,0.006504629,0.004912451,0.009151786,-0.0095983725,0.0011447823,-0.024296891,0.020271141,-0.0037442066,-0.019960472,-0.00241901,0.0006512719,-0.0053169676,-0.010349155,0.0034691354,0.0073524956,0.009423621,0.008245668,0.030807992,-0.03865238,-0.008155057,-0.023623776,0.04983646,0.024115669,0.020271141,-0.010265016,0.001549299,-0.01755279,0.026044404,-0.025953792,-0.009112952,-0.0045305872,0.0035047329,0.007889694,0.0052231196,0.0117730545,0.010245599,-0.0008988361,-0.013889486,0.019041412,-0.024905285,-0.013099869,-0.023999168,0.011138773,-0.026639853,0.0050483686,0.0008066063,-0.016569005,0.010368573,-0.017423343,-0.023041273,0.018899022,-0.004329947,-0.013319926,0.012485004,-0.013423483,0.0045144064,0.0073460233,-0.0027054078,0.009708401,0.006032153,0.0038607074,-0.0006609803,-0.0012993077,-0.010213238,0.0016666088,0.017035007,0.019403858,0.016064167,-0.017578678,-0.004818603,-0.02543601,-0.007598442,-0.0011520636,-0.021591485,0.0054334686,-0.0077278875,-0.02577257,-0.014394322,-0.0038056932,0.029953653,-0.0128733395,0.013928319,0.026898744,-0.006126001,-0.008426893,0.0034303018,-0.16589716,0.018588351,0.008996451,-0.007119494,0.016297169,0.017591624,0.015611109,0.006274863,0.01475677,0.010944604,0.0019028466,0.01887313,-0.027675414,0.010297378,0.0046600327,-0.011552997,-0.03036788,0.015805276,0.0137600405,0.013015729,0.020918367,0.005873583,0.014277822,-0.0047182827,0.016853785,0.015895888,0.009158258,0.014847381,-0.0037409705,-0.01350115,-0.010400934,-0.0022588214,0.034665465,0.019028466,0.0005420524,0.0063816556,-0.0129186455,-0.0108151585,-0.025591346,0.011578887,0.029539429,0.007915583,0.022497602,-0.014264877,0.0110481605,-0.015002715,0.0056988313,-0.021591485,0.019572137,-0.0034561907,0.010303849,0.0013146793,0.0015120835,-0.03140344,0.026070293,0.030497324,0.021164315,-0.00035819956,-0.0059091803,0.027727194,-0.020931313,-0.0051519247,0.010737492,-0.0031147788,-0.008892896,0.0010549796,0.003944847,0.02223871,-0.022743547,0.013306982,-0.005659998,-0.00702241,0.004359072,-0.02612207,0.01838124,-0.010044959,-0.04315708,0.0027571858,0.014109543,0.00064318156,0.008057973,0.019908695,0.00017323428,-0.0038218738,0.017772846,0.020711256,-0.014692047,0.0042037377,-0.02058181,-0.020892479,0.013475261,-0.042147405,-0.0014813402,-0.011993111,0.014692047,0.008200363,0.006757047,0.006659963,-0.012031945,-0.023105994,-0.008180946,0.007721415,-0.017397454,-0.00884759,0.018161183,0.006070987,0.030730326,0.019455636,0.024504004,0.022251654,-0.0023203078,0.027209412,-0.0057279565,0.022303434,-0.011093467,-0.00382511,0.02517712,-0.009041757,0.007824971,-0.0038218738,0.041370735,-0.012090196,-0.006944743,0.005375218,0.0033849957,-0.015106272,-0.09345954,-0.02069831,0.027338857,0.018316517,-0.008795812,-0.002446517,0.00024877777,-0.0005384117,-0.016115947,0.021423206,-0.0047797696,-0.027960194,0.0023300163,-0.00542376,0.016478393,-0.019688638,-0.01587,-0.025914958,-0.004825075,0.023196606,-0.0064301975,-0.0024594616,-0.01258856,-0.004401142,0.0014166175,0.027028188,-0.031817667,0.034950245,0.011501219,-0.0019449163,-0.023170717,-0.02808964,-0.0023704679,-0.032206003,0.010290905,0.00084058574,-0.018329462,-0.0033558707,0.015235717,-0.03119633,-0.016115947,0.013028674,-0.03451013,-0.042794634,0.004698866,-0.01224553,-0.02614796,0.008290974,0.013514094,-0.014640269,-0.018342406,-0.0072101057,-0.00055621046,0.008931729,0.0065499344,0.0057020676,-0.0078443885,0.012627394,-0.009643679,-0.002420628,0.0015420177,-0.008012667,-0.009591901,0.03360401,0.016465448,-0.009721345,-0.01726801,-0.00043970966,0.015740555,-0.015145105,-0.02480173,0.0011755256,-0.024814673,0.016905563,-0.01655606,-0.024995897,-0.023403719,-0.0018332697,0.04095651,0.024141558,-0.01975336,-0.02143615,0.022497602,-0.0031989182,0.013229314,0.024193335,0.020737145,0.01224553,0.0144849345,-0.01390243,-0.008070918,0.03510558,0.025267731,-0.017565733,0.007410746,0.03140344,-0.005028952,-0.00010087636,0.008782866,0.0014190447,-0.01307398,-0.02003814,-0.08103279,0.024245113,-0.016115947,-0.009553066,-0.01155947,-0.0049480484,0.002349433,-0.007967361,-0.0036503589,0.0060418616,-0.014148377,-0.014290767,-0.008096807,-0.002493441,-0.01587,-0.015960611,0.026562186,0.014018931,-0.005511136,0.012141974,0.0050936746,-0.0002762849,0.037124924,0.008433364,-0.033448678,0.0009991563,-0.027753083,0.0018963744,-0.015973557,-0.003122869,-0.002684373,-0.01852363,-0.011811888,0.0153263295,-0.0025743444,0.0032296614,-0.0070288824,0.001817089,0.01258856,0.049292788,-0.016789062,-0.030549102,0.010109682,-0.008996451,0.020426476,0.0039060134,-0.021682097,0.00702241,0.023313107,0.009436565,0.02252349,0.032775562,-0.0071453834,-0.01335876,-0.011572414,0.0062101404,0.029927764,0.039066605,-0.01587,-0.016439559,0.02586318,0.031092772,0.015002715,0.00028983623,0.013397593,0.010316794,-0.035079688,-0.011171133,-0.016167725,-0.044580977,-0.00089721807,-0.0056988313,0.008232724,-0.0022167517,0.009397732,0.013669428,-0.011591831,0.0060839313,-0.007676109,0.0014732499,0.013798874,0.011242328,-0.027675414,0.017591624,0.005659998,0.008608116,-0.033060342,0.013811818,-0.022148099,0.020931313,-0.0014659686,0.010478601,-0.0037409705,0.014782659,-0.0019966946,-0.008634005,-0.0059415414,0.011844249,0.022005709,0.010180877,0.022368155,0.00060677505,-0.0150933275,-0.03218011,-0.008964091,-0.011481802,-0.018225905,-0.024012111,-0.006559643,-0.0037442066,-0.019429747,0.014070709,0.0023542873,0.005511136,-0.028141418,0.014510823,0.0073719127,-0.001596223,-0.04375253,0.027727194,-0.020633588,-0.0073007178,0.013112814,-0.017216232,0.0028607422,-0.006174543,0.0045532403,0.0011447823,-0.008523976,-0.02922876,0.018911965,-0.0010032015,-0.015908834,-0.0148603255,-0.0060095005,-0.022497602,0.020167585,0.012517365,-0.018730741,0.027312968,0.006731158,0.0005202085,0.005621164,-0.008168002,0.019908695,-0.0026908452,0.012368503,-0.010834576,-0.023727333,-0.0033202732,0.0142519325,-0.008006195,-0.026795186,-0.018433018,0.01250442,-0.0058865272,-0.0037344983,-0.015222773,0.019882806,0.028633311,0.012517365,0.0038412907,0.016245391,-0.012756839,-0.008828172,0.022898883,-0.021500872,0.005035424,-0.027571859,0.00094333297,-0.0050160075,-0.031170439,-0.02269177,0.02577257,-0.019934583,0.011598303,-0.0015711429,0.008083862,0.01601239,-0.004242571,0.0019449163,-0.021358483,-0.024322782,-0.007261884,-0.00993493,0.0017345677,-0.005533789,-0.02337783]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('408c7ba6-a5da-11ee-8347-a34c082e19f9', 'Politics', 'this article is about Geopolitics', '[0.015007814,1.6675405e-05,0.021952506,-0.019338492,-0.010820192,0.01822006,-0.032304518,0.0013443959,-0.01667246,-0.034411334,0.011919118,0.016191274,-0.016048217,0.0028789905,-0.0063692178,0.019169427,0.035113603,-0.015528016,0.033110827,-0.009604221,-0.0031976139,0.0067171026,0.018714251,-0.02154935,-0.010339006,0.015541022,0.027336592,-0.045569655,-0.0007583563,-0.00086808635,-0.0035763856,-0.017582813,-0.022914879,-0.01669847,-0.0041746176,0.0009217321,0.007250309,-0.034957543,-0.007237304,-0.007074741,0.004272155,0.008017606,-0.003917768,-0.018831296,-0.0012590503,0.00031720102,0.031082043,-0.02235566,0.00049988116,0.0026936687,0.027596692,0.04304668,-0.048170663,-0.011964636,-0.0041583613,-0.027622702,-0.0024579524,-0.01176956,-0.005657192,-0.027414622,0.014149482,0.0006002638,-0.012504345,0.008446773,-0.020990133,-0.029859569,-0.017647838,0.010410533,-0.018636221,-0.008115144,0.026257174,0.042058297,-0.00030582162,-0.011574484,0.027544672,-0.022862857,-0.0041258484,0.00042469578,-0.003404069,0.009890332,-0.005296302,-0.018675236,0.004558266,0.012445822,0.019936724,0.01176956,-0.003982793,0.0031959882,0.014617664,-0.0015305305,-0.0024319421,0.009857819,0.0069511933,-0.0003757237,-0.04013355,0.024501493,0.0073673544,0.014942789,0.014708699,-0.038208805,0.011015268,0.028663106,-0.032876737,-0.016282309,-0.058626715,0.00067910686,0.00425915,-0.0015248408,0.043931022,-0.009883829,-0.019364502,-0.0127384355,0.01507284,-0.016607434,0.008206179,-0.020456925,0.00030175754,-0.0049971864,0.005097975,-0.022368666,0.031862345,0.0268424,0.0038137275,-0.0018028235,0.029911589,-0.014357563,-0.023161974,-0.009064512,-0.010703146,-0.009851317,-0.015801122,0.009409145,-0.01246533,0.009734271,0.0063627153,-0.0019507558,-0.0054686186,0.003087071,-0.019559579,-0.03032775,0.0058652726,0.01241331,-0.012348284,-0.0148647595,-0.007926571,0.01892233,0.0051044775,0.028715126,0.014773724,-0.00042713425,0.007926571,-0.010716152,0.029807549,0.02364316,-0.01829809,0.024319423,-0.014435593,0.0010347134,0.0038982604,-0.020652002,-0.014006427,-0.017192662,-0.0020661755,0.0029375132,0.015710087,0.042760566,0.009552201,0.028611084,0.0014768847,0.017608823,-0.008427265,0.01814203,-0.016503394,0.0077445004,0.024007302,0.04291663,-0.005182508,-1.8580442e-05,-0.03654416,0.0047598444,-0.019819679,0.030899972,0.03412522,0.026712349,-0.0007591691,0.016308319,0.0008875939,-0.0011013643,0.009045005,-0.0033260386,0.012712426,0.025151744,0.007061736,0.015684078,-0.6825044,-0.032590628,0.00043973286,0.01809001,-0.0032788953,-0.007575435,0.01900036,0.009929347,-0.013707311,0.028142903,-0.012120696,-0.008323225,-0.021354273,-0.004278658,-0.024137352,-0.008531305,0.00676262,-0.031108053,0.026023082,0.016243294,-0.00032532917,0.0148517545,0.009656241,0.0054263524,0.022316646,0.004769598,0.019234452,-0.00841426,0.007100751,0.016997585,-0.020378895,0.004067326,-0.019130412,-0.00043444958,0.028975226,-0.004148607,-0.00753642,0.012289762,0.01483875,0.022784827,-0.0030057896,-0.022745812,-0.0059758155,0.0048508793,-0.01564506,-2.7915112e-05,0.024215382,-0.022719802,0.0056116744,-0.002375045,-0.0078030233,0.020691017,0.010176443,0.025255784,0.0063367053,0.00060839194,0.0036706722,-0.01076167,0.00924008,0.0051792567,-0.008102139,0.0152289,-0.018675236,-0.0025717465,-0.01117783,-0.008791407,-0.021081168,0.021900484,0.010326001,-0.012998536,0.0014516874,0.018883316,-0.010846202,-0.013941402,0.021926496,0.0065155244,0.02686841,-0.00844027,-0.0009916342,-0.008004601,-0.001023334,-0.001361465,-0.014383573,0.006583801,0.035815876,-0.022173591,-0.019884704,0.009526191,0.01246533,-0.005283297,0.010586102,0.017101627,-0.0057352223,0.00505896,0.01262139,0.0021409546,0.007939576,0.0053613274,0.032122444,0.017140642,0.0148777645,0.00017577123,0.0250347,0.009363628,0.0017296701,0.016945565,-0.009168552,0.035321686,0.019663619,-0.014357563,0.011763058,-0.008115144,-0.028064873,0.0093441205,-0.022732807,-0.03030174,0.01512486,-0.0009696882,0.001690655,-0.008407758,0.016516399,0.010579599,0.007698983,-0.010124423,-0.014825745,0.029287348,-0.015436981,-0.014760719,-0.016334329,-0.0148647595,0.0036088983,0.011424926,0.032252494,-0.00854431,0.033136837,0.019052383,0.002191349,0.006063599,0.012614887,-0.005696207,-0.012881491,-0.03035376,0.014266527,0.01184759,-0.010846202,-0.028038863,-0.013284647,-0.02020983,-0.032486588,0.0024872136,0.014513623,-0.0067301076,0.012816465,0.013564255,-0.0033878125,0.01251735,0.008596331,-0.0018483411,-0.012484837,-0.015567032,0.010326001,0.00913604,-0.035217647,-0.011450937,-0.00027920192,0.017608823,-0.01243932,-0.009480673,0.016815515,-0.026218157,0.009714764,0.01662044,-0.012166214,-0.019559579,-0.012933511,0.009376633,-0.015345946,0.0008615838,0.002683915,0.006047343,-0.006957696,-0.005683202,-0.046349958,-0.008264702,0.01814203,-0.0039860443,0.013252134,0.02036589,0.0032333778,0.028871186,-0.0065740473,0.021393288,-0.0003915736,-0.01339519,-0.0038462402,-0.012894496,-0.0015532894,0.009909839,0.015983192,0.006310695,0.031186083,0.0072438065,0.029573457,-0.017075615,0.028064873,-0.02715452,0.0035536268,-0.032876737,0.016529404,0.021614375,0.020014755,-0.022368666,-0.021159198,-0.012725431,-0.01900036,0.008550813,-0.01662044,0.012075178,-0.028715126,-0.0025311057,-0.011301379,0.008687366,-0.017309707,0.0009851317,-0.025333816,0.012387299,0.014799734,-0.0050524576,-0.005045955,-0.04728632,-0.015489001,0.005169503,-0.0013769085,0.017634833,0.0034398327,-0.0014630669,0.020300865,-0.0131610995,0.0068796654,-0.0014525002,-0.0030448048,0.027648712,0.021510335,-0.005588915,0.012452325,-0.016542409,0.020873087,-0.0018873563,-0.008453275,0.0085117975,-0.019078393,-0.0034820992,0.009032,0.0037096874,0.006235916,-0.01662044,0.0012704297,-0.002604259,0.022823842,0.021666395,0.0022401179,0.003911265,0.0041518584,-0.0024498242,0.014526628,-0.0140584465,-0.0075949426,-0.0011298128,-0.011093298,-0.005475121,-0.019702634,0.0064765094,0.022797832,-0.015658068,-0.011704535,0.010156935,0.013993422,-0.008784903,0.013746326,0.014318547,-0.002002776,-0.032382548,0.0080891345,0.03017169,-0.01897435,-0.0301977,-0.028142903,-0.0074323798,-0.02521677,0.014305542,-0.0148647595,0.011463942,0.007360852,0.009363628,-0.0070682387,-0.0031065787,0.030769922,0.015918167,0.0039372756,-0.0014240517,0.017244682,0.0023165224,0.011776063,0.002485588,0.032096434,-0.0017312958,-0.011522464,-0.017894933,-0.0020629242,-0.014370568,-0.0010574722,-0.0061806445,-0.011932123,0.007855044,-0.0043144217,0.0071332636,-0.017296702,0.009669246,0.04676612,-0.009786292,0.0028643599,-0.015449986,-0.023174979,-0.0038722502,0.12120696,0.0035796368,0.005244282,0.03800072,-0.002366917,-0.03800072,-0.015697083,-0.02676437,0.004307919,-0.026309194,-0.014669684,0.014656679,-0.00051573105,-0.012634395,0.03043179,0.016152259,-0.003953532,-0.00838825,0.001005452,0.00272293,0.016035212,-0.022199601,-0.017400742,0.02565894,0.005718966,-0.019819679,0.0379487,0.015762107,-0.004369693,-0.00557591,-0.028975226,-0.018623216,-0.009877327,-0.0027847039,-0.017803898,0.028429015,0.007842039,0.0070812437,0.0059660617,-0.011353399,0.007276319,0.0036966822,-0.00019558359,-0.02183546,0.006174142,-0.037116382,0.0011224974,0.044893395,-0.001080231,0.00944816,0.0064082327,-0.0015752353,-0.03326689,-0.03331891,-0.001840213,0.0044087083,-0.0035601293,0.03342295,-0.0106901415,-0.024605533,0.008726381,-0.030015629,-0.0016085607,0.0009875702,0.008908452,-0.041642133,-0.009441658,-0.009012491,-0.0018223311,-0.0015289049,0.010930735,-0.04315072,-0.008895447,-0.0148517545,0.021926496,0.00037694292,0.020482937,-0.0027261812,-0.0038039738,0.013408195,-0.0009127912,-0.024267402,-0.016009202,-0.048066624,-0.007796521,0.0028968723,-0.015788117,0.015853142,-0.022264626,0.0074388823,0.010254473,0.032096434,0.005481624,0.017660843,0.013824356,0.008791407,0.0020499192,-0.00454201,0.017920943,0.012172717,-0.008102139,-0.012796958,-0.014955794,-0.0034983554,0.00038344544,0.012348284,0.010306493,-0.01011792,0.01357726,0.008953969,0.02007978,-0.019546574,-0.017972963,-0.0060148304,-0.020404905,0.014955794,0.011385911,0.019741649,-0.005673448,-0.013128587,-0.005016694,-0.010547087,-0.013759331,0.026686339,0.0030984504,0.0068276455,-0.013239129,-0.016126247,0.00037247245,-0.0054881265,-0.011626504,0.008069627,0.0025229775,0.0045615174,-0.0069186804,0.010553589,-0.024241392,0.017075615,-0.008342733,-0.012036163,-0.01894834,0.006957696,0.0036446622,-0.017595818,0.023018919,-0.030639872,0.0041258484,-0.0072308015,-0.014136477,0.011880103,-0.00036190584,-0.0052377796,0.0024254397,-0.009812302,-0.011281871,-0.032408558,0.018441144,-0.008102139,0.011782565,0.028168915,0.033214867,0.017478772,0.012426315,0.01887031,-0.004359939,0.0037844663,0.020170815,0.014292537,-0.045179505,-0.0011143693,0.022498718,0.0018028235,-0.0003541841,-0.0031163325,-0.005481624,0.014786729,0.006583801,0.013655291,-0.011229851,-0.026296189,-0.03347497,-0.0074583897,-0.0061026146,-0.0044802357,-0.033553,-0.0046493015,0.010527579,0.008765396,0.014344558,-0.01357726,0.01355125,-0.010605609,0.01835011,0.0032707672,-0.0040478185,-0.028012853,2.6467285e-05,-0.025645936,0.013226124,0.015020819,-0.0016394476,0.017985968,-0.015332941,0.002366917,0.018935336,0.01695857,0.014188497,-0.007816028,0.0009843189,-0.03644012,0.019767659,-0.019949729,-0.015788117,-0.02188748,0.020222835,-0.0032382547,-0.019494552,0.035295676,0.004415211,-0.046063848,0.012640898,0.0063399565,0.003868999,0.0002180376,0.02149733,0.003631657,-0.001941002,-0.045127485,0.012276757,0.004860633,-0.017608823,0.021432305,-0.00030866647,0.0074518872,-0.022342656,-0.006970701,0.009734271,0.010878715,-0.018987356,0.01840213,0.007198289,0.012075178,-0.014734709,-0.022316646,-0.017296702,0.021250233,0.0045875274,0.004431467,-0.016815515,-0.011587489,-0.013915392,-0.01483875,-0.014786729,0.016490389,-0.014773724,-0.0034235765,0.0063627153,-0.0005803499,-0.0013541497,0.031966385,-0.0061676395,0.0097927945,-0.023500105,0.0061123683,0.0027213043,-0.0013809726,0.0075429226,-0.01254336,-0.018077005,0.02160137,-0.011750053,-0.0085378075,0.01675049,0.0114444345,0.021107178,-0.001502082,-0.0024530755,-0.0097927945,-0.0045517636,-0.023994297,0.017907938,-0.020404905,-0.032772698,-0.010495067,-0.012887994,0.0019442533,-0.025450861,0.003904763,-0.01249134,0.015762107,-0.022121571,0.00012243025,-0.012940014,-0.0056409356,0.01816804,-0.017842913,-0.00508497,0.028715126,-0.029313358,0.005683202,-0.003030174,0.022238616,-0.004711075,0.004711075,-0.008596331,-0.02712851,0.02962548,-0.0027261812,-0.017686853,-0.015593042,-0.018558191,0.016685465,-0.0106251165,-0.001765434,-0.004948417,0.011106303,-0.009194562,-0.013304154,-0.00764046,0.022667782,0.00049988116,-0.0035081091,0.0066065597,-0.016711475,0.015241905,-0.012198727,0.0123417815,0.0023587889,-0.007855044,-0.01481274,0.0037779638,0.028715126,-0.0020759292,-0.003061061,-0.0097927945,-0.01842814,-0.013512235,0.012653903,-0.00269692,-0.0034073202,0.02694644,0.010098413,-0.008173667,0.004919156,-0.0028253447,-0.030925982,-0.02679038,-0.009272593,-0.028949216,-0.011685028,0.0140584465,0.0149167795,0.006073353,-0.024618538,-0.028663106,-0.006118871,-0.029287348,-0.01112581,0.018077005,-0.00087377604,0.016399354,0.016568419,0.0018044491,0.012068676,0.011782565,0.006944691,-0.012582375,-0.0011940252,0.006957696,-0.030925982,0.0023148968,-0.0032610134,-0.012185722,-0.005572659,0.012920506,-0.004132351,0.0044639795,0.038052745,-0.0060538454,-0.012153208,-0.024644548,-0.015489001,-0.009812302,0.024761593,-0.0033260386,-0.0536848,0.004148607,0.020730032,0.009688754,-0.031030022,0.011626504,-0.012920506,-0.020977128,0.013343169,-0.0052475333,-0.018415134,-0.0013720316,-0.006073353,0.02157536,0.0076534655,-0.00764046,0.019169427,0.0021620877,-0.004597281,-0.02170541,0.00382023,-0.009272593,-0.009487175,0.01811602,-0.00096074725,0.018259075,-0.003943778,-0.02028786,-0.009506683,0.00080428034,-0.015410971,0.0024140603,-0.017517786,0.007061736,0.04015956,-0.02346109,-0.0038267327,-0.016126247,-0.0061969007,-0.021926496,-0.0029261338,-0.011093298,-0.031394165,-0.0041843713,-0.010273981,-0.0072177965,-0.004008803,0.0033032799,0.005159749,-0.022862857,0.02699846,0.18477559,-0.024813615,0.010475559,0.0050231963,-0.0033292898,0.0216794,0.02162738,0.0059790667,-0.007276319,-0.001418362,0.01009191,0.011015268,-0.011249359,0.0011623254,-0.014929784,-0.022160586,-0.025762983,-0.03370906,-0.010488564,-0.0043501854,0.0015069589,-0.00505896,-0.0066585797,-0.006398479,0.01892233,-0.008589828,0.0018710999,-0.0064049815,0.0073413444,0.031238103,0.0010704773,-0.012718928,0.015762107,-0.006437494,-0.008420763,0.019052383,0.019117408,-0.0010818567,0.022004526,0.009435155,-0.012016656,0.015853142,0.019936724,0.0026237667,0.0052637896,0.02506071,-0.010930735,0.008843427,-0.009623729,0.030613862,-0.01879228,-0.00833623,-0.0067301076,0.018493164,0.0017199164,0.0067561176,0.0148907695,0.02232965,-0.013681301,0.011307881,0.0077184904,0.035217647,-0.012556365,0.0077314954,-0.0048996485,0.045725714,-0.0048768898,0.0046623065,-0.0028741136,-0.018337104,-0.00072299887,-0.015241905,-0.010768172,-0.013512235,-0.007282822,-0.016529404,0.030978002,0.019663619,0.032200474,-0.00854431,0.0044249645,0.012029661,0.0029375132,-0.024046317,0.0064895144,-0.02366917,0.028845176,-0.00086402224,-0.038312845,0.0029846565,0.0048996485,-0.0051369905,-0.012725431,0.0034951041,0.001914992,0.01564506,0.00027493466,0.031550225,-0.03698633,-0.00044623538,-0.021302253,0.057898432,0.041382033,0.015918167,-0.007100751,0.0037617076,-0.0018011979,0.03649214,-0.019845689,-0.013746326,0.0038852554,0.0035763856,0.016516399,-0.0037259436,0.020469932,0.012510847,0.01816804,-0.017296702,0.025619926,-0.032018404,-0.028611084,-0.021952506,0.018155035,-0.018727256,0.004330678,-0.00841426,-0.029391387,0.011301379,-0.024202377,-0.024163362,0.024371443,-0.0018288336,-0.009402643,0.010417036,-0.0002344971,0.018441144,0.012107691,-0.0029749025,-0.0003767397,0.00921407,0.0060538454,0.0021425802,0.0012525478,-0.008043616,0.0026010077,0.017075615,7.919865e-05,0.014539633,-0.019273467,-0.01525491,-0.013668296,-0.017387737,-0.013928397,-0.015827132,-0.000597419,-0.000957496,-0.021484325,-0.028194925,0.0007945266,0.029157298,-0.0022303641,0.014305542,0.017595818,-0.014526628,-0.0013167602,0.013102576,-0.16656853,0.023760205,0.013889382,-0.005572659,0.009194562,0.020547962,0.012120696,-0.00084207626,0.013980417,0.009175055,0.00926609,0.03126411,-0.026660329,0.0004937851,0.0027213043,-0.005787242,-0.03417724,0.006300941,0.009597719,0.023994297,0.021419298,-0.0024270653,0.017855918,-0.0027082993,0.018662231,0.0089604715,0.0019214945,0.009903337,0.0004145356,-0.0085248025,-0.0041258484,-0.0048508793,0.04083582,0.023109954,-0.0071917865,0.0049809297,-0.0093311155,0.00082581997,-0.027882803,0.014942789,0.023148969,-0.0027895807,0.016893545,-0.02154935,0.010234966,-0.019533569,0.00071527716,-0.0106641315,0.02500869,-0.01091773,0.0057157143,-0.006912178,0.007998099,-0.016542409,0.030717902,0.035139613,0.02149733,0.010508072,-0.009363628,0.021484325,-0.024696568,-0.0028123397,0.010969751,-0.017829908,-0.011750053,-0.0050654626,-0.0010192699,0.01814203,-0.018155035,0.0058620214,-0.008004601,-0.0035471243,0.017309707,-0.02369518,0.023604145,-0.011164825,-0.03698633,0.0018597206,0.019169427,0.0060538454,-0.003087071,0.0114574395,-0.009032,-0.006899173,0.028611084,0.01889632,-0.027362602,0.0044249645,-0.020404905,-0.0106641315,0.010189448,-0.035035573,-0.005995323,-0.014136477,0.02002776,0.0035796368,0.021276243,0.001124123,-0.003012292,-0.022095561,-0.0029570207,7.861444e-06,-0.014929784,-0.012049168,0.021159198,0.002256374,0.02366917,0.012946516,0.020938111,0.023135964,-0.008797909,0.014422588,-0.0041160947,0.018857306,-0.0028139653,0.010417036,0.035165627,-0.0132131195,0.009435155,-0.0011672023,0.03623204,-0.007907064,0.0030057896,0.0019491302,0.0070422287,-0.015541022,-0.079330735,-0.011535469,0.04075779,0.007516912,-0.017933948,-0.009597719,0.005533644,0.0023376558,-0.023266014,0.01520289,-0.012458827,-0.025554901,0.005787242,0.0012273506,0.014695694,-0.009656241,-0.014422588,-0.024371443,0.012452325,0.0093831355,-0.0035406218,-0.021406293,-0.004457477,-0.0061156196,0.01176956,0.02361715,-0.030665882,0.027752753,0.012302767,-0.0070552337,-0.0036706722,-0.022979904,0.0021198213,-0.025203764,0.0045355074,-0.0035861395,-0.0077575054,-0.011808575,0.008765396,-0.008622341,-0.011886605,0.008680863,-0.03011967,-0.022342656,0.0055824127,-0.023786215,-0.035633806,0.013180607,0.023916267,-0.024696568,-0.011171328,0.0014297415,-0.012725431,0.011489952,0.0017670597,0.008784903,-0.015384961,0.003030174,-0.014994809,-0.0065187756,-0.0050394526,0.0062781824,-0.008992984,0.032746688,0.023213994,-0.004795608,-0.029313358,-0.012114193,0.0062781824,-0.012062173,-0.02235566,0.012224737,-0.020795057,0.018285085,-0.02500869,-0.012244244,-0.023083944,-0.0071787816,0.0433588,0.006648826,-0.015541022,-0.017738873,0.028819166,-0.0072047915,0.0093181105,0.02699846,0.031862345,0.0074388823,0.020118795,-0.01112581,-0.0030951991,0.036128,0.023292024,-0.022966899,0.010605609,0.027908813,-0.020547962,-2.1361791e-05,0.012198727,0.009253085,-0.024124347,-0.016737485,-0.08463679,0.023044929,-0.006678087,0.0017069114,-0.014786729,-0.020717027,0.0072568115,-0.014682689,0.0007603884,0.007913566,0.0024612036,-6.096112e-05,-0.01355125,-0.020547962,-0.0046883165,-0.030925982,0.024657553,0.020170815,0.007009716,0.0020060271,-0.002423814,0.0059172926,0.03126411,0.007627455,-0.034333304,0.011633007,-0.016217284,0.015788117,-0.016087232,-0.011756555,0.0034625917,-0.007855044,-0.0057644835,0.019546574,-0.009064512,-0.00010241468,0.0015402843,0.01073566,0.008830422,0.049002986,-0.016412359,-0.02361715,0.013128587,-0.001089172,0.008459778,0.010332503,-0.011756555,-0.00014031217,0.008687366,0.007009716,0.031966385,0.031472195,0.0002735122,-0.016087232,-0.0048508793,-0.0032447572,0.03633608,0.04367092,-0.022706797,-0.02147132,0.026686339,0.038338855,0.022264626,-0.008108642,0.014747714,0.011216846,-0.03693431,-0.0066715847,-0.009305106,-0.041382033,-0.006157886,-0.015567032,0.018207055,-0.00016073415,0.008966974,-0.003855994,0.0077770134,-0.00087377604,0.0011972764,0.007139766,0.0132131195,-0.008193174,-0.02681639,0.01816804,-0.008375245,0.005621428,-0.03326689,0.013024546,-0.019624604,0.026192147,-0.007998099,0.013915392,-0.0019621353,-0.004668809,-0.015567032,-0.01695857,-0.0006335892,0.017660843,0.021952506,0.010859207,0.025801998,-0.0023522864,-0.0018499667,-0.032096434,-0.014461603,-0.007646963,-0.025320811,-0.028298965,-0.004857382,-0.0029326363,-0.020092785,0.0055824127,-0.0026887918,0.0068276455,-0.014721704,0.010612112,0.0106901415,0.00020472775,-0.038624965,0.017920943,-0.014539633,0.004083582,-0.0003117145,-0.028975226,0.010456051,-0.008888944,0.007601445,0.006775625,-0.010059398,-0.025932048,0.023864247,0.004067326,-0.014188497,-0.010475559,-0.016035212,-0.0076534655,0.019689629,0.0012167839,-0.01680251,0.034255274,0.003953532,0.006372469,-0.001537033,-0.02377321,0.025411846,-0.0034951041,0.015541022,-0.013681301,-0.04002951,-0.011997148,0.019312482,-0.006860158,-0.017127637,-0.010371518,0.012218234,-0.0049256585,8.4075546e-05,-0.01708862,0.024202377,0.035217647,0.011119308,0.0036706722,0.026322199,-0.009571709,0.0011363153,0.025801998,-0.021055158,0.004106341,-0.019247457,0.001976766,-0.015163875,-0.051630005,-0.024748588,0.0063627153,-0.017127637,0.0064407457,-0.0123547865,0.0068666604,0.02173142,-0.006535032,0.0060701016,-0.017907938,-0.02372119,-0.01001388,-0.010098413,0.0045485124,0.00028082755,-0.017842913]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('4097e2ac-a5da-11ee-8347-7783293d7682', 'Politics', 'this article is about Climate Change', '[0.020351117,-0.0019071172,0.0022047043,-0.01817521,-0.0032622584,0.006700509,-0.015730517,0.005900544,-0.025880476,-0.024933318,0.010860329,0.008895614,-0.02003113,0.016216896,-0.0096251825,0.011263511,0.039294295,-0.010636338,0.024050156,-0.01082833,-0.009829974,0.026098067,0.004518204,0.013797801,-0.0073404815,0.0028158778,0.029848306,-0.03824474,-0.0035166473,0.00014079388,0.013733804,-0.010021965,-0.013068233,-0.023781369,-0.010527543,-0.014949751,0.004326212,-0.0109435255,-0.002603087,-0.042596553,0.010962724,-0.005689353,-0.0037406376,-0.015154542,-0.012319465,0.012197871,0.04881708,-0.014258581,0.0030574673,0.009599583,0.028568361,0.033739336,-0.036836803,-0.017215254,-0.02280861,-0.012281067,-0.0088316165,-0.0034910485,-0.0037374378,-0.0038142344,0.00552936,-0.0045246035,-0.00737248,0.0057821493,-0.023922162,-0.029771509,-0.0067325076,0.021234278,-0.006751707,-0.0027390812,0.028901145,0.03752797,0.012037878,-0.016421687,0.017932022,-0.011602696,-0.007442877,0.009657181,-0.011333908,0.012754646,0.009663581,-0.017624835,0.004489405,0.021131882,0.01772723,-0.003087866,-0.0019391158,0.00048437898,0.014309779,0.0028510762,0.016024904,0.0077948617,0.002511891,0.018968776,-0.04333892,0.029003542,0.019173568,0.012473059,0.030795464,-0.04216137,0.017023262,0.015192941,-0.021618262,-0.012229869,-0.049124267,0.0015719318,0.0042526154,0.010457146,0.036529616,-0.021823052,-0.008690823,0.0025422897,0.0054973615,-0.027390812,0.010335552,-0.015180141,-0.005410965,-0.008550029,0.00087196217,-0.028030783,0.039499085,0.019314362,-0.02051751,-0.012345064,0.010335552,-0.01935276,-0.0414958,-0.013925795,-0.011858685,-0.008774019,-0.0045278035,0.014591367,0.005641355,0.013618609,-0.0062493286,0.018994376,9.814574e-05,0.008991609,-0.02695563,-0.011871485,-0.022207037,0.020184724,-0.028670756,-0.008172445,-0.0082172435,0.0044382075,0.0022287033,0.025867678,0.010623539,0.0069628977,0.023218192,-0.010284354,0.025880476,0.023640575,0.0023822966,0.018955978,-0.004626999,0.0038590324,-0.0042046173,-0.017138457,-0.0013399419,-0.022642218,0.0079548545,0.013273024,0.014552969,0.020133527,0.025227705,0.008550029,0.0031694626,0.020376716,-0.008882814,0.027544405,-0.017445643,0.028133178,0.0140153915,0.045028444,-0.007302083,0.017087258,-0.011378706,-0.017804027,-0.030257886,0.03020669,0.021605462,0.02394776,-0.0004923786,0.014245782,-0.0031950613,-0.01864879,0.015192941,0.0069180997,0.02166946,0.029592317,0.0052413726,0.011986679,-0.67908734,-0.028389167,-0.004863789,0.023486981,0.016063303,0.008588428,0.02211744,0.013708205,-0.021272676,0.027723597,-0.009695579,-0.0073084827,-0.009925969,-0.008134047,-0.008319639,-0.00782686,0.023845365,-0.02718602,0.022027845,0.010885928,-0.009394792,0.00831324,0.010706736,0.0027502805,0.01867439,0.00015569324,0.012511457,-0.0083964355,0.00050317816,0.005279771,-0.012588253,0.012761046,-0.013196227,0.0029854705,0.03089786,-0.0025694885,0.012639452,0.00876762,0.014604166,0.035198472,-0.022053443,-0.013260225,-0.0075516724,0.005366167,-0.009490788,-0.0037246384,0.029617915,-0.019877538,0.016780071,0.013068233,-0.0057981485,0.020069528,-0.0018367203,0.030693067,0.01175629,0.01013076,0.016472885,-0.0067645065,0.016485684,0.019442357,-0.011359507,0.0111163175,-0.016037704,-0.012153072,0.001496735,-0.0026814835,-0.02741641,0.023998959,0.0018687189,-0.023909362,-0.008902013,0.011180315,-0.013925795,-0.016792871,0.013785002,-0.0029742708,0.028440366,-0.01958315,0.004790192,0.008806018,-0.0017343247,-0.00897881,-0.017189654,-0.010463546,0.03484009,-0.012652251,-0.0027934788,0.00044598064,0.0007443677,0.008050851,0.02051751,0.018149612,-0.015077746,-0.0009959568,-0.00069716974,0.009900371,0.003407852,0.016408889,0.01957035,0.009957968,0.0073404815,-0.0053597675,0.019493554,0.0053309686,0.023781369,-0.00023898963,-0.011154716,0.026085269,0.009817174,-0.01314503,0.021298276,-0.0126970485,-0.029669112,0.00057557505,-0.026187664,-0.031717025,0.039755076,0.007890858,-0.0023342988,-0.012293867,0.026853235,0.006956498,-0.0030110693,-0.020863095,-0.0050589805,0.028696354,-0.017548038,-0.016792871,-0.0027566804,-0.032177802,0.016178498,0.00081916444,0.029797107,-0.013439417,0.027544405,0.019007174,0.00829404,0.0117306905,0.016280893,-0.0026670843,-0.015000949,-0.013733804,-0.005698953,-4.6472982e-05,-0.012754646,-0.024958916,-0.018111214,-0.020927092,-0.030974656,-0.0031678625,-0.0042110174,-0.012588253,0.007698866,0.023806967,-0.019736743,0.0041086217,0.0032014612,-0.0055389595,-0.016255295,-0.014424974,0.0008927613,0.01544893,-0.02951552,-0.012748247,-0.0067325076,0.03087226,-0.01772723,0.0030030697,0.00051277777,-0.024626132,0.015154542,-0.0008087649,0.0014135387,-0.016204096,-0.0010183558,0.001750324,-0.034046523,-0.009394792,-0.0057085524,0.008498831,-0.0069692973,-0.016383288,-0.03645282,-0.0032446592,0.012338664,-0.010738734,0.022040643,0.02672524,-0.0019087172,0.031230645,-0.006031738,0.027314015,0.0106811365,-0.00828124,0.0011879484,-0.010188358,-0.012364264,0.0005483762,0.020773498,-0.0011663494,0.03501928,0.0013103432,0.028849948,-0.017676033,0.026123667,-0.023627775,0.010892327,-0.018623192,0.0072636846,0.019749543,0.02948992,-0.013477815,-0.026187664,-0.018584793,-0.010335552,0.0042046173,-0.012709849,-0.00028838747,-0.019467955,-0.01752244,-0.0053853663,0.0010455546,0.00078556594,0.0019871139,-0.021618262,0.033816133,0.010073163,0.011365906,0.00076276687,-0.026571646,-0.014399375,0.0017871225,-0.0068989005,0.014437773,-0.0054493635,-0.0033278556,0.01752244,-0.017381646,0.013989793,0.007878058,0.0052893707,0.029797107,0.011692293,-0.0077116652,0.020197524,-0.020095129,0.03363694,0.017612036,0.0007187688,0.01703606,-0.010521144,-0.0045758015,0.01520574,0.007116491,0.0064861183,-0.010271554,0.0077308645,-0.0017599236,0.01893038,0.01475776,0.0020223123,0.013759403,-0.0072508855,0.0006311726,0.024613332,-0.023909362,-0.021234278,-0.008966011,-0.0038590324,-0.0078076613,-0.02117028,0.010815531,0.01886638,-0.03775836,0.007737264,0.013465015,0.0110331215,-0.0069308993,0.0066493116,0.0072188866,0.010949925,-0.013618609,0.011333908,0.02096549,-0.02420375,-0.03133304,-0.0155129265,-1.6886766e-05,-0.012831443,0.0082236435,-0.010194758,0.023909362,0.011673094,0.011801088,0.0033950526,0.0029150734,0.02349978,-0.008594827,0.015973708,-0.0028366768,0.0029614714,0.013682607,0.025765281,0.0017519239,0.025483694,0.0047997916,0.005231773,-0.0075900704,0.006937299,-0.009753177,0.011813887,-0.029566716,-0.0048445896,0.010623539,-0.022450225,0.007967655,0.002969471,-0.0005111778,0.021720657,0.0062813275,0.0124410605,-0.0074492767,-0.010866729,0.0048317905,0.12738007,0.006105335,-0.001130351,0.02351258,0.0018367203,-0.025381299,-0.017765628,-0.016652077,0.0015047347,-0.026981229,-0.01311943,0.025765281,-0.004537403,-0.02119588,0.026366856,0.018789584,-0.010559542,-0.0077628633,-0.003151863,0.00553576,0.012249068,-0.02741641,-0.01520574,0.045822013,0.0054045655,-0.00873562,0.027928388,0.018597594,0.011391506,0.010981923,-0.015538526,0.002283101,-0.0049405857,-0.0124410605,-0.0065981136,0.014040991,0.006758107,-0.015397732,0.015589723,-0.0122618675,0.002788679,0.0009655581,0.0054493635,-0.022744613,0.0014807357,-0.023704572,-0.004095822,0.05365527,0.006815704,-0.012991436,0.013925795,-0.0013767403,-0.04674357,-0.00807005,0.0140153915,0.02256542,0.011225113,0.02024872,0.0024222948,-0.015986506,-0.010553142,-0.037886355,-0.01982634,-0.01822641,0.0108539285,-0.021515867,0.014143386,-0.0066429116,-0.014872954,0.0070524937,0.0026446853,-0.052733712,-0.01706166,-0.0021071085,0.010418748,-0.012293867,0.019211967,-0.020619905,-0.0026446853,0.008191644,-0.0077564633,-0.01058514,-0.0047869924,-0.0322802,-0.0037214386,-0.0043166126,-0.0061405334,0.002646285,-0.02050471,0.021887051,-0.0039262297,0.01543613,0.006319726,0.013375419,0.00968278,0.025675686,0.017432844,0.0034814489,-0.0011215514,-0.0066493116,0.0055901576,-0.02626446,-0.017164055,0.009836373,-0.010981923,0.0047581936,0.024075756,-0.0063293255,0.025957273,-0.007282884,0.027979586,-0.014232982,-0.006166132,-0.014309779,-0.012498657,0.014002592,0.02326939,0.007647668,-0.0061405334,0.011109917,0.008607627,-0.032817777,0.01196748,0.02854276,0.011532299,-0.0075196736,-0.00991957,-0.009228399,-0.0142841805,0.006175732,0.0064157215,-0.002118308,0.015090545,-0.008825217,-0.014732161,0.0005607757,-0.011839486,0.019083971,-0.020376716,0.007212487,-0.028517162,-0.0015959308,0.002673484,-0.00085356296,0.02928513,-0.029899502,0.00048437898,-0.018840782,-0.009740377,0.004726195,-0.018252008,-0.017829627,-0.019647148,0.0021135083,-0.0052413726,-0.02923393,0.031179447,-0.011685893,0.009253998,0.016984863,0.03368814,-0.021106284,0.014258581,0.010437947,-0.0045470027,-0.011724291,0.018469598,0.0039294297,-0.04513084,-0.011020321,0.01106512,-0.003478249,0.002718282,-0.0091900015,0.0050077825,0.010009166,0.017791228,-0.00207831,-0.021925448,-0.016332092,-0.019160768,-0.00032818576,-0.0034942483,0.011615496,-0.029541118,-0.006089336,0.02741641,0.013196227,0.01588411,-0.020005532,0.03591524,-0.001292744,0.015231339,0.0049469853,-0.010073163,-0.023384586,-0.014232982,-0.0156025225,0.015116144,0.023589376,-0.0034238514,-4.581051e-06,-0.02256542,0.0037726362,0.005644555,0.014360976,0.00094555895,-0.005481362,0.025458096,-0.027339613,0.023448583,-0.026878834,-0.017842425,-0.032792177,0.0299251,0.00094395905,-0.024165351,0.036299225,0.0046653976,-0.03391853,0.0138234,-0.008210843,0.0034814489,0.00828124,0.014348177,0.0091836015,-0.014693762,-0.035326466,0.0116474945,-0.001750324,-0.028773151,0.027672399,0.0047549936,0.0023582976,-0.0161273,-0.010687537,0.021080686,0.016306492,-0.012325865,0.006758107,0.0049821837,0.0138234,-0.008268441,-0.02787719,-0.009657181,0.0253301,0.007583671,-0.008146847,-0.0028750752,-0.021771856,-0.007122891,-0.003894231,-0.023166994,0.0075708716,-0.008486032,-0.0021551065,0.008415635,-0.002283101,0.0031310641,0.016037704,-0.009823574,0.014949751,-0.025240505,0.003385453,0.0034942483,-0.006566115,0.00207831,-0.014117788,-0.008146847,0.023883764,-0.0048253904,-0.000184192,0.01427138,0.016498484,0.016485684,-0.025726883,-0.0024574935,-0.003849433,-0.014936952,-0.018738387,0.020786298,-0.0019455155,-0.02810758,-0.0027934788,-0.0037214386,-0.00043438116,-0.020325517,-0.0068541025,-0.012223469,0.015820114,-0.015717719,0.0011879484,-0.010745133,-0.0021263077,0.0063517243,-0.010533943,-0.009945168,0.053092096,-0.03312496,0.011404305,0.00033338554,0.008594827,-0.0014175385,0.008044451,-0.0043166126,-0.017765628,0.014335378,5.5697583e-05,-0.03806555,-0.013285823,-0.009126004,0.020978289,-0.015845712,0.00021799054,-0.012549856,0.01128911,-0.022040643,-0.0061597326,-0.016613679,0.031486634,-0.008486032,-0.0025742883,0.031921815,-0.006777306,0.013388219,-0.0066493116,-0.0018303206,-0.00530217,-0.008812417,-0.019455155,3.779836e-05,0.034993682,0.0035262469,-0.014386576,-0.0052189734,-0.022219835,-0.015909709,-0.008044451,-0.007698866,0.009817174,0.019467955,0.015743317,-0.0035870443,-0.0161529,-0.02603407,-0.032536186,-0.040267054,-0.0017247251,-0.02972031,-0.018482398,0.0072636846,0.006425321,0.018405601,-0.0156025225,-0.032356996,0.0045534023,-0.028568361,-0.01405379,0.017612036,0.0075516724,-0.0010247555,0.005654155,0.0065053175,0.014885754,0.006860502,0.020210322,-0.025419697,-0.023998959,0.0012263468,-0.010546742,0.0054205647,0.018290406,-0.0066493116,0.0072892834,0.01936556,-0.0115131,0.0045438027,0.024139753,-0.02486932,-0.006770906,-0.026622845,-0.0044606063,-0.009516387,0.020863095,-0.004403009,-0.05421845,-0.003939029,0.0207351,0.005618956,-0.023666173,0.016485684,-0.006358124,-0.020197524,0.008882814,-0.02324379,-0.03481449,-0.01795762,-0.017714432,0.009810775,0.008210843,0.0010567541,0.023102997,-0.00092715974,-0.010815531,-0.013221826,0.009618782,0.0023438982,-0.012377063,0.021605462,0.0014167385,0.028286772,-0.0067645065,-0.02580368,-0.0066429116,-0.00050317816,-0.018533595,-0.011801088,-0.00483499,0.006518117,0.01752244,-0.035966437,-0.0034846487,-0.013004236,-0.008818817,-0.010380349,-0.009970767,0.0056573544,-0.029541118,-0.007878058,-0.0073404815,-0.033508945,-0.00576295,0.013260225,0.013388219,-0.023678971,0.022309432,0.20018332,-0.019480754,1.889918e-05,0.017650435,0.013042634,0.018316004,0.021131882,0.006751707,-0.015295336,-0.0035038479,0.003247859,0.02119588,-0.0038878312,0.0038654322,-0.014412175,-0.010917926,-0.042750146,-0.015820114,-0.017215254,-0.0043486115,0.019173568,-0.011538699,-0.004351811,-0.01359301,0.01221707,-0.013772203,-0.00391983,-0.007769263,0.0088316165,0.02282141,-0.009964367,-0.011154716,-0.0048989872,-0.0015951308,0.00016779272,0.0018079216,0.0088316165,-0.020235922,0.0069884965,0.009030008,-0.005775749,0.024882121,0.011865085,0.004217417,-0.005250972,0.033739336,-0.0076412684,0.0011047521,-0.008358037,0.026878834,-0.02972031,0.0013775402,0.0019983132,0.03407212,-0.007961255,0.0046781967,0.01036755,0.0112955095,-0.008473232,0.01772723,0.00013019436,0.038961507,-0.01105872,0.012754646,-0.014565768,0.029413123,-0.023870964,0.011135517,0.004732595,-0.010258755,-0.010770733,-0.015064946,-0.016088901,-0.025944473,-0.0068093045,-0.02005673,0.021771856,0.032664184,0.034404907,0.0027134821,-0.010073163,0.018328805,0.0075644716,-0.028977942,0.0010671536,-0.048279505,0.022629417,0.00046637977,-0.019954333,-0.004428608,0.004127821,-0.011346707,-0.017599236,0.017586436,-0.0035326467,0.013324222,-0.0019535152,0.022501424,-0.033022568,0.010092362,-0.02465173,0.036836803,0.02187425,0.024331745,-0.007878058,0.0075452724,-0.010885928,0.036017638,-0.02948992,-0.021387871,0.0072508855,-0.0050717797,0.009343594,0.002283101,-0.00057517504,0.016511284,0.014565768,-0.009471589,0.024254948,-0.03335535,-0.0037694364,-0.007346881,0.010636338,-0.01221067,0.011743491,-0.0045694015,-0.027032427,0.017330447,-0.018098414,-0.031230645,0.027032427,0.0051037786,-0.014130587,0.01174989,-0.013516214,0.010930725,0.021183081,-0.021400671,0.020671103,0.012313066,-0.0022991002,-0.0025950873,-0.017189654,-0.006422121,0.0041118218,0.013401018,0.030462679,0.005596557,-0.019967133,0.0053789667,-0.022539822,0.0060509373,-0.0034046522,-0.0207223,-0.00042718145,-0.0010647537,-0.030693067,-0.02882435,-0.0082236435,0.023691772,-0.020005532,0.020338317,0.0031182647,-0.011679493,0.0055709584,0.021887051,-0.16311613,0.009145203,0.016076103,-0.02512531,0.004809391,0.023282189,0.008793218,-0.0049949833,0.0034046522,-0.0012567454,0.013657007,0.02119588,-0.025842078,0.017368846,0.0067389077,-0.018021617,-0.033560142,0.011257111,-0.0020143127,0.00034278512,0.005714952,-0.01130831,0.013746603,-0.02629006,0.012415461,0.002420695,-0.0043646106,0.019979933,0.009151603,-0.013797801,-0.014066589,0.008812417,0.034891285,0.016332092,-0.0038430332,0.012300266,-0.007935655,-0.0068733017,-0.01821361,0.022002244,0.021272676,0.005254172,0.020107927,-0.015359334,-0.007014096,-0.019275963,0.00012509456,-0.00047357945,0.009823574,0.0037022394,0.008249242,-0.013106631,0.0050109825,-0.026123667,0.030718667,0.022795811,0.0025166909,0.008908413,-0.011378706,0.019429557,-0.009733978,-0.017420044,0.006242929,-0.0004447807,-0.0061629326,0.000990357,0.00943959,0.0072764843,-0.015858512,0.009119604,-0.010085963,-0.017240852,0.0006551716,-0.013349821,0.014821757,-0.023998959,-0.036760006,0.0050525805,0.014706561,0.003067067,0.0019151169,0.04728115,-0.014885754,0.013285823,0.018789584,0.010092362,-0.020223122,0.0026350857,-0.027365213,-0.0048125912,-0.0031726623,-0.03985747,-0.012601053,-0.015372133,-0.006274928,-0.0043134126,0.01405379,0.0022543021,0.007769263,-0.022731813,-0.007436477,-0.00071596896,-0.015730517,-0.007046094,0.014911353,0.008710022,0.012466659,0.0068797013,0.023563778,0.019058373,-0.014616965,0.029413123,-0.008178845,0.016805671,-0.0021551065,-0.017407244,0.014885754,-0.024997314,0.005830147,-0.008863615,0.013209026,-0.009317996,0.0061597326,-0.0058557456,0.02351258,-0.011340308,-0.07403199,-0.014258581,0.031077052,0.019506354,-0.0076412684,-0.011724291,0.004310213,0.01958315,-0.028209975,0.012889041,-0.00029078737,-0.018994376,0.014412175,0.0033374552,0.022872608,-0.024818122,-0.023614975,-0.027928388,-0.01543613,0.016972063,-0.00028298772,-0.020555908,-0.009132404,-0.025470894,-0.007814061,0.018955978,-0.023448583,0.037681565,0.009241199,-0.0013807401,-0.0024494936,-0.028363569,0.0011375507,-0.024818122,0.0026670843,-0.006134134,-0.016408889,-0.011436304,0.015090545,-0.024920518,-0.008300439,-0.0042046173,-0.011545099,-0.03665761,0.014527369,-0.031409837,-0.018328805,0.014232982,0.004051024,-0.031896215,-0.030001897,-0.0050589805,0.006662111,0.019851938,-0.004518204,-0.008511631,0.0049949833,0.021362273,-0.024037357,-0.004191818,-0.0082172435,0.0078076613,-0.002095909,0.041623794,0.01818801,-0.028261174,-0.028696354,0.0050749797,0.008338838,-0.011717891,-0.026123667,0.013324222,-0.011263511,0.022232635,-0.009113205,-0.0072700847,-0.027928388,-0.0083964355,0.028005185,0.010073163,-0.016677676,-0.017599236,0.02282141,0.0027934788,0.010911526,0.020863095,0.023102997,-0.0049021873,0.016088901,-0.005113378,0.00083756365,0.028312372,0.028133178,-0.004914987,0.008882814,0.018444,-0.017906424,0.0023150996,0.013413818,0.008454033,-0.017663233,-0.015167342,-0.0783326,0.019967133,-0.0016343291,-0.0064669196,-0.0057533504,-0.0044190083,-0.0039038307,0.006271728,-0.004566202,0.009778775,-0.002212704,0.017880823,-0.014079389,-0.01474496,0.0056605544,-0.010533943,0.01681847,0.0068285037,0.015999306,0.008428434,-0.00034178517,-0.004323012,0.022706214,0.012153072,-0.022271033,0.0036926398,-0.009637982,0.021797454,-0.0017999219,0.001039155,-0.0019615148,-0.008172445,-0.0033726536,0.012741847,-0.00010709535,0.013631408,0.005324569,0.008300439,0.01818801,0.03432811,0.0012007479,-0.01797042,0.0070332945,-0.009689179,0.0047997916,0.0015311335,-0.020824697,0.014488971,0.022706214,0.00030518675,0.03207541,0.021848653,0.001220747,-0.016268093,-0.0023422984,-0.015986506,0.020811897,0.03942229,-0.016882468,-0.014476172,0.02859396,0.025253303,0.025432495,-0.001060754,-0.0002903874,0.0010183558,-0.033764936,-0.008434834,0.0014479371,-0.05462803,-0.0030046697,-0.016856868,0.015180141,0.011602696,-0.0013951395,0.0052189734,-0.005606157,-0.0032222602,0.010079563,0.006383723,0.0112955095,0.019288763,-0.03248499,0.024677329,-0.018456798,0.016216896,-0.010546742,0.017983219,-0.027365213,0.022975003,-0.00038638324,0.0020287118,-0.0019663146,-0.007238086,0.005574158,0.00014689362,0.0044958047,0.006156533,0.0074620764,0.024280546,0.012466659,-0.008466832,-0.009375593,-0.023435783,-0.02234783,0.00017819226,-0.012057077,-0.034609698,-0.0144633725,-0.0020655103,-0.025214905,0.0037502372,-0.004806191,0.010988323,-0.028952343,0.03325296,-0.009138803,0.0069500986,-0.03668321,0.0111163175,-0.0060861357,-0.014604166,0.00829404,-0.0071292906,0.0041374206,0.016191298,0.0074940748,0.003545446,-0.00052797707,-0.024830922,0.026200462,0.0103291515,-0.020235922,-0.016024904,-0.005820547,-0.032792177,0.012716248,-0.0043454114,-0.017880823,0.033944126,0.0008655624,0.004169419,0.011161116,-0.0062077306,0.02854276,0.00040238255,0.017650435,-0.009753177,-0.026674042,-0.003086266,0.011948282,-0.016908066,-0.034456104,-0.010393149,0.007929256,0.0106811365,0.004124621,-0.010194758,0.014488971,0.040215854,0.0091836015,0.0063741235,0.013324222,-0.0144633725,-0.023794167,0.028465964,-0.01314503,-0.0077948617,-0.009689179,-0.0006827704,0.0014415374,-0.04400449,-0.012069876,0.024011757,-0.016306492,0.016383288,-0.0046014003,-0.0023662974,0.010117961,-0.0059805405,0.00391983,-0.029848306,-0.0345585,-0.014680963,-0.003871832,0.014117788,-0.024677329,-0.040958222]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40a0b102-a5da-11ee-8347-ab1edb0ac881', 'Politics', 'this article is about the economy', '[0.013724276,-0.009293961,0.004559668,-0.023787884,-0.009901917,0.0030721165,-0.011150166,0.0066875126,-0.02249436,-0.0359858,0.019389905,0.015716301,-0.020230696,-0.00029124474,-0.016544156,0.012340207,0.031148028,-0.02593513,0.014034722,-0.021989888,-0.010205895,0.017773002,0.0011876156,-0.0010825169,0.006280053,0.010988476,0.029259484,-0.026465476,-0.012941695,0.004449718,-0.005794982,-0.024344098,-0.016880471,-0.009604407,-0.012508365,-0.010374052,0.0077611366,-0.009798435,0.012948163,-0.0117451865,0.020256566,0.00120621,-0.010386988,-0.002965401,-0.007554173,0.0045790705,0.03246742,-0.015703365,-0.0063350275,0.0029896544,0.006079557,0.024331164,-0.05181852,-0.0035571875,0.0011245563,-0.005497472,-0.0010679647,-0.0068750735,-0.0115446905,0.0012159114,0.010561613,0.0010178407,-0.018820755,0.015405856,-0.023839625,-0.020696364,-0.0054360293,0.0058014495,-0.011273051,-0.004469121,0.03808131,0.036141027,-0.0064223404,-0.009526795,0.019208813,-0.019687416,-0.012547171,-0.0034084325,-0.012573041,0.016608832,0.013426766,-0.012294934,-0.005070609,0.015289439,0.012831746,-0.0030268433,-0.007515367,0.010432261,0.0023525944,-0.007289001,0.025482398,0.01265712,-0.003196618,0.014125268,-0.024913248,0.027758999,0.0105745485,0.027965961,0.023787884,-0.041832525,0.017747132,0.015237698,-0.033709202,-0.012857616,-0.043436494,0.008679538,0.007618849,0.0033308212,0.032208715,-0.012456624,-0.012139711,-0.011408871,0.015858589,-0.025844585,0.017734196,-0.0028829388,-0.004572603,-0.014008852,0.016983954,-0.018846627,0.035546005,0.025197823,0.0065516927,-0.0047504622,0.0149531225,-0.023270475,-0.039038517,-0.007884021,-0.018238671,0.0067392536,0.0047536963,0.0067069153,0.0026420201,0.021368995,-0.00075792347,0.007515367,-0.010018334,0.007418353,-0.027577905,-0.028250536,-0.0028700037,0.011706381,-0.007282533,-0.0136596,0.0012037846,0.007062634,0.00834969,0.02165357,0.016854601,0.0078064096,0.019092396,-0.020761041,0.03236394,0.032182846,-0.0070108934,0.0284575,5.7507445e-06,-0.0076770573,-0.0034440043,-0.022274463,-0.012139711,-0.023800818,0.0029751023,0.006108661,0.018031707,0.037356935,0.027655516,0.029207744,0.011337727,0.019208813,-0.010328779,0.0039905175,-0.012094438,0.019765027,0.016285451,0.046359856,-0.011661108,-0.0052678715,-0.027629646,-0.010729771,-0.016052617,0.032208715,0.034433577,0.026258511,0.017760068,0.017928226,0.009035257,-0.0036186299,0.0052387672,0.0037285793,0.009830773,0.01786355,0.00023667424,0.009371572,-0.67759895,-0.023774948,-0.011512352,0.041910138,-0.0027002287,-0.002811795,0.016854601,0.015315309,-0.009740226,0.022313267,-0.017229723,-0.024046589,-0.008627797,-0.0062703514,-0.008071582,-0.004385042,0.018665534,-0.03650321,0.0053875223,0.007838747,-0.021226708,0.015367051,0.0035701229,0.008925307,0.0147979,0.0030882854,0.011460612,-0.011460612,0.009565601,0.0096949525,-0.010943202,0.022895353,-0.022804806,0.0038741005,0.02647841,0.014642677,-0.0030494798,0.0048830486,0.015263569,0.030216692,-0.011279519,-0.0103805205,-0.017165046,-0.0041586757,-0.0055783167,-0.008440236,0.016531222,-0.012417818,0.0161561,0.0024867975,1.03267075e-05,0.026400799,0.0017300866,0.0250426,0.016932212,0.007884021,-0.0012288466,-0.024641609,0.015884459,0.016660573,0.006027816,0.013504378,-0.021097356,-0.020683428,-0.004123104,-0.005474835,-0.02249436,0.02954406,0.0020001095,-0.020114278,-0.017436687,0.020308306,-0.0038029568,-0.012417818,0.011893942,-0.01233374,0.028328149,-0.02528837,-0.004123104,0.008006906,-0.011622302,-0.009953657,-0.01737201,-0.0072243246,0.030811712,-0.019661546,-0.016557092,-0.0070432313,0.00068112055,0.0110660875,0.01268299,0.014177009,0.005659162,0.012948163,0.0044173803,0.0066875126,-0.0028263472,0.005242001,0.02539185,0.019829703,0.011906877,-0.0034278352,0.024473451,0.008731279,0.01081385,0.02956993,-0.0014770413,0.030837582,0.015470532,-0.019790897,0.012301401,-0.005423094,-0.021097356,-0.0028700037,-0.017100371,-0.034252483,0.04317779,-0.0016023513,-0.0055168746,-0.0033211196,0.018678468,0.004233053,0.009753161,-0.017229723,-0.01739788,0.027448552,-0.019545129,0.0012361227,-0.0100830095,-0.016453609,0.015949136,0.011602899,0.03808131,-0.0039226077,0.029699283,0.0042621573,0.00042564984,0.009436249,0.019971991,-0.018044643,-0.010024801,-0.015147151,-6.9526846e-05,-0.0053842883,-0.0078064096,-0.03236394,-0.0033566914,-0.019700352,-0.030553007,0.009552665,-0.00575941,-0.014616807,-0.0030252263,0.016673509,-0.0089123715,0.00783228,-0.0061248303,0.007871086,-0.023723207,-0.0011156633,-0.0075283023,0.022623712,-0.029207744,-0.005545979,-0.026051547,0.010277038,-0.027138107,-0.011208375,0.009054659,-0.019182943,0.013672535,0.018329218,-0.00069082197,-0.018587923,-0.0006972896,0.01108549,-0.01566456,0.00030276517,0.00091355044,-0.007418353,-0.015121281,-0.004039025,-0.03981463,-0.0008205785,0.017811809,-0.008938242,0.0052322997,0.021718247,0.010128283,0.023994846,-0.0009434632,0.019855574,-0.000331061,-0.011589964,-0.008272078,-0.01241135,-0.00834969,-0.0021504816,0.022041628,-0.012915825,0.030785842,0.015289439,0.017177982,-0.013995916,0.022028692,-0.019609805,0.014112333,-0.025754038,0.0022200085,0.017630715,0.028793816,-0.02778487,-0.027034625,-0.0064740814,-0.010386988,0.014435714,-0.009895449,0.0054780687,-0.027138107,-0.0041942475,-0.0047407607,-0.00037107934,-0.008964113,-0.005956672,-0.009099932,0.008252675,0.011091958,0.0031610462,-0.013284478,-0.040849447,-0.02170531,0.0048442427,-0.0049800626,0.007961633,0.008789487,0.005675331,0.026543086,-0.013219803,0.022649582,0.0045532,-0.0072437273,0.037201714,-0.002378465,-0.000728415,0.019040655,-0.02425355,0.025120212,0.005455432,0.008090985,0.006862138,0.004857178,0.0042783264,0.013349155,0.0021876704,0.00083513063,-0.020696364,0.011001411,0.0024479919,0.018277476,0.02471922,0.0019273489,-0.004064895,-0.0039420105,-0.007386015,0.014409844,-0.009410378,-0.00783228,-0.005390756,-0.011531755,-0.016324257,-0.024331164,0.017798873,0.016893407,-0.031484343,0.011434741,0.01672525,0.008420833,-0.011040216,0.01962274,0.0115446905,-0.0135949245,-0.014565066,0.0110596195,0.030527137,-0.020877456,-0.03182066,-0.01176459,-0.013827758,-0.021795858,0.019182943,-0.014590937,0.021692377,0.014487455,0.0083367545,-0.004061661,-0.007871086,0.033269405,0.010095945,0.00994719,-0.0094039105,0.01021883,0.0008569588,0.020644624,-0.0007753052,0.010289974,0.0007288192,-0.016104357,-0.020877456,0.0069591524,-0.02051527,0.020579947,-0.0216277,-0.0030042066,0.008252675,-0.008252675,0.0028231135,-0.018704338,0.024279421,0.044134997,0.015509338,0.006564628,-0.014435714,-0.0066745775,0.008213869,0.123764254,0.011577029,0.0039064386,0.02583165,0.0029346796,-0.041289248,0.00030721165,-0.021524219,-0.0029928882,-0.01878195,-0.0034892776,-0.0015271653,-0.00078056013,-0.018924238,0.028742075,0.007851683,-0.020773975,-0.009526795,0.020812782,-0.0025320707,0.024163004,-0.010846188,-0.014642677,0.024887377,-0.009326299,-0.0007506474,0.030216692,0.018406829,0.0026743582,-0.0004046301,-0.0016718782,-0.008259143,-0.011525287,-0.0017042162,-0.02330928,0.007955165,0.014603872,0.013569053,0.012469559,0.005694734,-0.0016589429,0.007618849,0.0056623956,-0.02360679,0.0044626533,-0.033864424,0.0008048137,0.03236394,3.1150656e-05,-0.008142726,0.017798873,-0.001055838,-0.030966934,-0.0024399073,0.009572068,0.0105745485,-0.008770084,0.033217665,-0.00823974,-0.029104263,0.003667137,-0.030837582,-0.0077223307,-0.00021161223,0.013439701,-0.02219685,0.00525817,-0.0060504526,-0.012708861,-0.008931775,0.0065840306,-0.030294303,-0.018238671,-0.016764054,0.01734614,-0.011861604,0.018911302,0.00080845173,-0.0071596485,0.0028748543,-0.010289974,-0.02726746,-0.01322627,-0.05290508,-0.00834969,-0.0014762328,-0.0161561,0.010044204,-0.019803833,0.0052646375,-0.0018772249,0.03249329,0.007819345,-0.0031594294,0.015198892,-0.00011227373,0.0033243534,0.0037867879,0.002194138,0.00060270075,-0.0018368023,-0.023774948,-0.021446608,-0.0007292234,-1.4905829e-05,0.0034925113,0.016427739,-0.00753477,0.02352918,0.006079557,0.008317351,-0.0152506335,-0.023322215,0.017928226,-0.0050479723,0.02734507,0.009876046,0.020748105,0.0054263277,-0.00090627436,-0.0035701229,-0.02046353,-0.005306677,0.025689362,-0.009966592,0.002362296,0.0031367927,-0.030242562,-0.001464106,0.0071402458,-0.00054651336,0.0073924824,0.0034925113,-0.008588991,-0.0084273005,0.0046663834,-0.038340013,0.016091423,-0.0026581893,-0.010289974,-0.019182943,0.002043766,-0.0018529714,-0.0261809,0.0284575,-0.03127738,0.0070561664,-0.009843708,-0.014888447,0.013763082,-0.0007280108,-0.009339234,-0.00899645,0.010509872,0.0040454925,-0.04154795,0.02360679,-0.0143710375,0.012320804,0.026879402,0.05329314,-0.005406925,-0.0007672207,0.011531755,0.0003177215,-0.009313364,0.012204387,0.0024172706,-0.0357271,0.006752189,0.025650555,0.0063835345,0.013840693,-0.005911399,-0.004203949,0.015392921,0.003783554,0.012404883,-0.02954406,-0.0035377848,-0.007767604,-0.0055136406,-0.020773975,0.012909357,-0.034821633,-0.010238232,0.008931775,0.013801888,0.017462557,-0.014565066,0.022520231,-0.01851031,0.026038613,0.0021876704,-0.025973937,-0.020825716,-0.014138204,-0.023839625,0.0070885047,0.017747132,0.014164074,0.01910533,-0.021174967,-0.0023962508,0.018497376,0.018161058,0.0049671275,-0.014655612,0.0150566045,-0.023891365,0.0016225626,-0.036166895,-0.031122157,-0.03510621,0.025469463,0.019519258,-0.020916263,0.026374929,0.00953973,-0.049309086,0.0012207621,-0.009449184,-0.0059631397,-0.004973595,0.014655612,0.00632856,-0.008110387,-0.03813305,0.008569588,0.010264103,-0.025818715,0.019312294,0.014215815,0.0012773537,-0.022158045,0.007489497,0.025223693,0.0009507392,-0.024473451,0.025973937,0.008886501,0.012463092,-0.01786355,-0.037900217,-0.014578002,0.028224666,0.011796927,0.0008088559,-0.019933185,-0.014642677,-0.01422875,0.00525817,-0.017165046,0.02350331,-0.012553638,-0.015561079,2.221979e-05,0.0027729895,0.0011172802,0.025353046,-0.013478507,0.019312294,-0.034769893,0.02610329,0.002815029,-0.008278546,-0.010341714,-0.013814823,-0.0058240863,0.021407802,-0.010626289,-0.010289974,0.018238671,0.0073924824,0.021976952,-0.024434645,0.00021161223,-0.012941695,-0.01650535,-0.017333204,0.014513325,-0.00953973,-0.023826689,0.00047132734,-0.0050156345,-0.009371572,-0.023179928,-0.0071596485,-0.010050672,0.028819688,-0.013478507,-0.003967881,-0.012909357,0.0007611573,0.008563121,-0.016815796,0.0042686253,0.02043766,-0.029362967,0.013045177,-0.0134008955,0.011712848,-0.0022992366,0.00582732,0.001313734,-0.018665534,0.017773002,-0.014422779,-0.023412762,-0.022843612,-0.009623809,0.01618197,-0.0115446905,0.005843489,0.00012177304,0.006477315,-0.0128188105,-0.0043268334,-0.017384946,0.02791422,-0.0044076787,-0.0184327,0.018342152,-0.016996888,0.0012272297,-0.013504378,-0.00089818984,0.010180024,-0.008207402,-0.0117387185,-0.010309376,0.041159894,-0.0014778498,-0.011363598,-0.012314336,-0.014319297,-0.008783019,0.0041942475,-0.0044788225,-0.0013808355,0.018303348,0.004789268,0.003699475,-0.0033696268,-0.0123272715,-0.02902665,-0.030371914,0.0008925307,-0.004203949,-0.022403814,-0.006816865,0.015392921,0.017682455,-0.022300333,-0.025766972,0.008847696,-0.036606696,-0.013801888,0.005707669,0.023671467,0.02160183,0.0048798146,0.0070432313,0.010994944,0.015147151,0.0037221117,-0.031173898,-0.016945148,-0.009177544,-0.011538222,-0.0027762232,0.011771057,-0.0015603118,0.002494882,0.01761778,0.0007583277,0.019777963,0.032182846,-0.015755108,-0.014629742,-0.020864522,-0.0032063194,-0.0024011016,0.011971553,-0.0059631397,-0.05386229,0.003799723,0.036037542,-0.004223352,-0.035442524,0.01742375,-0.014875512,-0.021821728,-0.004637279,-0.015082475,-0.018122254,-0.0059016976,-0.0032499759,0.009132271,0.0056623956,0.00053559925,0.023904301,0.009436249,-0.017708326,-0.021485412,0.01675112,-0.0075218347,-0.01292876,0.02303764,-0.00071830937,0.028198795,-0.0030688827,-0.016453609,-0.0038805683,0.01135713,-0.011693446,-0.004737527,-0.009209882,0.0049994653,0.018070513,-0.027422681,0.0055686156,-0.0159362,0.0059211003,-0.02160183,-0.006862138,-0.0039614136,-0.028328149,-0.008317351,-0.01422875,-0.016983954,0.0068750735,0.0021812026,-0.004423848,-0.028250536,0.03694301,0.20861934,-0.016518285,0.0074312882,0.0184327,0.023089381,0.015729237,0.02556001,0.013814823,-0.02160183,0.006364132,-0.009552665,0.025779909,-0.009151674,0.0026242342,-0.013006371,-0.020450594,-0.0295958,-0.026193835,-0.022546101,0.004834541,0.013310349,-0.008601926,-0.015457597,-0.005594486,0.010969073,-0.0034181338,-0.011848669,0.009436249,0.016867537,0.03407139,-0.010374052,-0.017242659,0.005620356,-0.016854601,-0.025443593,0.0071855187,-0.0025886623,-0.008013373,0.0068944762,0.0069591524,0.016285451,0.02350331,0.017773002,0.0040260893,0.0051999614,0.04154795,-0.013413831,0.00894471,-0.0064094053,0.022481425,-0.030941064,0.00097499276,0.015082475,0.022766,0.0017009825,0.005927568,0.0077934745,0.022623712,-0.0058046835,0.018109318,0.007153181,0.050964795,-0.011628769,0.012540703,-0.025068471,0.028897298,-0.0035119143,0.013853628,0.005630058,-0.025792843,-0.007774072,-0.0068298,-0.013213335,-0.02043766,-0.015651625,-0.019312294,0.03244155,0.023645597,0.04612702,0.0056365253,-0.006247715,0.0005408542,0.0030931362,-0.014875512,0.012663588,-0.030346043,0.012844681,0.0016120527,-0.021821728,-0.0073601445,0.0052872743,-0.0115446905,-0.01875608,-0.012366078,0.0054392633,0.029518189,-0.002630702,0.027552035,-0.04046139,0.0022555804,-0.02897491,0.057742856,0.028043574,0.011531755,-0.0008343222,-0.0064611463,-0.02108442,0.03179479,-0.011796927,-0.007664122,0.0071919863,0.0027503527,0.027629646,0.006467614,0.020735169,0.0027859246,0.01054221,-0.015780978,0.022067498,-0.025792843,-0.01902772,-0.015975006,-0.0017171515,-0.023542114,0.0066875126,-0.0031852997,-0.025779909,0.0017478726,-0.0071208426,-0.024602802,0.02170531,0.0072372598,-0.011971553,0.00177536,-0.010632757,0.00926809,0.008847696,0.005507173,-0.0017785938,0.005157922,0.0033793282,0.012844681,-0.010736239,-0.026827661,-0.0017268528,0.021162031,0.023477437,0.018497376,-0.022183916,-0.014888447,-0.014836706,-0.0064740814,-0.0039614136,-0.03365746,0.0057497085,-0.0077093956,-0.034769893,-0.0056397594,0.019726222,0.02241675,-0.03195001,0.0070238286,0.029957987,-0.0034213676,0.00012894804,0.006292988,-0.16526046,0.030009728,0.00088525465,-0.012941695,0.011137231,0.019040655,0.013892435,0.010341714,-0.003731813,0.013116321,-0.0043915096,0.019519258,-0.030785842,0.010302909,-0.0015126131,-0.009824305,-0.037227586,-0.003799723,0.0048280736,0.014978994,0.0136596,-0.0033696268,0.0150566045,-0.014694419,0.010496937,0.019493388,-0.0024593102,0.020360049,0.0029007248,-0.01853618,-0.018872498,0.013892435,0.016854601,0.01742375,-0.010665095,0.017928226,-0.0061345315,-0.0030915195,-0.008453171,0.011298921,0.029414708,0.0039193737,0.017747132,-0.00840143,0.011971553,-0.0052840402,0.009662615,-0.006642239,0.008776552,-0.0071596485,0.016000876,-0.0036056947,0.007198454,-0.023593854,0.029440578,0.04077184,0.005086778,0.004071363,-0.011984488,0.02794009,-0.015121281,-0.010503405,0.010852655,-0.0038902697,-0.0050932458,-0.0010534126,0.005720604,0.008744214,-0.025210759,0.011311856,-0.0067586564,-0.013413831,0.025572944,-0.018264541,0.0099924635,-0.013284478,-0.03013908,-0.00015027096,0.015858589,0.0033760944,0.008905904,0.03130325,-0.006257416,-0.0120362295,0.01363373,0.025728168,-0.0041683773,0.0089188395,-0.017165046,-0.02365853,0.0052031954,-0.035183817,0.008614861,-0.01181633,0.00034136872,0.006952685,0.016958084,0.0028877896,-0.00082947145,-0.022313267,-0.009002918,0.0099924635,-0.022584908,0.0030931362,0.018626727,0.0070432313,0.017165046,0.02734507,0.035494264,0.016983954,-0.005423094,0.027500294,-0.0028667697,0.028095314,-0.0014341933,0.000656867,0.013879499,-0.009390975,0.0091128675,-0.010328779,0.016143164,-0.011686978,-0.005510407,0.0029088093,0.012857616,-0.015897395,-0.08728691,-0.022830676,0.0284575,0.02333515,0.010781512,0.005946971,0.0031093054,0.019144136,-0.033890296,0.016117293,-0.0067198505,-0.018704338,0.009436249,-0.0029556996,0.022998834,-0.014021787,-0.0150566045,-0.014616807,0.0020098109,0.020062538,-0.014189945,-0.01422875,-0.00059016974,-0.014448649,0.008537251,0.029725153,-0.025754038,0.03293309,0.013763082,-0.006008413,-0.012805875,-0.03192414,0.011719316,-0.030863453,0.0021715013,-0.005904931,-0.016078487,-0.01726853,0.017566038,-0.024939118,-0.016660573,-0.0055362773,-0.021782923,-0.040487263,0.012967565,-0.01669938,-0.03689127,0.018419763,0.01591033,-0.014435714,-0.028198795,0.015160087,-0.011887474,0.0035895256,-0.00011591177,0.0030591814,-0.006849203,0.016880471,-0.0070561664,-0.020670494,-0.0021520986,0.010606887,0.008278546,0.017113306,0.004022856,-0.02477096,-0.0121332435,-0.008356157,0.006095726,-0.018626727,-0.027991831,0.009856643,-0.020502336,0.020851586,-0.01848444,-0.004436783,-0.037900217,-0.011137231,0.033062443,0.02724159,-0.020877456,-0.023141121,0.017255593,0.00038401457,0.00014198433,0.029983858,0.02726746,0.005720604,0.011402403,-0.007612381,0.002598364,0.033372886,0.028095314,-0.015379986,-0.0020098109,0.026413735,-0.01222379,0.0046922537,0.014578002,0.0017737431,-0.0051676235,-0.022377944,-0.073627315,0.014991929,-0.011240712,-0.014914317,-0.017928226,0.008420833,0.0065613943,-0.0127153285,-0.005507173,0.0043624053,-0.018652597,-0.0006524205,-0.008750682,-0.00029427643,-0.014565066,-0.02900078,0.021821728,0.0054618996,-0.0011480014,0.014565066,0.009546198,0.003431069,0.02590926,0.004533797,-0.026931144,-0.00088363775,-0.017811809,0.016440675,-0.011389468,-0.011079023,-0.0099859955,-0.01238548,-0.004385042,0.0066875126,-0.0070755696,0.010535743,0.0045952396,0.010930267,0.022015758,0.036787786,-0.012644185,-0.028095314,-0.0033631593,-0.015121281,0.006205675,-0.012042697,-0.01338796,0.0065096533,0.023826689,0.010846188,0.034200743,0.02303764,-0.00040988502,-0.013155126,-0.015793912,-0.007754669,0.02534011,0.024033653,-0.009565601,-0.027758999,0.026193835,0.016117293,0.025754038,-0.01149295,0.005911399,0.00712731,-0.018497376,-0.006215377,-0.005161156,-0.045894187,-0.00050892035,-0.0182128,0.006331794,-0.008149194,0.013019307,0.007618849,-0.020709299,-0.015845655,0.011693446,0.012204387,0.0028522178,0.0056688637,-0.03195001,0.016169034,0.00036279272,0.023710271,-0.017954096,0.014642677,-0.018691404,0.025508268,-0.005342249,0.014267555,-0.016608832,-0.006868606,-0.0030349276,-0.009481521,-0.013349155,0.01368547,0.00065444165,0.013672535,0.036736045,-0.00726313,-0.014345167,-0.030346043,-0.011622302,-0.006263884,-0.024977924,-0.021614766,-0.0069397497,0.0038935035,-0.020424724,0.0008007714,0.0005598528,0.00316428,-0.014513325,0.017798873,-0.008931775,-0.0139829805,-0.03295896,0.028276408,-0.016298387,0.0049768286,-9.711526e-05,-0.013310349,0.011596431,-0.0037770865,0.016958084,-0.006144233,-0.010160621,-0.017540168,0.010076542,0.0070561664,-0.011913344,-0.0241242,-0.0033534577,-0.026297318,0.008543718,0.008291481,-0.004064895,0.019001849,-0.00025668342,0.009287493,-0.00068677973,0.013213335,0.025676427,-0.011007879,-0.0016354978,-0.014927252,-0.015509338,0.009099932,0.0075088996,-0.012301401,-0.016039683,-0.008485509,0.002211924,0.0012603762,0.0022232423,-0.01791529,0.007217857,0.022455554,0.016039683,-0.0022070732,0.009779032,-0.013801888,0.0035377848,0.029233614,-0.016492415,-0.002493265,-0.044574793,0.0018271009,-0.008951178,-0.034097258,-0.013219803,0.025870455,-0.018225735,0.013161594,0.008783019,0.0008973814,0.009138738,-0.012275531,0.0066745775,-0.011331259,-0.02907839,-0.0110660875,-0.004659916,0.012948163,0.0009685251,-0.01650535]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40b19184-a5da-11ee-8347-2319b272ea78', 'Politics', 'this article is about Social Justice', '[0.0043957997,-0.000557972,-0.0058200643,-0.018217644,-0.021402817,0.010448926,-0.0065095383,-0.0014420683,-0.023513319,-0.033094738,0.015679862,0.011381172,-0.015925871,-0.0045867804,-0.007354386,0.021519348,0.04707843,-0.017052336,0.005616136,-0.026323006,-0.0032143071,0.01799753,-0.0058297752,-0.004136842,0.0007440975,0.01417791,0.030272104,-0.037134472,-0.0006473932,0.003508871,0.0015691192,0.0011499322,-0.022102002,-0.01690991,-0.018916829,-0.0053766,-0.0002967893,-0.008539116,0.010157599,-0.012604745,0.023047198,0.0033065607,-0.008985817,-0.012442897,-0.012222783,0.0012672722,0.017117076,-0.016158933,-0.004269558,-0.0056549795,0.021156808,0.019098097,-0.04459244,-0.0023759329,0.00699832,-0.012798963,0.012831332,-0.0061793677,-0.00092900917,-0.006894737,0.0072961207,0.0092124045,-0.024821054,0.011646603,-0.026983347,-0.021687672,-0.024691576,0.016327256,-0.015123105,-0.009050556,0.02649133,0.018981569,0.012863702,-0.029650606,0.014877095,-0.02750126,-0.012527058,-0.0016848408,0.01072083,-0.0031414754,-0.0016638004,-0.009574945,-0.015187844,0.008234841,0.0024180135,0.007911145,-0.010189968,0.0102158645,0.022011368,-0.004344008,0.0050593778,0.0059042256,0.015071313,0.002600902,-0.040682185,0.0327063,-0.0071277986,0.016676849,0.03387161,-0.040449124,0.018826194,0.014825303,-0.028070968,-0.01836007,-0.029547025,-0.012417001,-0.0025539661,0.023539215,0.030738227,7.51583e-05,-0.018049322,-0.0018984805,0.023888808,-0.01096684,0.016081246,-0.027682532,-0.0043116384,-0.011776081,0.006778206,-0.023137832,0.035554834,0.016003558,0.010688461,-0.0022772055,0.019680751,-0.022671709,-0.03672014,-0.001987497,-0.02193368,0.0038422784,0.0072313817,0.007684557,0.0071277986,0.013038498,0.005489894,0.009251248,0.00038540125,0.008390215,-0.030608749,-0.017531406,-0.0037322217,0.016754536,-0.019344108,-0.015097208,0.0022335064,-0.004450828,-0.00053369475,0.020276355,0.008817495,0.014644033,0.019965606,-0.006991846,0.014553398,0.0038649372,-0.016586212,0.015084261,0.0103129735,-0.0012227638,-0.0029812455,-0.015718706,-0.01993971,-0.015019521,-0.009788585,0.012475266,0.016612109,0.033250112,0.009050556,0.026827972,-0.00022881302,0.021726515,0.0013757105,0.029417545,-0.011730764,0.013187399,0.0010714356,0.025869831,-0.0026818262,-0.007678083,-0.020625947,0.00024540248,-0.019926762,0.03925792,0.031463306,0.033172425,-0.018308278,0.006920633,0.005431629,-0.01769973,-0.00080195826,0.007820509,0.020587103,0.03079002,-0.0029958119,0.0067652585,-0.67701787,-0.03066054,0.013789474,0.020807216,0.014812356,0.0022933902,0.016560318,0.021105018,-0.0032126885,0.012196887,-0.0074903388,0.00061178656,0.006049889,-0.0127277495,-0.0022933902,-0.011860243,0.021092068,-0.031670474,0.030815914,0.0038228566,-0.01309029,0.006066074,-0.0070371637,-0.0050529037,0.021066174,0.006370349,0.013362195,-0.0101187555,0.007205486,0.004421695,-0.020379936,0.011161058,0.002034433,0.0037160367,0.031722266,0.007891723,-0.0030378925,0.009400149,0.01593882,0.037419327,-0.040190168,0.002838819,-0.0096979495,0.004641809,0.0010002224,0.006758785,0.04096704,-0.02053531,0.022464544,0.011866717,-0.016767483,0.021363974,0.00428898,0.009322462,0.012701854,0.014851199,0.01233284,0.0039490983,0.024031235,0.021467557,-0.0011232272,0.0041336054,-0.01557628,-0.010947418,0.014307389,-0.0071795904,-0.014514555,0.009005239,0.014488659,-0.020936696,0.0009540957,0.015887028,-0.008124785,-0.0036674822,0.0136341,-0.00930304,0.006263529,-0.02157114,-0.009477836,-0.006043415,-0.0017657649,0.0006332314,-0.014695825,-0.010125229,0.028951423,-0.0016783668,-0.006713467,0.008746281,0.007166642,-0.0036254018,0.014553398,0.020030344,0.00331789,0.0070824814,-0.004829553,0.014812356,0.0031430938,0.0038390416,0.010643143,0.016676849,0.009639684,-0.005690586,0.034130566,-0.004172449,0.0041238945,0.015628072,-0.018191747,0.025157697,0.010319447,-0.029417545,0.02708693,-0.01624957,-0.021156808,-0.005217989,-0.025986362,-0.029547025,0.033172425,0.012650062,0.0027967384,-0.007101903,0.013258612,0.014359181,0.0051953304,-0.0030298,-0.0020635657,0.051428914,-0.011135163,-0.0075745,-0.0124687925,-0.025015272,0.01623662,0.008338424,0.030090835,-0.0011952496,0.03785955,-0.0012494688,0.0100216465,0.017285397,0.02053531,-0.012604745,-0.012559427,-0.012934916,-0.006033704,0.0021962812,-0.0066810977,-0.016715692,-0.02278824,-0.0196937,-0.039102547,0.0031026318,-0.0054704724,-0.010494243,-0.010578404,0.0130514465,-0.026827972,-0.003505634,0.0006817859,-0.009354832,-0.01490299,-0.01460519,2.6704967e-05,0.017544355,-0.030712333,-0.021843046,-0.007477391,0.020043293,-0.012203361,0.0012324747,0.010429504,-0.021635879,0.00854559,0.001230047,0.0065095383,-0.011303484,0.0022772055,0.02593457,-0.017777417,0.0075227087,0.01896862,0.0055611073,-0.014708772,-0.02060005,-0.029003214,0.0021978999,0.0018127009,-0.014385076,0.0010811465,0.022335064,0.010915048,0.015084261,-0.01533027,0.0154985925,-0.006823524,-0.0020959354,-0.0040170746,0.0073220166,0.00053774094,0.008390215,0.026348902,0.0053636525,0.03174816,0.0015788301,0.031023081,-0.01460519,0.018450705,-0.046741787,-0.0038487525,-0.035114605,0.01624957,0.012235731,0.019175785,-0.008163628,-0.0098274285,-0.020574154,-0.0010139795,0.002935928,-0.020509416,0.004677416,-0.020108031,-0.008040623,-0.0012826477,0.0010099333,-0.017363084,0.010390661,-0.014152015,0.0151748955,0.01575755,0.002322523,-0.004454065,-0.029365754,-0.026258267,0.010066964,0.0045835436,0.01806227,0.00087721774,-0.0066810977,0.019887919,-0.025429603,0.012675958,0.005023771,0.010817939,0.025805091,0.007309069,0.00981448,0.01763499,-0.028770152,0.037160367,0.01417791,0.002516741,0.012158044,-0.011834347,-0.01587408,0.008390215,0.01690991,0.016379047,-0.0017091179,-0.0008998765,0.019499483,0.027242305,0.015446801,0.0014186003,0.008992291,0.022775292,0.006619595,0.0047680507,-0.017544355,-0.0333278,-0.0040267855,-0.0016168645,-0.016443787,-0.028407613,0.00073721894,0.028329926,-0.031282037,0.0025766247,0.0106043,0.006797628,0.0038746481,0.012209835,0.0041853967,-0.01093447,-0.021920733,0.003994416,0.03537356,-0.013944848,-0.014644033,-0.0092124045,-0.01715592,-0.010565456,0.016107142,0.0018321227,0.03604685,0.02138987,-0.0007218434,-0.0033696815,-0.002416395,0.011329381,0.004648283,-0.005956017,-0.0049493206,0.02186894,0.0021800965,0.0100216465,-0.0060725478,0.019305265,-0.015899977,-0.012773067,-0.02278824,-0.0068882634,-0.03278399,0.0053668893,-0.017647937,-0.0052406476,-0.0008909748,-0.008202472,0.0030815916,-0.008202472,0.012559427,0.0199915,-0.025455499,0.0026251792,-0.023591006,-0.0072249076,0.0017074995,0.13538286,0.01580934,0.0015383681,0.037548803,-0.005237411,-0.011840821,-0.020185718,0.0004430597,-0.005988387,-0.034441315,-0.0073155425,0.0122745745,0.0064771688,-0.0172595,0.025701508,0.022995405,-0.0072443294,-0.0048068943,0.01399664,-0.00065103476,0.029080901,-0.038247988,-0.010843836,0.023344997,-0.007205486,-0.02096259,0.033897508,0.019499483,-0.019357055,-0.010222338,-0.005130591,0.003411762,-0.0040073637,-0.013880109,-0.016327256,0.027967384,0.016055351,0.0031107243,0.029702399,0.010442452,0.00836432,0.012779541,0.007399704,-0.017505512,0.012837807,-0.036305808,-0.016806327,0.043271758,0.0048716334,0.0036642454,0.01587408,-0.0037548803,-0.043038696,-0.0131485555,0.013465778,0.0078010876,-0.010953892,0.035528935,-0.011329381,-0.009147665,0.0024714235,-0.027423574,-0.026620807,-0.0068688416,0.008280159,-0.03418236,0.0014849581,-0.0098274285,-0.005412207,-0.008021201,-0.0009937485,-0.029288067,-0.0123716835,-0.0034829753,0.02247749,-0.0066746236,0.040682185,0.004483198,0.0027044849,0.011814925,-0.013659996,-0.024354931,-0.01987497,-0.03943919,-0.008435533,-0.0006534625,-0.015628072,0.013375143,-0.036435287,0.02975419,0.011814925,0.033224218,-0.018204696,-0.0014784841,0.021040278,0.016262516,0.015628072,0.013685891,0.013388091,-0.013426934,-0.007859353,-0.023733433,-0.01236521,0.0023338525,-0.0012632259,0.011957352,-0.0040882877,0.006159946,0.034389526,0.008869287,0.018437758,-0.025908675,-0.017958686,0.0038260936,0.00041230852,0.033353698,0.011471807,0.018334175,0.007833458,-0.013944848,0.00057698914,-0.032214284,0.0012648444,0.01678043,0.0031932667,-0.018282384,-0.012993181,-0.036150433,0.008254263,0.0039911787,0.005625847,0.020859009,-0.004803657,0.00077606254,-0.011303484,0.010429504,-0.020315198,0.023798173,-0.0009330554,-0.0020198666,-0.026776182,-0.0077234004,0.0071472204,-0.03161868,0.028019177,-0.03423415,-8.856136e-05,-0.015861133,-0.022166742,0.013491673,-0.02284003,0.0037322217,0.0050108233,0.01914989,-0.0028064493,-0.019227577,0.013103237,-0.02217969,0.019046307,0.033742134,0.052024513,-0.009918063,0.0017188288,0.009756215,0.005593477,-0.0037516435,0.006438325,0.006308846,-0.020612998,-0.00331789,0.034933336,-0.005968965,0.006655202,-0.0027465655,0.012986707,0.02285298,-0.0036383495,-0.007024216,-0.015964715,-0.022451594,-0.007982357,-0.0021978999,-0.01908515,-0.0023047198,-0.045213938,0.0172595,0.011439437,0.020185718,0.011769608,-0.0024261058,0.019978553,-0.016715692,0.014734669,-0.005777984,-0.024808107,-0.019175785,-0.023280257,-0.010177021,0.014087276,0.023785224,0.015472697,0.015187844,-0.008642699,-0.0007323635,0.008085941,0.030401584,-0.0117566595,-0.017233606,0.01323919,-0.03431184,0.011348803,-0.018852089,-0.02599931,-0.05267191,0.017039388,0.0002986101,-0.015848184,0.02750126,0.024354931,-0.03301705,-0.009788585,-0.0024730419,-0.005564344,-0.0039134915,0.0016621819,0.009497258,-0.011452385,-0.019667804,0.023500372,0.020082137,-0.02053531,0.021907784,0.020677738,-0.009561997,-0.018839141,-0.008953447,0.009024661,-0.007872301,-0.02884784,0.022102002,0.01442392,-0.001940561,-0.01096684,-0.019214628,-0.016689796,0.025002325,0.021687672,-0.0017690018,0.00036011246,-0.00060248026,-0.016819274,-0.017893948,-0.009192983,0.012909019,-0.0047065485,-0.0013247282,0.0051661977,0.008519694,-0.00015496973,0.009393675,-0.014773512,0.02102733,-0.014126119,0.00890813,0.004178923,0.0030993947,-0.008144206,-0.008772178,0.0015642637,0.025559083,-0.009367779,-0.020172771,0.012896072,0.015679862,0.008985817,-0.02133808,0.004534989,-0.02186894,-0.029313963,-0.019719595,0.017544355,-0.017673833,-0.024290191,-0.004347245,-0.0069335806,-0.018411862,-0.014747616,-0.018049322,0.0023111936,0.025520239,-0.010008698,-0.015511541,-0.019603064,0.012941389,-0.001206579,-0.012287523,0.0077492963,0.029339857,-0.019357055,0.009788585,-0.020509416,0.0059495433,-0.0068688416,-0.0015691192,0.0007934612,-0.024380827,0.019900866,-0.011530072,-0.024691576,-0.01854134,-0.010837361,0.011407068,-0.020405833,-0.011601285,-0.013064394,0.012319892,-0.005489894,-0.006130813,-0.01648263,0.025675613,-0.018580183,-0.018450705,0.02830403,-0.022373907,0.015744602,-0.011957352,0.001588541,0.007930567,-0.018023426,-0.0046838894,-0.0063832966,0.038092613,-0.018580183,-0.00091039663,-0.019059254,0.004615913,-0.023344997,0.010591352,-0.008416112,-0.00569706,0.021532297,0.008985817,-0.0038358045,-0.004153027,-0.010248234,-0.034622587,-0.023021301,-0.0044055106,-0.0034829753,-0.013685891,0.00378725,0.018942725,0.020185718,-0.017427824,-0.0032466766,-0.004013838,-0.03205891,-0.020431729,0.013336299,0.017505512,0.008506746,0.010066964,0.010377713,0.0024471462,0.008830443,0.0066875713,-0.027967384,-0.017725624,0.0031447122,-0.006655202,0.006752311,0.0061081545,-0.015291426,0.010533087,0.018683767,-0.005473709,0.017285397,0.020677738,-0.018139957,0.0037613544,-0.01215157,-0.005214752,-0.0011272733,0.004580307,0.00029314772,-0.053293407,0.0020603288,0.02799328,-0.0024358167,-0.018411862,0.008286633,-0.006655202,-0.008785125,-0.0074579692,-0.015071313,-0.0224257,-0.02193368,-0.0010212627,0.034208253,0.007781666,0.0033729183,0.008869287,-0.0068429457,0.009736793,-0.013129134,0.012896072,9.913208e-05,-0.028381716,0.017065283,-0.005370126,0.015951768,-0.0062117376,-0.031981222,-0.002989338,0.002087843,-0.02138987,-0.013310404,-0.023901755,-0.00021202126,0.01641789,-0.032887574,-0.014993626,-0.0008618421,-0.007276699,-0.027164618,-0.021001434,-0.007768718,-0.020289302,-0.007917618,-0.0053668893,-0.023720486,-0.00839669,-0.005891278,-0.0005328855,-0.009044083,0.022814136,0.19960426,-0.01580934,0.013401039,0.007742822,0.0031625156,0.013893058,0.025546134,-0.001521374,-0.022943614,0.0048586857,0.0033599706,0.0074385474,0.008357846,-0.00013008557,-0.008390215,-0.019098097,-0.020677738,-0.029339857,-0.01962896,-0.043789674,-0.004839264,0.0093418835,-0.0072637512,-0.0044896714,0.0057456144,0.0029618237,-0.0005223654,-0.015317323,0.014385076,0.030272104,-0.008500272,0.008221894,0.01763499,-0.011879665,-0.011025106,-0.0031026318,0.002027959,-0.024406722,0.006538671,0.0009306277,-0.008817495,0.00884339,0.006538671,0.001981023,0.00013281676,0.024678627,-0.024225453,0.013906005,-0.014035484,0.018696714,-0.021066174,-0.011640129,0.022956561,0.018424809,0.0033502597,0.00021748364,0.01678043,0.026983347,-0.013439883,0.0068429457,0.011711342,0.03861053,-0.026348902,0.011355276,-0.0056323204,0.030013148,-0.0048878184,0.009918063,0.013595256,-0.01580934,-0.0050658514,-0.0038649372,-0.0054478133,-0.01118048,-0.01720771,-0.012947863,0.029624712,0.0375747,0.03648708,0.008416112,0.004259847,-0.0106043,0.0010350199,-0.007309069,0.00054340565,-0.03721216,0.012423475,-0.005722956,-0.02794149,0.01118048,0.0052665435,0.0028906104,-0.010047542,-0.010992736,0.00035788704,0.019887919,0.010170546,0.03806672,-0.033172425,0.009898641,-0.028692465,0.05199862,0.024147766,0.008836917,-0.013349247,0.018398914,-1.4427258e-05,0.0227235,-0.029780086,-0.023914704,-0.007101903,-0.0119832475,-0.0029569683,-0.0016484249,0.017065283,0.005768273,0.0016880777,-0.013880109,0.034441315,-0.014126119,-0.004997875,-0.016612109,0.011096319,-0.019072203,0.0026963926,0.0060142823,-0.012293996,0.012028565,-0.029469337,-0.035347667,0.026245318,-0.005855671,-0.013323352,0.005289202,-0.0072572776,0.0053507043,0.012423475,0.0094389925,0.0038390416,-0.008700964,0.0042242403,0.0056420313,-0.009840376,-0.01302555,-0.005884804,-0.00020129881,0.034933336,0.0010269274,-0.022775292,-0.0029084138,-0.028045071,-0.002068421,0.014190858,-0.022438647,0.0062246853,-0.0066681495,-0.024808107,-0.031411517,0.00014991198,0.02975419,-0.018709663,0.02884784,0.020237511,-0.0029440203,-0.005693823,0.017790364,-0.16562907,0.01287665,0.009950433,-0.021545244,0.018683767,0.019046307,0.020509416,-0.005787695,0.0024859898,0.015615123,0.014268545,0.0121774655,-0.02926217,0.018619027,-0.008856338,-0.012261626,-0.033534966,0.018023426,0.00026462195,0.0124040535,0.015291426,0.007088955,0.010494243,-0.012766593,-0.005318335,0.01048777,0.0058200643,0.01987497,0.008681542,-0.021234496,-0.0067717326,0.005706771,0.028278133,0.009853324,-0.013465778,0.014488659,-0.010824414,0.009167087,0.00071294175,0.014890043,0.034130566,0.003690141,0.019887919,-0.023357945,-0.0013570979,0.006172894,0.013931901,-0.01490299,0.0054510506,0.0058880406,0.0050529037,-0.019978553,0.009037608,-0.014061379,0.029987251,0.014799408,-0.011005684,-0.00046612308,-0.009393675,0.030867707,-0.0024973191,-0.012170992,0.0092447745,-0.0047615767,-0.009918063,-0.0013846122,-0.0028695702,-0.00025895727,-0.027061034,0.0022351248,-0.019862022,0.0034473685,-0.00037528572,-0.004952558,0.020069188,-0.01580934,-0.03356086,0.0044993823,0.0024568571,0.0048068943,0.023487424,0.024549149,-0.0044087474,0.00093952933,0.015459749,0.018683767,-0.015783446,-0.0021121202,-0.016391994,-0.012585323,-0.0013651904,-0.045110356,0.0062343962,-0.024937585,0.013880109,0.0027789352,0.010746727,0.0057617994,-0.0089210775,-0.02387586,-0.010850309,-0.010927997,-0.015187844,-0.0023953547,0.02466568,0.0042274776,0.01305792,0.014708772,0.029443441,0.0272682,0.0007554269,0.022153795,-0.011109266,0.008785125,-0.00027777214,0.0056031877,0.009523153,-0.013957797,0.01678043,-0.004324586,0.043427132,-0.0037613544,-0.007645713,-0.00086993456,0.019421795,-0.0058297752,-0.07364745,-0.0068882634,0.030971289,0.023837017,0.004421695,0.001129701,0.0013125896,0.003126909,-0.04321997,0.010798518,0.0119832475,-0.032939363,0.0065969364,-0.009458414,0.017855104,-0.008590907,-0.0127277495,-0.024147766,0.010882679,0.021972524,-0.0026883,-0.005389548,-0.025973413,-0.013297455,0.0047712876,0.022503387,-0.026776182,0.03708268,0.006661676,0.019007463,-0.0068364716,-0.016223673,0.011899087,-0.022555178,0.013970745,-0.0054510506,-0.018502496,-0.029598815,0.029547025,-0.028588882,-0.013465778,-0.0020117743,-0.01896862,-0.012902546,-0.005140302,-0.008513221,-0.019046307,0.004823079,0.047026638,-0.01799753,-0.02599931,0.00978211,-0.0060596,-0.000449129,0.012805437,-0.0053571784,-0.0047809985,0.000123207,-0.008325476,-0.011847295,0.0015189463,0.01208683,0.007114851,0.03485565,0.01323919,-0.035839684,-0.016586212,0.0020263407,0.01327156,-0.034260046,-0.018049322,-0.004344008,-0.021428714,0.027216408,-0.0010083149,-0.015679862,-0.035606623,-0.0064998274,0.03156689,0.0075291824,-0.024626836,-0.017414875,0.030479271,-0.0057294294,0.016586212,0.019758439,0.025494343,-0.0009176798,0.008998765,-0.00096137886,-0.0017042625,0.034700274,0.041459057,-0.020509416,-0.002319286,0.023370894,-0.02005624,-0.013465778,0.020897852,0.003130146,-0.013504622,-0.00082421245,-0.086543515,0.006176131,0.0012462318,-0.016404944,-0.00854559,-0.0066875713,-0.0055481596,0.0010091241,-0.007833458,0.0076262914,-0.024212504,0.010584878,-0.003693378,-0.001997208,-0.013388091,-0.019538326,0.028925527,0.01024176,0.01114811,0.013530517,0.0026267979,-0.01580934,0.02921038,0.0056420313,-0.02611584,0.0019923525,-0.02853709,0.006075785,-0.01860608,-0.00483279,-0.013180925,-0.011989721,-0.0072249076,0.0121192,0.006616358,0.0029569683,0.027164618,0.011633655,0.014708772,0.030738227,-0.0030492218,-0.030013148,-0.0046936003,-0.0097950585,0.011555968,-0.0038325675,-0.01867082,0.014281494,0.015537436,0.0126306405,0.0284853,0.021804202,-0.0017463431,-0.011478281,-0.011879665,-0.01284428,0.0147864595,0.041251894,-0.021985471,-0.026646703,0.02654312,0.01424265,0.020082137,0.0029812455,0.0073284907,-0.003304942,-0.01641789,-0.005528738,0.0027530394,-0.0496939,-0.03133383,-0.0071342727,0.002516741,0.010940945,0.0015877318,0.005875093,0.0012834569,0.0008327095,-0.0068882634,0.016404944,0.01027413,0.0051888563,-0.021169756,0.022114951,0.0077363485,0.01230047,-0.023176676,0.028148655,-0.02290477,0.02030225,-0.0074579692,0.01806227,-0.0019373241,0.0031867928,0.0026931555,-0.005794169,-0.015537436,0.015369114,0.008565011,0.01099921,0.025183594,-0.006431851,-0.015848184,-0.014695825,-0.020897852,-0.017104127,-0.022024315,-0.025351916,-0.0095361015,0.004900766,-0.014398024,0.0046126763,-0.013012603,0.006253818,-0.022451594,0.028666569,0.02102733,-0.004803657,-0.032317866,0.03703089,-0.019098097,-0.011083371,0.010591352,-0.0077104527,0.016210726,0.0046644676,0.0010107426,-0.0008974488,-0.018088166,-0.01230047,0.016974648,-0.0040170746,-0.023837017,-0.013349247,-0.008869287,-0.02097554,0.01160776,0.009950433,-0.008539116,0.02224443,-0.0043990365,0.001230047,0.003699852,-0.009704423,0.016560318,0.0030298,0.014864147,-0.004635335,-0.016443787,-0.002516741,-0.0017754758,-0.021117965,-0.0060369414,-0.010300025,0.0058233016,-0.009426044,-0.0098921675,-0.008972869,0.024432618,0.02333205,0.0163661,0.0030767361,0.01496773,-0.007917618,-0.018385965,0.017492563,-0.018826194,-0.0033243638,-0.027371783,0.0018272672,-0.012805437,-0.03369034,-0.02284003,0.034130566,-0.015213739,0.010766149,0.0071536945,-0.006503064,0.014799408,0.003693378,-0.0018207933,-0.02647838,-0.028019177,-0.0042145294,-0.0074450215,0.004615913,-2.2557606e-05,-0.03024621]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40c265ae-a5da-11ee-8347-cfcfd11d52f6', 'Politics', 'this article is about Republicans', '[0.0045793,-0.003225154,0.0012333839,-0.03323374,-0.013486715,0.00935182,-0.0041574375,0.0027630376,-0.008540298,-0.025427675,0.02111244,0.01681009,-0.02161481,-0.0048755696,-0.0018162624,0.01742839,0.03179103,-0.020893458,0.035011355,-0.01095554,-0.002498971,0.0102535095,-0.01782771,0.001264782,0.0039577777,0.008991143,0.030296803,-0.0370466,0.0027565968,-0.012295195,0.00039368455,-0.018227031,-0.016874494,-0.02488666,-0.010337238,-0.0106077455,0.0004588961,-0.008836567,0.0039062523,-0.019437872,0.02756597,0.0052459068,-0.011464352,-0.011399945,-0.0008799534,-0.0031736288,0.026664278,-0.023869038,-0.011876553,0.005226585,0.025234455,0.014890776,-0.05497736,-0.0077094543,0.011837909,-0.010292154,-0.006202343,-0.010472492,-0.017003307,-0.00398354,0.020197868,0.011599605,-0.017750423,0.0030254938,-0.030992392,-0.016874494,-0.0052813306,0.00378388,-0.009899274,-0.0021753286,0.022658195,0.035526607,-0.000756776,-0.020983627,0.009403344,-0.02489954,-0.02160193,-0.010279273,-0.015187046,0.0077094543,0.010214866,-0.0014741031,-0.007039627,0.0032766792,0.008244028,-0.0029707483,-0.010105375,0.006331156,-0.0009371141,-0.0052459068,0.010098934,0.012520618,0.010382323,0.010639949,-0.022722602,0.027308343,-0.006344037,0.026007332,0.016603988,-0.024641914,0.03207442,0.03215171,-0.03207442,-0.013924679,-0.033697464,0.003754897,-0.010221306,0.0007209499,0.0404215,-0.01920601,-0.014955183,-0.0167328,0.0183172,-0.016951783,-0.008984703,-0.013229089,-0.0047081127,-0.024461577,0.0040865904,-0.035706945,0.029936127,0.015843991,0.005323195,-0.0013742731,0.019888718,-0.02648394,-0.02658699,-0.008173181,-0.00019784863,0.008372841,0.016385006,-0.0009773682,0.007838267,-0.0029594772,0.012849091,0.010897575,0.00039026295,0.01105859,-0.012977904,-0.022722602,0.0013501206,0.005664549,-0.022220232,-0.018613469,0.0011931298,0.011213167,0.0055389563,0.018342962,0.009615886,-0.00617336,0.007999283,-0.015006707,0.031146968,0.022645315,-0.014723319,0.020159224,-0.003713033,0.0060864114,0.005844887,-0.009770461,-0.022980228,-0.028081222,0.018265674,0.0059060734,0.013460952,0.032306284,0.018974146,0.034367293,0.010086053,0.019437872,-0.0028210033,0.012308076,-0.0128362095,0.015779585,-0.0016109669,0.028055457,-0.019579567,0.007149118,-0.028132746,0.0004460148,-0.024925303,0.019141603,0.03472797,0.039700147,0.0023154125,0.022413451,0.008224706,-0.009313175,-0.00328473,0.009306734,0.012056891,0.02756597,-0.00507523,-0.005613024,-0.6751859,-0.019785667,0.0017405848,0.025247335,0.008946058,0.010858931,0.011129438,0.013821628,-0.032125946,0.021060916,-0.0019177026,-0.011277573,0.016372124,-0.010575542,-0.010562661,-0.013473833,0.020094818,-0.0024925303,0.007026746,0.00039308073,-0.022683958,0.002469988,0.011329098,-0.005732176,0.018497538,0.0106013045,0.024435814,-0.0106141865,-0.0039674384,0.007748098,-0.025826994,0.02309616,-0.02211718,-0.003244476,0.022091419,0.02130566,-0.0050237044,-0.00047217993,-0.0010095714,0.033130687,-0.013332139,-0.0048852307,0.0055808206,0.0103758825,-0.030245278,-0.018458894,0.0017405848,-0.014323999,0.015470434,0.027823595,-0.0097833425,0.025865639,0.00068552635,0.0254792,0.009087753,0.01751856,0.004302352,-0.0034715086,0.012919938,0.0041574375,-0.01184435,0.018561944,-0.019463634,-0.009126397,0.0035713387,-0.010871812,-0.01165113,0.00626997,0.019180246,-0.023456836,-0.015174164,0.020172106,-0.017260933,-0.007290812,0.011683334,0.004939976,0.018793808,-0.008450129,-0.005960819,0.009525717,-0.008900974,-0.010981303,-0.018549062,-0.016964665,0.030245278,-0.008694873,-0.017402628,-0.006234546,0.0073681,-0.005194382,0.0044054026,0.011065031,-0.0045245546,0.006260309,0.0004906968,0.0040447265,0.0026293942,0.012816887,0.015947042,0.020829052,0.008301994,-0.0034393054,0.023482598,0.008102334,0.0081603,0.024422932,0.005255568,0.021370066,0.009004025,-0.029034436,0.013576884,-0.015676534,-0.017363984,0.008044368,-0.03155917,-0.03253815,0.022323282,0.0049238745,-0.0023717682,-0.02211718,0.027900882,-0.0010441899,0.009235888,-0.024319883,-0.0010578763,0.012411127,-0.024538865,-0.0052716695,0.0004331335,-0.022323282,0.012082654,0.004569639,0.027024955,-0.003812863,0.013808747,0.0046952316,-0.00017118032,0.0013613917,0.023134803,-0.014156542,-0.008843008,-0.017479915,0.010768762,0.00945487,-0.007806064,-0.02697343,-0.010111815,-0.016874494,-0.021086678,0.0007330261,-0.0052491273,-0.007426066,0.007593523,0.015766704,-0.023083279,0.008424366,0.0089653805,0.004740316,0.0005599337,0.0010127918,-0.0038450663,0.029833077,-0.020944985,-0.013628409,-0.022580909,0.0028016814,-0.010813846,-0.011213167,0.010923337,-0.019927362,0.017853472,0.017724661,0.002877359,-0.022774128,-0.007387422,-0.006163699,-0.026690042,0.00010898782,0.010813846,0.009499954,0.0025730385,-0.005783701,-0.041374717,0.0100280875,0.0055228546,-0.007207084,0.012578583,0.02099651,0.017054833,0.023650056,-0.021563286,0.02289006,-0.0028387152,0.009628767,0.0012333839,-0.0017228731,0.0031591372,0.012559261,0.01833008,0.007026746,0.023946324,0.0066531883,0.02538903,-0.034753732,0.02697343,-0.040241163,0.015573484,-0.029085962,0.0064374264,0.004469809,0.0072264057,-0.017853472,-0.023083279,-0.019167366,-0.00846301,0.011618927,-0.019283297,0.00706539,-0.016397888,-0.008301994,0.0064245453,0.002746936,0.008276232,-0.0005208873,-0.011921638,0.0050559076,0.007979961,0.0072714905,0.003436085,-0.024152426,-0.014452811,0.020056175,-0.009145719,0.016707039,0.007889792,-0.00488201,0.007316575,-0.016204668,0.027308343,0.0043087928,0.0021882097,0.024461577,0.0027952408,0.008694873,-0.0049947216,-0.033388313,0.030142227,0.0046340455,0.004392521,0.0036711688,-0.013847391,0.005783701,0.013126038,0.030709004,0.0054520075,-0.0114257075,0.017029071,0.00925521,0.02140871,0.02957545,-0.00032887553,-0.0036003217,0.018188387,-0.006846408,0.014311117,-0.022439213,-0.013267732,-0.00607031,-0.0036099826,-0.005059128,-0.014980945,0.015019588,0.02401073,-0.020275157,-0.006212004,0.014388405,-0.003304052,0.008050809,0.011612486,0.0036582875,-0.008785042,-0.027153768,0.011065031,0.012288754,-0.025350386,-0.021524642,-0.02269684,-0.0071942024,-0.014182305,0.025015473,0.003903032,0.037922528,0.016977545,0.0073101344,0.0031736288,0.009944359,0.037561852,0.0012366042,0.009796224,-0.02559513,0.023547005,0.0070460676,0.012288754,0.001334019,0.009422666,-0.004270149,-0.016488057,-0.013190445,0.016372124,-0.009686733,0.009016906,-0.019064315,-0.014388405,0.00026950083,-0.030915106,-0.007484032,-0.021820912,0.014195186,0.038618118,0.0050623487,-0.0028644777,-0.015083995,-6.2695675e-05,0.002906342,0.14375524,0.01204401,-0.009809106,0.042044543,-0.0169389,-0.012121297,-0.0063762404,-0.017595848,0.0076128445,-0.02469344,-0.016500937,0.027411394,0.0052201445,-0.008353519,0.026690042,0.01592128,-0.010800965,-0.014220948,-0.011341979,-0.008398604,-0.0004331335,-0.009648089,-0.0072264057,0.02507988,-0.015225689,-0.023044635,0.0185233,0.023147685,-0.0010168172,-0.0048337057,-0.023443954,-0.015264333,-0.023611411,-0.020120582,-0.011515876,0.0019837192,0.010060291,0.005348957,0.021151084,0.009242328,0.012082654,0.0063633593,0.0060864114,-0.018252794,0.010427407,-0.037999816,-0.01562501,0.029858839,0.005059128,-0.0003804007,0.005348957,0.00038965914,-0.01911584,0.0035874404,0.00053296355,0.008939618,-0.007149118,0.025260217,-0.0042862506,-0.021009391,0.007696573,-0.027823595,-0.011084354,-0.004904553,0.016140262,-0.02728258,-0.0036132028,-0.01503247,-0.0147104375,-0.015792467,0.014620269,-0.030090703,-0.02041685,-0.0049464167,0.028931387,-0.0044054026,0.025273098,-0.002746936,0.010240628,0.016488057,0.0008984702,-0.036119148,-0.011831468,-0.038154393,-0.012971463,-0.016397888,-0.019824311,0.026690042,-0.018072456,0.010897575,-0.0067369165,0.011992484,0.009113516,-0.004588961,0.01244977,0.020339563,0.022258876,0.0027034616,-0.0070460676,0.00189194,-0.0014362643,-0.022735484,-0.021267015,-0.0039577777,-0.015122639,0.010781643,0.017879236,0.0072650495,0.0033394755,0.009641648,0.014414168,-0.016797207,-0.017235171,-0.0012277483,0.003056087,0.013989085,-0.0134223085,0.023315141,-0.0037355751,-0.0028193933,-0.003912693,-0.015972804,0.006608104,0.031172732,-0.017789068,0.0008646569,-0.01214706,-0.023637174,-0.0102599505,-0.010742999,0.002080329,0.0136541715,0.009474192,-0.008817245,-0.017351102,0.0031526966,-0.019450754,0.035681184,-0.013551122,0.0062796306,-0.0059318356,0.010755881,0.001184274,-0.032976113,0.009506395,-0.028647998,0.005007603,-0.007374541,-0.008314875,-0.0027614273,0.004968959,-0.008237587,-0.020159224,0.008237587,-0.0013742731,-0.02109956,0.01921889,0.00034678858,0.02130566,0.02022363,0.03879846,-0.013383664,-0.014839251,0.029626977,0.007554879,-0.0012623668,0.016591106,0.008192503,-0.027102243,0.0021560066,0.01234672,0.0011488504,0.01562501,0.011399945,0.01144503,0.0022510062,0.026458178,0.0086175855,-0.030039176,-0.014517218,-0.016861614,-0.009132837,-0.0050559076,0.0062281056,-0.038180154,-0.017273815,0.017763304,0.004653367,0.0083857225,-0.009718936,0.026458178,-0.0058287852,0.013190445,0.0066982727,-0.004669469,-0.03287306,-0.0068850517,-0.022181587,-0.0020771087,0.026715804,0.027050717,0.007831827,-0.014349761,-0.0047048926,0.018587707,0.021975487,-0.02109956,-0.018793808,0.025839876,-0.026818853,0.011560962,-0.030348329,-0.02350836,-0.026741566,0.0039964216,0.023765987,-0.021640575,0.02470632,0.008714195,-0.05564719,-0.0051492974,-0.009712496,0.0063665793,0.00044963765,0.0048047225,0.013029429,-0.014401287,-0.018561944,-0.0039899806,0.008952499,-0.031404596,0.022838535,0.008211825,-0.0052620084,-0.008527417,0.003494051,0.005484211,-0.0029916805,-0.02728258,0.027205292,0.00696878,0.006302173,-0.008913855,-0.031610694,-0.019631092,0.02469344,0.014414168,-0.0048723496,-0.009113516,-0.019180246,-0.028544948,-0.0015352892,-0.017647373,0.0055904817,-0.008669111,-0.020391088,-0.0018436352,0.0127202775,0.0023717682,-0.0001963391,-0.01642365,0.028132746,-0.02279989,0.01364129,0.00050961616,0.0018178726,-0.008881652,-0.012984344,-0.014027729,0.028390372,-0.012881294,-0.0071169147,0.005841667,0.017647373,0.014362643,-0.0087335175,-0.007348778,0.0010176222,-0.015831111,-0.015496196,0.027308343,-0.018549062,-0.031121206,-0.0027260038,-0.008005724,0.007458269,-0.021048034,-0.0056065833,-0.0009717326,0.02687038,-0.015547722,-0.012578583,-0.02766902,-0.003935235,0.015650772,-0.016191786,0.0038869304,0.036557112,-0.027772069,0.013203327,-0.028854098,0.0018645673,-0.022181587,0.0032782892,0.0034811697,-0.014568743,0.024242595,-0.008398604,-0.026058858,-0.017879236,-0.0025408352,0.010388764,-0.013499596,-0.001573933,-0.021202609,0.010723677,-0.007303694,0.007406744,-0.012159942,0.0258914,0.004353877,-0.010639949,0.014517218,0.005107433,0.01662975,0.0033330347,0.0039674384,0.014568743,-0.0056420066,0.00036208512,-0.0028403252,0.038463544,-0.022387689,-0.0054487875,-0.013770103,-0.011258251,-0.020365326,-0.0057096337,-0.0015996956,-0.01045317,0.019991769,0.007387422,-0.004605063,-0.013950441,-0.0068657296,-0.021949725,-0.02857071,0.0022944806,-0.011953841,-0.018677875,-0.010524017,0.022155825,0.024062257,-0.010742999,-0.017248053,0.0060059032,-0.0127202775,-0.017196527,0.010659271,0.012333839,0.0043120133,-0.008720636,0.006131496,0.006704713,0.008604704,0.0075806417,-0.013332139,-0.019489398,0.007348778,-0.013499596,0.0058803107,0.016552463,-0.0022558365,0.0067691198,0.01532874,-0.0043087928,0.015831111,0.02059719,-0.011567402,0.006930136,-0.03671169,-0.013254851,-0.018149743,4.755009e-05,0.0021141423,-0.047506213,0.008166741,0.020726,0.0070847115,-0.025054116,0.014117898,-0.004173539,-0.013808747,0.01642365,-0.016900258,-0.025904281,-0.020146344,-0.012430449,0.013808747,0.017917879,-0.006063869,0.016011449,-0.0052491273,-0.015779585,-0.022477858,-0.004051167,0.010002324,-0.0080314865,0.004257268,-0.0016955003,0.011103676,-0.002558547,-0.015560603,-0.0073938626,0.013486715,-0.0042862506,0.0012752481,-0.01343519,0.009635208,0.006633866,-0.039545573,-0.0059898016,-0.024719203,-0.0008107164,-0.009673852,-0.008334197,-0.0051299753,0.0018951604,0.0058384463,-0.012172823,-0.018162625,0.0063150544,0.0035230338,-0.0039899806,-0.034109667,0.025298862,0.21352033,-0.014542981,0.012778243,0.024912423,0.0052137035,0.013976204,0.018033812,0.015380265,-0.031919844,-0.0057192943,0.0068850517,0.00885589,-0.009499954,0.007097593,-0.010343679,-0.019270416,-0.016153142,-0.025646657,-0.01642365,-0.023431074,0.0044311653,0.0025054116,-0.0012156721,-0.0023460058,0.018497538,0.006592002,-0.010073172,-0.003155917,-0.012217907,0.04353877,-0.008340638,-0.014787725,0.023856156,-0.009628767,-0.012430449,0.014542981,-0.010420967,-0.004212183,0.015650772,0.008952499,0.0018291437,0.028467659,0.017376866,-0.0005989802,-0.009377582,0.03794829,0.0040157433,0.008231147,-0.0027549868,0.0065436973,-0.037226938,0.013576884,0.014980945,0.03148188,0.0037613378,0.011612486,0.016488057,0.0153029775,-0.0054133637,0.021898199,0.0067369165,0.031198494,-0.029498164,0.023972088,-0.009590123,0.04771231,-0.010704355,0.02717953,-0.008720636,-0.03921066,-0.0050333655,-0.0026132925,-0.015019588,-0.03248662,-0.0147362,-0.01890974,0.015650772,0.03323374,0.030348329,-0.0038772693,-0.012198585,0.006749798,0.0026149026,-0.009667411,0.0050913314,-0.03287306,0.026110383,0.0015787636,-0.012179263,-0.0026132925,0.017582966,0.003693711,-0.017531442,0.003096341,0.009280972,0.009635208,-0.013821628,0.02818427,-0.03225476,0.0055196346,-0.026767328,0.06559155,0.033130687,0.018381607,-0.01015046,0.005268449,0.0007644243,0.049696032,-0.013551122,-0.024216833,0.0015602467,0.009049109,0.009983003,0.008694873,0.02478361,0.00029767866,0.01742839,-0.015006707,0.003754897,-0.0030931206,-0.027231054,-0.013911798,-0.003693711,-0.027024955,0.004518114,0.002896681,-0.023031753,0.0018693978,-0.003703372,-0.028622234,0.015908398,-0.0060187844,-0.0047564176,0.0030673582,-0.007954199,-0.010330798,0.01713212,0.0116575705,0.001930584,-0.0015457553,0.005017264,0.017299578,-0.0014410948,-0.010272832,0.003436085,0.022825653,0.014890776,0.019231772,-0.0149423005,-0.0024232934,-0.016294837,-0.010124697,0.0064342064,-0.012211466,0.004811163,-0.0025440555,-0.021923963,-0.01991448,-0.009480632,0.025569368,-0.014362643,0.017376866,0.022941584,0.0017164324,-0.0037967614,-0.0028515963,-0.1643653,0.014903657,0.005648447,-0.01682297,0.0019676175,0.0059769205,0.030940868,-0.0012470703,0.019540923,0.009306734,0.0135382395,0.011599605,-0.021640575,0.019643974,0.013512477,-0.0034296445,-0.03434153,0.013976204,0.012675193,0.0086175855,0.016500937,0.0068657296,0.009119956,-0.022671077,0.00985419,0.011470792,-0.009016906,0.020777527,-0.004917434,-0.019785667,-0.0111938445,0.024152426,0.018304318,0.016552463,-0.0026712583,0.022980228,-0.012050451,5.5651213e-05,-0.012436889,0.018149743,0.020043293,-0.0038804899,0.04281742,-0.009667411,0.008508095,-0.0036099826,0.0040962514,-0.0010514356,0.016707039,-0.0026100723,-0.0030931206,-0.022374807,0.005555058,-0.026509702,0.05822345,0.039184894,0.006479291,0.0034071023,-0.018111099,0.034418818,-0.005551838,-0.02748868,0.02358565,0.002867698,-0.007593523,-0.020056175,0.0010659271,0.003693711,-0.038772695,0.004112353,-0.014285355,-0.013924679,0.003065748,-0.021769386,0.025427675,-0.00497862,-0.03194561,0.01972126,0.025337504,-0.009087753,0.012288754,0.014749082,-0.0016922799,-0.019695498,0.012861972,0.027849358,-0.026033094,0.008739958,-0.008643348,-0.015367383,-0.0004935146,-0.046965197,-0.021692099,-0.027411394,0.002738885,0.004650147,0.0050913314,-0.0071233553,0.0024200731,-0.030502904,-0.005197602,-0.00078213605,-0.008675551,-0.003874049,0.012076213,0.000109189095,0.029137487,0.017673135,0.021086678,0.019167366,0.00043393858,0.02617479,0.00067184,0.002608462,-0.0006110564,-0.004353877,0.021022271,-0.011863671,0.013164682,-0.004772519,0.060593605,0.0010514356,0.0037098126,-0.005445567,0.019850073,-0.012127738,-0.078575894,-0.03155917,0.028416134,0.007316575,-0.007786742,0.01800805,-0.00031579298,0.021563286,-0.021138202,0.022632433,0.009107075,-0.013119598,0.004289471,-0.013705697,0.015109758,0.011226048,-0.0221043,-0.029498164,0.00013092627,0.02528598,-0.013080954,-0.02041685,-0.016642632,-0.005110653,0.015315859,0.010285713,-0.03666016,0.03542356,0.008166741,0.0016955003,-0.013203327,-0.012746041,0.009377582,-0.014658912,0.010337238,-0.0033362552,-0.023984969,-0.015277214,0.024616152,-0.028210033,-0.016050093,-0.01383451,-0.033774752,-0.040189635,-0.0031414255,-0.01463315,-0.022477858,0.0017792287,0.035784233,-0.014452811,-0.0048530274,0.0005768404,-0.007838267,0.0029836297,-0.0061186147,0.0042154035,0.003674389,0.01991448,-0.01731246,-0.021511761,-0.0050043827,0.009210126,0.001972448,0.029163249,0.015998567,-0.029034436,-0.006988102,-0.00875928,0.002817783,-0.022091419,-0.016539581,0.016153142,-0.020867696,0.031662222,-0.013950441,-0.0068077636,-0.03287306,-0.007303694,0.04212183,0.01952804,-0.015612128,-0.003645406,0.034882545,0.0074711503,0.01661687,0.023224972,0.027694782,0.016140262,0.006402003,-0.0040479465,-0.0074711503,0.035294745,0.0025569368,-0.018446013,-8.9464615e-05,0.021679217,-0.009937918,0.0010482153,0.017892117,-0.0035165932,-0.012823328,-0.020532783,-0.08311011,0.003793541,-0.019309059,-0.005146077,-0.015470434,0.00025561318,-0.0011512657,-0.018896857,-0.0169389,0.009918597,-0.006463189,0.0055776,-0.012475533,-0.0033330347,-0.018252794,-0.027772069,0.01851042,-0.0024377848,0.006691832,0.012939259,0.006250648,0.0040865904,0.032512385,0.0072650495,-0.03903032,0.01174774,-0.015998567,0.015225689,-0.027153768,-0.014208067,-0.01742839,-0.012900616,-0.008237587,0.008102334,0.009010465,0.005922175,0.012604346,0.00037617402,0.016024329,0.022284638,-0.004930315,-0.036608636,0.003065748,-0.014852132,0.018407369,-0.00066620443,-0.025376149,0.015019588,0.0040576076,0.007187762,0.023276499,0.02489954,0.0010458,-0.012288754,-0.017415509,-0.014092135,0.013158241,0.01970838,-0.027617494,-0.012977904,0.02936935,0.01821415,0.023328023,-0.011374182,-0.0051847207,0.00029345197,-0.019502278,0.0045793,-0.0014459252,-0.050237045,-0.018072456,-0.002049736,0.010594864,-0.0008928347,0.0045664185,0.0035230338,-0.015663654,-0.0007616065,-0.009718936,0.01124537,0.015096877,-0.0035198135,-0.03635101,0.021215491,-0.007979961,0.020700239,-0.014839251,0.0016536361,-0.024474459,0.027231054,-0.01883245,0.014465693,-0.014968064,0.006839967,0.0074904724,-0.018896857,-0.00527811,0.026458178,0.017904999,0.008765721,0.037149653,-0.0048047225,-0.0077287764,-0.036119148,-0.004836926,0.000965292,-0.011683334,-0.034135427,-0.0077803014,0.010923337,-0.0072714905,0.0038804899,-0.011032828,0.018149743,-0.025054116,0.029446637,-0.011174522,-0.009635208,-0.0292663,0.027205292,-0.005036586,0.00013434787,0.009300294,-0.011000625,-0.009615886,-0.0068142046,0.023366667,-0.0045760795,-0.01374434,-0.017956523,0.019244652,0.012320957,-0.034805257,-0.017209409,-0.014980945,-0.0053618387,-0.0030432057,0.0007825386,-0.0091972435,0.0029707483,0.0067562386,-0.0054616686,-0.009944359,-0.00587387,0.029189011,-0.0122501105,0.004965739,-0.010446729,-0.010498255,-0.00497862,0.005445567,-0.0054230248,-0.021395829,-0.009995884,0.0025762587,0.011284013,0.0114321485,-0.00013092627,-0.00016876508,0.009809106,0.013679934,0.005039806,-0.008862331,-0.0149423005,-0.0102599505,0.039880484,-0.017995168,0.008778602,-0.023624294,0.006282851,0.006524375,-0.03248662,-0.0030673582,0.03207442,-0.010755881,0.01681009,-5.0543982e-05,-0.0027565968,0.019978886,0.008514536,-0.008314875,-0.017750423,-0.024422932,0.015547722,0.0035165932,0.0058996323,-0.003226764,-0.019283297]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40c4544a-a5da-11ee-8347-739441ee452a', 'Politics', 'this article is about Democrats', '[-0.0016561444,-0.0042147674,0.006202141,-0.026114278,-0.016270218,0.014183637,-0.014810892,0.007808681,-0.0183568,-0.023758871,0.020661002,0.0183568,-0.018177586,0.009844058,-0.014273245,0.006579774,0.031490747,-0.01938089,0.032156404,-0.023080412,-0.004182765,0.006544571,-0.0069894097,0.0043395786,-0.0035747117,0.014964505,0.038096122,-0.03177237,-0.008103106,-0.0063109505,0.00435878,-0.021390665,-0.016833467,-0.027394388,0.0011617013,-0.005674095,0.0069190036,-0.009536832,0.009696846,-0.01113057,0.013377166,-0.0019425694,-0.006797393,-0.022043522,0.0024978179,-0.00034683023,0.031593155,-0.018305596,-0.008992784,0.012250668,0.03392296,0.024014894,-0.04278133,0.004829221,0.0035235072,-0.011885837,-0.001640143,-0.0033474918,-0.020033747,-0.0128779225,0.010836145,0.008096706,-0.017358314,0.0064293607,-0.036611192,-0.013377166,-0.0003140274,0.010714535,0.00024502137,-0.0036387173,0.03725125,0.021237051,-0.0005608489,-0.013492377,0.014734085,-0.021518676,-0.023003606,-0.013812404,-0.00481322,-0.004563598,0.010215291,-0.011431397,-0.017217502,0.0055780862,0.016871871,0.0063269516,-0.01502851,0.017652739,0.009677644,-0.010266495,0.011642615,0.010842546,0.015860584,0.014759687,-0.024808563,0.031695563,0.011937041,0.027599206,0.017985567,-0.03520307,0.024040496,0.030927496,-0.035484694,-0.017511927,-0.04943791,-0.0046628066,-0.00023422042,-0.004061154,0.03568951,-0.022043522,-0.007936692,-0.021774698,0.016347025,-0.026395902,-0.020609798,-0.009460025,-0.019329686,-0.018894447,0.011905038,-0.027343184,0.022837192,0.019662514,0.0007348641,-0.0069574066,0.012141859,-0.030210635,-0.019483298,-0.0083399275,0.0011184976,0.014426858,0.023541253,0.0073926444,0.00951763,-0.012033049,-0.0024802163,0.015642963,0.002454614,0.001675346,-0.008960782,-0.024526939,-0.008058303,0.010970556,-0.015578958,-0.029493771,0.0057989056,0.0067141857,-0.0025730245,0.022325147,0.0074822525,-0.008205515,0.011335389,-0.014414057,0.022657976,0.015988594,-0.012858721,0.02329803,0.005069242,0.0048004184,0.023566855,-0.006499767,-0.026779935,-0.032719653,0.0070662163,-0.0030194633,0.017947165,0.03487024,0.003929943,0.029954612,0.009146398,0.012468287,-0.022299545,0.016257418,-0.013940415,0.011386593,-0.003750727,0.030773884,-0.018510414,0.0023458046,-0.037225645,-0.005542883,-0.0151693225,0.03361573,0.03817293,0.03807052,0.0026002268,0.033078086,0.012033049,-0.017153496,-0.00040723552,0.0010112881,0.01799837,0.030261839,0.017511927,-0.0071622245,-0.6713929,-0.02259397,0.005562085,0.020225763,0.004608402,0.0030322643,0.011021761,0.014490863,-0.027829627,0.014004421,-0.0017793551,-0.010618526,0.0019633712,-0.005818107,-0.002681834,-0.0019521703,0.015758174,-0.011981845,0.0018033573,0.005219655,-0.018369602,-0.00676539,0.011252182,-0.010810543,0.017934363,0.013313161,0.014170836,-0.00401635,-0.0014585272,-0.0024578143,-0.021032235,0.021275455,-0.015783776,-0.004966833,0.024386127,0.027317582,-0.003613115,0.003817933,0.004393983,0.021467471,-0.020507388,-0.0067717903,-0.00032942873,0.01077214,-0.014170836,-0.0043043755,0.015617362,-0.016039798,0.02729198,0.01938089,0.0049828347,0.023899684,-0.004000349,0.02017456,0.0028594492,0.014734085,0.0026546314,-0.0048100194,0.01593739,0.0037411263,-0.0015233328,0.009933666,-0.031465143,-0.013838007,0.004416385,-0.009536832,-0.008173512,0.007514255,0.010906551,-0.02660072,-0.015898986,0.013709996,-0.014849295,-0.01123298,0.014746886,-0.0046180026,0.02570464,-0.015412544,-0.008007098,0.009728848,-0.0035171066,-0.005904515,-0.0140300235,-0.013953216,0.032386824,-0.000906479,-0.030671475,0.0002110184,0.004537996,0.003987548,0.0062917485,0.01708949,0.009658442,0.0009592837,0.0029410564,0.008499941,0.00088727736,0.0072454317,0.009799254,0.026165482,0.0072326306,-0.0029346559,0.025807051,0.005882113,0.019700918,0.017767949,-0.000137712,0.037072033,0.016129406,-0.021518676,0.013338763,-0.014209239,-0.028290467,-8.2707214e-05,-0.018190386,-0.033794947,0.027548002,-0.002270598,-0.003945944,-0.0117386235,0.021633886,-0.0015353339,-0.004678808,-0.022619572,-0.013313161,0.028956125,-0.018510414,-0.008659955,-0.004864424,-0.020379378,0.010170487,0.016654253,0.025064586,0.0029666587,0.020238565,0.01445246,0.0013897212,0.0054404745,0.009818456,-0.0076550674,-0.00412836,-0.007213429,-0.0015889385,0.012775514,-0.010535318,-0.03177237,-0.023272429,-0.01984173,-0.030466657,0.0060837306,-0.0013825205,-0.014823693,-0.004419585,0.017844755,-0.02590946,0.00060725294,0.008000698,0.005056441,-0.0068613985,-0.0010968957,-0.0028706503,0.020008145,-0.016705457,-0.012922727,-0.010880949,0.016539043,-0.006618177,-0.015220528,-0.0035331082,-0.014298847,0.003337891,0.0044355867,0.01043291,-0.018344,0.011309786,0.0042243684,-0.021019433,-0.012468287,0.0052932617,0.009888862,0.0031458742,-0.018664027,-0.03993948,-0.002145787,0.0074950536,-0.009255207,0.0057188985,0.029749794,0.012481089,0.029109739,-0.011450599,0.019905737,0.0060965316,0.0054276735,-0.0062533454,0.0050244383,-0.0033986964,0.0012809117,0.02798324,0.007949493,0.032156404,0.0031986788,0.024501337,-0.016270218,0.011988245,-0.036892816,0.01422204,-0.034793433,0.009050389,0.0105929235,0.014887698,-0.016372629,-0.020917024,-0.017793551,-0.0065669725,0.021019433,-0.01984173,0.0066117765,-0.015719771,-0.012487489,0.004781217,0.003981147,0.0029106538,0.0037827299,-0.009543233,-0.0024994179,0.009088793,0.008051902,9.86086e-05,-0.04096357,-0.023502849,0.013594786,-0.009082392,0.018433608,0.0073222383,-0.018804839,0.014542068,-0.011796229,0.02615268,0.006854998,-0.0029314556,0.028264865,-0.00031822774,0.0043907827,0.0024610145,-0.027343184,0.02788083,0.008378331,-0.002510619,-0.001570537,-0.015578958,-0.0012345077,0.016078202,0.025371812,0.011860235,-0.01410683,0.018177586,0.006810194,0.017614337,0.0240917,0.006810194,0.0025026181,0.020123355,0.0036483181,0.009383218,-0.021710694,-0.012244267,0.005459676,-0.012257068,-0.020737808,-0.025051784,0.017396716,0.018369602,-0.03348772,-0.0073030367,0.009402419,-0.012359478,0.011072965,0.008858372,0.0069126026,-0.007808681,-0.022376351,0.0064709643,0.023528451,-0.019700918,-0.025448618,-0.015783776,-0.013095542,-0.012724309,0.03085069,-0.013697194,0.041706037,0.011405795,0.008051902,-0.0059909225,0.0048228204,0.03233562,0.017166296,0.012263469,-0.017358314,0.018612823,0.00013041137,0.0054084715,-0.002776242,0.018408006,-0.007181426,-0.002132986,-0.02030257,0.013402768,-0.016219014,0.009088793,-0.015374141,-0.004573199,0.008282322,-0.02443733,-0.002625829,-0.018100778,0.008896776,0.033794947,0.0013609186,0.0071174204,-0.016782263,-0.0030562666,0.008512742,0.14204119,0.013774001,-0.006467764,0.033257302,-0.0103241,-0.02076341,-0.007251832,-0.01616781,0.007546258,-0.017281506,-0.011245781,0.010503316,0.0017217501,-0.0100168735,0.021582682,0.023566855,-0.013722797,-0.020443382,0.0017553531,-0.0068613985,-0.0031154717,-0.013812404,-0.008576748,0.021710694,-0.009139997,-0.008429535,0.026549514,0.02213313,0.008115908,0.019790526,-0.021825904,-0.0013497177,-0.016692655,-0.01674386,-0.018523214,0.0100296745,0.004586,0.0007616664,0.01799837,0.015847782,0.003990748,0.01020889,0.0005748501,-0.025679039,0.0111881755,-0.04449668,-0.018638425,0.030927496,0.012941929,0.00090727914,0.014017222,0.00039383434,-0.02775282,-0.011533806,0.010932153,0.009568835,-0.004217968,0.023643661,-0.0075974623,-0.03773769,0.009780053,-0.03517747,-0.009300011,-0.0057252995,0.028239263,-0.028264865,-0.0018417606,0.0006456563,-0.01273071,-0.005766903,0.0011937041,-0.035638306,-0.01273071,-0.0019073663,0.016910275,-0.0061509362,0.02992901,0.0043171765,0.013210752,0.021019433,0.0027602408,-0.031721167,-0.007527056,-0.02397649,-0.009920865,-0.01353078,-0.014426858,0.01743512,-0.015463748,0.02397649,-0.0054436745,0.017332712,-0.004573199,-0.003693122,0.008423135,0.019982543,0.02076341,0.00596212,-0.0024402128,0.0028002441,0.0046180026,-0.024475735,-0.021377863,-0.004803619,-0.005664494,0.0016185411,0.018203188,0.007815082,0.012948329,0.00894158,0.01996974,-0.014362852,-0.01422204,-0.008295123,0.004531595,0.023938088,-0.004899627,0.019240078,-0.0026562316,0.0010056878,-0.0034403,-0.019355288,0.010138484,0.025640637,-0.018561618,0.0054436745,-0.0055716857,-0.019547304,-0.004678808,-0.010746537,0.008173512,0.011437797,0.005411672,-0.0030850691,-0.017537529,0.0075974623,-0.0076870704,0.033871755,-0.014183637,-0.00069366046,-0.0056004883,0.010714535,0.008583148,-0.046032812,0.02086582,-0.030236237,-0.0051108454,-0.01330036,-0.0031618758,0.018907249,0.008384732,-0.016718257,-0.0037987311,0.012673105,0.003003462,-0.008954381,0.020033747,-0.004576399,0.012365879,0.02854649,0.032182008,-0.011136971,0.004185965,0.021096239,0.001078494,-0.00096648425,0.0036419176,0.017575933,-0.02372047,-0.00081487105,0.018728033,0.0066565806,0.0072646337,0.0036067145,0.016001396,0.0068998015,0.024718955,0.006701384,-0.028469682,-0.016359827,-0.0069702077,-0.01938089,-0.0018993656,0.007955894,-0.041117184,-0.012871522,0.014759687,0.013274757,0.015054112,0.0052836607,0.02247876,-0.008179913,0.012020248,0.025295006,-0.01422204,-0.03991388,-0.0062213424,-0.01112417,0.0012577097,0.029007329,0.018087978,0.00096808444,-0.0082887225,-0.0026354298,0.02475736,0.017243104,-0.0123402765,-0.028520888,0.0094536245,-0.027676014,0.017383916,-0.031951588,-0.03807052,-0.04562318,0.007866286,0.013364365,-0.022286743,0.02844408,0.009197602,-0.05432794,-0.017063888,-0.0060485275,-0.0018017571,-0.0008040701,0.00665018,0.0011088967,-0.0071174204,-0.016948678,0.0015409343,0.005805306,-0.026127078,0.030543463,0.013569184,-0.006486966,-0.005744501,0.0027890431,0.016129406,0.013063539,-0.025090188,0.028392876,-0.003529908,0.009325613,-0.00470441,-0.02432212,-0.011072965,0.029314557,0.017767949,0.0037795296,-0.012833119,-0.013812404,-0.012513091,-0.015950192,-0.012666704,0.007072617,-0.013351564,-0.0010816943,-0.0016689455,0.0023570056,-0.003475503,-0.0014481263,-0.018971255,0.016155008,-0.013159548,0.01077214,-0.0059653204,0.009696846,-0.024142906,-0.011117769,-0.01065693,0.023656463,-0.011482601,0.0006160537,0.013197951,0.006822995,0.007251832,-0.025960663,-0.007840684,-0.010618526,-0.026447106,-0.014119632,0.020008145,-0.01811358,-0.02214593,0.006938205,-0.011104968,-0.00076766696,-0.015130919,-0.0140300235,0.012557895,0.026933549,-0.017486325,-0.009210403,-0.038915392,-0.001616141,0.012826718,-0.021710694,0.009236005,0.035638306,-0.03589433,0.014849295,-0.040400323,0.003965146,-0.024475735,0.007143023,-0.0036963222,-0.016129406,0.011687419,-0.0077574765,-0.026779935,-0.012762713,-0.0036451179,0.0041155587,-0.015399743,0.00026822338,-0.01755033,0.008928779,-0.009677644,0.008416734,-0.007386244,0.026907947,-0.0019217676,-0.01560456,0.012557895,0.0055684857,0.016372629,-0.0014585272,0.010797742,0.007987897,-0.012813917,-0.0036771207,-0.01330036,0.040861163,-0.019803327,-0.0075398576,-0.012525892,-0.0063365526,-0.018830443,-0.002156988,-0.0052228556,-0.010413708,0.021505876,0.005674095,0.0010800941,-0.020059349,-0.008493541,-0.032950073,-0.03471663,-0.013159548,-0.0073798434,-0.01962411,-0.008563947,0.014068427,0.019342486,-0.008269521,-0.01824159,0.0010624926,-0.023106014,-0.010810543,0.0035971138,0.02086582,0.0052900612,-0.0063365526,-0.0012089054,-0.0007712673,0.013223553,0.011777027,-0.034102175,-0.017844755,0.0106057245,-0.017447922,-0.0010144885,0.016334224,-0.003542709,-0.0031026707,0.012705108,-0.00062885485,0.015130919,0.020968229,-0.010887349,0.0005816507,-0.032412425,-0.025487022,-0.032489233,0.0076998714,-0.00183376,-0.04104038,0.0040675546,0.016577445,0.004208367,-0.01570697,0.0151821235,-0.0015353339,-0.018612823,0.018536016,-0.021045035,-0.0217875,-0.025551029,-0.011092167,0.0010424909,0.026703129,-0.009575235,0.036406375,-0.0067589893,-0.01215466,-0.03236122,0.002958658,0.011489002,-0.022094727,0.0029154543,0.00049404305,0.023874082,-0.0036419176,-0.016193412,-0.00014801291,0.020801814,-0.010746537,-0.003929943,-0.014081228,0.00012631102,-0.00263863,-0.038096122,-0.0012345077,-0.01731991,-0.0034499008,-0.011040963,-0.010957755,-0.010170487,-0.0022161934,0.0048356215,-0.006963807,-0.020315371,0.0044387872,0.0060389265,1.2782365e-06,-0.034204584,0.025154194,0.21976957,-0.0023586056,0.018036773,0.022849992,0.0068806,0.017614337,0.02076341,0.020020945,-0.033206094,0.0051108454,0.020699404,0.011898638,-0.0076422663,0.008570347,-3.2727854e-05,-0.016039798,-0.02053299,-0.031951588,-0.015335738,-0.02821366,-0.005654893,-0.0063813566,-0.0062693465,0.00034082972,0.0026802337,0.014644477,-0.0032642847,-0.0029986615,-0.007213429,0.034588616,-0.016910275,-0.016231816,0.015258931,-0.006848597,-0.01238508,0.008410334,-0.020904223,-0.0061765388,0.007258233,0.005056441,-0.007949493,0.022875594,0.0020113755,0.00665018,-0.012372279,0.047005698,0.00332509,-0.006976608,-0.005232456,0.020392178,-0.018484812,-0.0024626148,0.00974805,0.029160943,-0.00390114,0.013197951,0.00642296,0.026651924,-0.0074822525,0.028392876,0.0055844868,0.039990686,-0.01582218,0.025231,-0.0031746768,0.03615035,-0.007872687,0.026754333,-0.0006156537,-0.027778422,-0.0028130454,-0.016014196,-0.011777027,-0.034844637,-0.011309786,-0.020853018,0.026447106,0.02992901,0.035459094,0.0014993307,-0.016820667,0.008109507,-0.0058245077,-0.0059909225,0.013709996,-0.035535898,0.02453974,-0.0003968346,-0.010240893,-0.0029490571,0.0033442916,-0.001388121,-0.018856045,0.010759338,0.0024866168,0.011111369,0.00055684854,0.027548002,-0.032975674,0.0017585533,-0.031516347,0.06697544,0.031951588,0.02317002,-0.017140694,0.009370417,-0.010740137,0.035151865,-0.020072151,-0.034998253,0.0059781214,0.0021889908,0.008947981,0.0016233416,0.017409518,0.006032526,0.011028161,-0.009351215,-0.002131386,-0.003542709,-0.022273943,-0.0240789,-0.006045327,-0.023323635,0.004883626,-0.0018721633,-0.01847201,0.008237518,-0.014862096,-0.032310016,0.025487022,-0.0036643196,-0.0055364827,0.013505178,-0.014977306,0.00079086894,0.01399162,0.014580471,0.00081287086,-0.0034018967,0.0015521353,0.0077574765,-0.0021633885,-0.016423833,0.0032658847,0.019419294,0.017716745,0.012442685,-0.02477016,-0.007885488,-0.01857442,-0.0068998015,0.01020249,-0.019816129,0.00025902258,-0.014887698,-0.02844408,-0.007994297,-0.024219712,0.033308506,-0.012653903,0.018728033,0.01892005,-0.0025522225,-0.00065285695,0.0008800767,-0.16272779,0.023874082,0.004976434,-0.016654253,-0.0061989403,0.0076870704,0.015655765,-0.0021777898,0.013953216,0.01158501,0.0019969742,0.01731991,-0.026203886,0.014094029,0.011360991,0.0072198296,-0.040425926,0.013101943,0.0045347954,0.0034915044,0.022849992,0.005053241,0.008186314,-0.029877806,0.006435761,0.012487489,-0.006925404,0.026523912,-0.0015273332,-0.015002908,-0.008979983,0.020725008,0.02432212,0.022619572,0.0013497177,0.020187361,-0.002534621,-0.012551495,-0.015796578,0.013799603,0.01433725,-0.005629291,0.034819037,-0.014874897,0.007283835,-0.0010848946,0.009856859,0.005539683,0.012506691,0.0057509015,0.009428022,-0.022414755,0.011693819,-0.016769463,0.032745257,0.03338531,0.0021841906,0.010650529,-0.0064197597,0.018971255,0.0024098102,-0.032463633,0.014439659,0.0015745373,-0.0063941577,-0.019816129,-0.0031362735,0.008346328,-0.025269404,0.0018561619,-0.016782263,-0.006688583,0.0030898694,-0.021953914,0.023669263,-0.0100296745,-0.033564527,0.014094029,0.017972767,-0.00412836,0.009204003,0.014401256,-0.0036163153,-0.008531944,0.008621552,0.023106014,-0.019918537,0.0053700684,-0.00826312,-0.02131386,-4.9754337e-05,-0.04508553,-0.0057188985,-0.026703129,0.005747701,0.00561969,0.009357616,-0.0014473262,0.004755615,-0.022645175,-0.00094808266,-0.01273071,-0.0146188745,0.01065693,0.010669731,0.011821831,0.015617362,0.01995694,0.028828114,0.021608284,-0.011917839,0.022517163,0.0022209936,0.0058309087,0.0032498834,-0.008019899,0.030466657,-0.009261607,0.008410334,-0.00883277,0.058014657,-0.002878651,-0.008346328,0.005482078,0.016654253,-0.010490514,-0.07757477,-0.026677527,0.026754333,0.015194925,-0.011079366,0.004345979,-0.0038147327,0.019649714,-0.016987082,0.022081926,0.012660304,-0.018664027,0.01870243,-0.011962643,0.024488535,0.0026322296,-0.032284416,-0.025947863,0.0014985306,0.027112763,-0.021825904,-0.012429884,-0.0028354472,-0.018087978,0.012551495,0.012929128,-0.026651924,0.04562318,0.011284184,0.0002854249,0.0011793028,-0.01502851,0.008135109,-0.010567321,0.015745373,-0.0021985918,-0.020456184,-0.01743512,0.026575116,-0.034332592,-0.019163271,-0.009210403,-0.040451527,-0.016935878,0.010004072,-0.01857442,-0.02477016,-0.0016689455,0.02214593,-0.0321308,-0.021825904,0.00836553,-0.0017505527,0.0061989403,-0.008704759,0.0028834515,0.0026322296,0.0145932725,-0.014055626,-0.012084254,0.0005008437,0.010925753,-0.0027922434,0.026011867,0.030594667,-0.031669963,-0.022414755,-0.00470441,-0.0038627367,-0.03282206,-0.010733736,0.011290585,-0.022875594,0.03773769,-0.011136971,-0.013441172,-0.0309531,-0.0006864599,0.025448618,0.021825904,-0.019432094,-0.005206854,0.023758871,0.0030066622,0.022069125,0.025141392,0.023784474,0.022005118,0.021608284,-0.009402419,-0.009901663,0.037584078,0.007610264,-0.014183637,-0.0050276383,0.018792039,0.00035743116,-0.0032834862,0.015642963,0.0039139413,-0.015540555,-0.016820667,-0.07957174,0.00076886703,-0.020609798,-0.00028742506,-0.009370417,-0.0047876174,-0.010458512,-0.012417083,0.0022946,0.009728848,0.0018209588,-0.0057413005,-0.0009368817,-0.010042476,-0.020840216,-0.024258114,0.02854649,-0.0008520743,0.004851623,0.021173047,-0.0036483181,0.0031474745,0.038121723,0.0114634,-0.031618755,0.00034903042,-0.02455254,0.01237868,-0.02649831,-0.005926917,-0.009543233,-0.010970556,-0.0073286393,0.008826369,-0.004230769,-0.0019809727,0.0055332826,0.010688932,0.009492028,0.016231816,-0.0031282727,-0.045367155,0.0024130105,-0.019816129,0.0076422663,-0.00060845306,-0.019764924,0.010784941,0.0067141857,0.011245781,0.027906433,0.02040498,-0.0013937216,-0.010400907,-0.009914464,-0.010330501,0.017537529,0.028623296,-0.030031418,-0.024360524,0.018062375,0.017588735,0.017972767,0.00366752,-0.013709996,0.0061573368,-0.020789012,-7.1506234e-05,-0.002741039,-0.042346094,-0.01273711,-0.011284184,0.0015897386,-0.011264983,0.011636214,0.009421621,0.002605027,-0.000996887,-0.0057413005,0.005606889,0.01422204,0.00240661,-0.027394388,0.02214593,-0.006499767,0.016603047,-0.01616781,0.012436285,-0.014951704,0.02282439,-0.023707667,0.0053572673,-0.0056836954,0.01560456,0.0010040875,-0.021019433,-0.0034915044,0.021416267,0.014247643,0.012621901,0.041219596,-0.01008728,-0.011981845,-0.021621086,-0.011104968,-0.0029890607,-0.0044995924,-0.029365761,-0.0053956704,0.008397533,-0.0123530775,0.0126155,-0.015374141,0.016999882,-0.02590946,0.034588616,-0.0013353165,-0.0052132546,-0.021198649,0.026651924,-0.010292098,0.003152275,0.002581025,-0.012705108,0.008909577,-0.007360642,0.025768647,-0.011821831,-0.013863609,-0.0062565454,0.025231,0.0029186546,-0.030671475,-0.012692307,-0.003907541,-0.01972652,0.010068078,0.003062667,-0.00837193,0.0010232893,0.009882462,0.008083905,-0.013274757,-0.014158035,0.032770857,-0.0040899566,0.014362852,-0.004586,-0.0043299776,0.015924588,0.01502851,-0.022529965,-0.018100778,-0.019342486,0.012929128,0.0020785814,0.0021601883,0.00036903218,0.010311299,0.01767834,0.021595484,0.007719073,0.008154311,-0.010471313,-0.0064613633,0.03520307,-0.017601535,0.0013961217,-0.03830094,-0.008359129,0.002454614,-0.027624808,-0.0088519715,0.022632373,-0.00321148,0.014785289,0.00561649,-0.004864424,0.009338414,-0.0022913998,0.008730361,-0.026549514,-0.022849992,0.0100360755,-0.00871756,0.0042819735,-0.004051553,-0.01285232]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40cf6c04-a5da-11ee-8347-cf406927081f', 'Politics', 'this article is about Elections', '[0.017709384,-0.00027086458,-0.0025587028,-0.032710124,-0.02018586,0.009473811,-0.0093770735,-0.0014260698,-0.027189644,-0.021759454,0.01660013,0.014059162,-0.030646393,0.009164251,-0.015632756,0.020933963,0.040732875,-0.02494534,0.020663098,-0.012259847,-0.0064975256,0.009364176,0.0062653557,0.005613991,0.005368923,0.014716975,0.024764761,-0.030930156,-0.008093691,-0.0071779117,0.004588575,-0.007487471,-0.022185098,-0.030414224,-0.008422599,0.00029121974,0.0049594017,-0.010957117,0.0049658506,-0.006623284,0.029485544,0.0024377813,-0.010834583,-0.011311821,0.0010004254,0.0071779117,0.029562935,-0.018315606,-0.0066297334,0.018844437,0.018986318,0.020933963,-0.047697965,-0.00038110485,-0.006049309,-0.0139946705,-0.002637705,-0.006210538,-0.010125176,0.008054997,0.0077067423,0.004891685,-0.016767807,0.0049819737,-0.02570634,-0.01522001,-0.011602033,0.018315606,-0.0147040775,0.00073238235,0.025035627,0.020921065,-0.0029343662,-0.006668428,0.023113778,-0.020237453,-0.011853551,-0.008171082,-0.0016816176,-0.001900889,0.012298542,-0.015091027,-0.0023571667,0.015658552,0.0011294086,0.0010512125,0.0047691516,0.005485008,0.006623284,-0.013388449,0.016316367,0.008564481,0.0019492577,0.002966612,-0.037121348,0.02362971,-0.009357726,0.032632735,0.032168392,-0.035444565,0.020843675,0.021436997,-0.028866425,-0.008196878,-0.034748055,0.007880869,-0.015361891,0.0069328435,0.034515887,-0.013736704,-0.015013637,-0.00042443513,0.014420315,-0.02508722,-0.0016638824,-0.010273507,-0.015000738,-0.02767978,0.0013035358,-0.019773114,0.024571287,0.016484044,-0.0005139172,-0.007893768,0.02094686,-0.02324276,-0.022069015,-0.0016912913,-0.0047078845,0.0035470363,0.0033600107,0.0061428216,-0.00079324626,0.0108861765,-0.00014248605,0.013633518,0.0039501083,0.015619857,-0.014923349,-0.031446088,-0.0068941484,0.015606959,-0.00058727636,-0.031033343,0.0013373939,0.014936247,0.006990886,0.019515147,0.0123952795,0.009422218,0.026260966,-0.011363414,0.031549275,0.02822151,-0.0044241217,0.0033019683,-0.01017032,-0.0039017398,0.0022088361,-0.018792843,-0.01101516,-0.029459748,0.0018863784,0.008138835,0.020830777,0.028634256,0.017619096,0.025861118,0.010260608,0.012898314,-0.0033664599,0.0141752465,-0.028711647,0.021127438,0.017760977,0.0359347,-0.020585708,-0.002297512,-0.03632165,0.00034140225,-0.024197236,0.030156257,0.04305457,0.024648678,-0.010389592,0.024584185,0.00058727636,-0.01422684,0.0012213091,0.0073455893,0.020250352,0.02088237,0.005062588,0.015103925,-0.6839202,-0.024764761,-0.0031471886,0.033690397,-0.007926013,-0.0063524195,0.015877824,0.0071714623,-0.029562935,0.0063362964,-0.009364176,-0.011273126,0.010157422,-0.009454464,-0.013736704,-0.0076487,0.008757954,-0.025977204,0.0160584,-0.0058171395,-0.019012114,0.010183219,-0.0053979442,-0.004253219,0.012949907,-0.004604698,0.010215464,-0.0010721723,0.0035083413,0.0038050024,-0.013375551,0.020908166,-0.020456726,0.00022894506,0.024261728,0.022378573,-0.0042177485,0.0013680274,0.002576438,0.033767786,-0.014110755,-0.003663121,-0.00795181,0.013685111,-0.015000738,0.0017041897,0.0045789015,-0.02806673,0.02027615,0.0037050406,-0.017141858,0.014807264,-0.003579282,0.026751103,0.016264774,0.0073842844,0.007984056,-0.0059267753,0.02049542,0.0039017398,0.0016050339,0.009493159,-0.02646734,-0.0071779117,-0.00045748707,-0.013607721,-0.0034986676,0.017322436,0.009280337,-0.026286762,-0.0099059045,0.028118324,-0.014136552,-0.009338379,0.025654746,-0.019631233,0.01629057,-0.020933963,-0.0056075417,0.007932463,-0.0043080365,0.00060420536,-0.015271603,-0.00077067426,0.022649439,-0.023874778,-0.012453321,-0.0042112996,0.0034019302,0.013710908,0.012375932,0.013646415,0.01086038,0.014433213,0.0046240455,0.0024539041,-0.0027973216,0.0113247195,0.032219987,0.018122131,0.009828515,-0.010589516,0.016780706,-0.0030972075,0.01957964,0.025241999,-0.00382435,0.029691918,0.022572048,-0.014213941,0.017773876,-0.0115052955,-0.026106186,0.009260989,-0.028040934,-0.03632165,0.014936247,0.022584947,0.003055288,-0.0057300758,0.021694964,-0.012833822,0.0028021587,-0.023810286,-0.011337617,0.03175565,-0.027370222,-0.0056462367,-0.014162349,-0.021411201,0.0072166063,-0.0071263183,0.02845368,0.003524464,0.013659314,0.0099510485,0.0020476072,0.0042564436,0.018160826,-0.011976084,-0.010009091,-0.008880489,0.0038179008,-0.0007622097,-0.017644893,-0.02027615,-0.029150188,-0.020688895,-0.03456748,0.01047988,-0.0035438116,-0.001973442,0.0028311799,0.01024771,-0.01483306,0.0028537519,-0.0073326915,0.018483283,-0.012343686,-0.005807466,0.0023039612,0.023874778,-0.031007545,-0.013272365,-0.017025774,0.029047001,-0.006478178,0.0003418053,0.018315606,-0.025732135,0.026196474,0.017348232,0.012408177,-0.00772609,-0.0013801196,0.00887404,-0.02454549,-0.0068038604,0.016574332,0.005191571,-0.0028247307,-0.0057010544,-0.04380267,-0.00235233,0.008525785,0.0016348612,0.0050367913,0.017606199,-0.007777683,0.0123049915,-0.017386926,0.013981772,0.002597398,-0.007829276,-0.0055011306,-0.004962626,0.00048529904,0.0041113375,0.025113016,0.004804622,0.038101617,0.010531473,0.023977965,-0.018470384,0.014536399,-0.02814412,0.006594263,-0.02493244,0.0049078083,0.016019706,0.014059162,-0.025241999,-0.029072799,-0.008706362,-0.011679423,0.016496943,-0.02669951,0.007203708,-0.023333048,-0.002095976,-0.004807846,0.0062460084,-0.0040952144,0.00879665,-0.0073778355,0.02148859,0.019321674,0.00027509686,-0.008732159,-0.04091345,-0.023294354,0.028324697,-0.012272745,0.017257944,0.019450657,-0.00948671,0.026751103,-0.0060364106,0.013020848,0.006707123,0.0108861765,0.041584164,0.006126699,0.0042790156,0.0063524195,-0.032632735,0.02170786,0.011950287,0.0047078845,0.0037953288,-0.0056881565,0.0006517679,0.011763262,0.007938912,0.010202566,-0.011060304,0.0029246926,0.0028972838,0.01238883,0.023126677,-0.0053528002,0.0015856865,0.010944219,-0.0004075061,0.013040195,-0.018328503,-0.010770092,-0.012672593,-0.010608863,-0.03632165,-0.02071469,0.0065878136,0.026441542,-0.015606959,-0.0035438116,0.0068103094,-0.0016654948,0.0038211255,0.012188906,0.004849766,-0.008383904,-0.020353539,0.012356584,0.03013046,-0.0129692545,-0.030775376,-0.010770092,-0.018212419,-0.020701794,0.023913473,0.0035825067,0.029485544,0.01414945,-0.015078128,-0.015645655,0.00887404,0.036270056,0.008699913,0.017889962,-0.015439281,0.019489352,0.013491636,0.010847482,-0.0023942494,0.02088237,0.00064531877,-0.01062821,-0.020031082,0.018496182,-0.016200282,0.0015316748,-0.009389972,-0.008222675,0.0072295046,-0.0040661935,0.005768771,-0.020327741,0.01850908,0.045015115,-0.009828515,-0.0011132857,-0.003032716,-0.0026070715,0.010641108,0.13517432,0.012227601,-0.0011801957,0.034748055,-0.01897342,-0.034361105,-0.019231385,-0.015387688,0.004137134,-0.004079092,-0.016909689,0.014871756,0.0029569385,-0.013130483,0.027138053,0.016471146,-0.014046264,-0.013698009,-0.0028408535,-0.00015367131,0.015800433,-0.021527285,-0.009132006,0.0139946705,0.002715095,-0.019786013,0.027499205,0.018625164,-0.014407416,-0.003456748,-0.033535615,-0.008087243,-0.0003500683,-0.019631233,-0.025886916,0.021346709,0.012788678,0.015993908,0.019373266,0.0014309067,0.0002626016,0.006797411,0.00803565,-0.010073583,0.008022751,-0.044241216,0.00087063614,0.036063686,0.0034825446,0.0008859529,0.010815236,0.00047643145,-0.036889177,-0.0012551672,0.0014268759,0.01881864,-0.015723044,0.030078867,-0.010183219,-0.031188123,0.0037566337,-0.030697986,-0.01086038,0.0021104866,0.022004522,-0.025745034,-0.0038727187,-0.0070102336,-0.0206502,-0.00035812974,-0.0036824686,-0.03557355,-0.024700271,-0.013136933,0.010054235,-0.00092142326,0.03830799,-0.00227494,0.001019773,0.006945742,-0.009538303,-0.013388449,-0.01093777,-0.037972637,-0.015142621,-0.00012364243,-0.011582686,0.014278433,-0.028531069,-0.0032310276,-3.4361914e-05,0.017503012,0.007448776,-0.0027795865,-0.0013575475,0.018767046,0.011479499,-0.001800927,0.0028876099,0.0013051481,-0.0013752826,-0.04253864,-0.01896052,-0.005256063,0.0008073538,0.006913496,0.029872494,0.0065652416,0.014484806,0.008177531,0.0071263183,-0.021462794,-0.0107056005,0.0020830776,0.00028416596,0.032787513,0.006362093,0.02729283,-0.015361891,0.008912735,-0.0013446492,-0.018986318,0.0026973598,0.015323197,-0.0027215441,-0.01973442,-0.00925454,-0.011466601,0.0043660793,-0.0014575095,0.018947622,0.02088237,0.003724388,-0.018521978,-0.018109232,-0.0012108291,-0.016638825,0.031110732,-0.008725709,0.0016155138,-0.007919565,0.0067587164,0.00543019,-0.028711647,0.019463556,-0.030182054,0.006371767,-0.0011334392,-0.01522001,0.0067329197,0.010299304,-0.007848624,-0.013401348,-0.0057397494,0.00041435834,-0.027034866,0.014549297,-0.0115955835,0.012827373,0.027576594,0.03763728,0.00055664283,-0.0046627405,0.0069263945,0.006471729,-0.0012253398,0.000752536,0.0066039367,-0.02806673,-0.00013120004,0.03044002,-0.0023571667,0.012272745,0.0022056117,0.01200188,0.0064427075,0.017490113,0.011988983,-0.028505273,-0.016161587,-0.023823185,-0.007893768,-0.0072553013,0.0062040887,-0.032323174,-0.005978368,-0.0015985847,0.011028058,0.00489491,0.0028956714,0.010183219,-0.021940032,0.019992385,-0.0014139776,-0.026248068,-0.029047001,-0.0037211634,-0.01942486,0.0015744003,0.030027274,0.008732159,0.014510603,-0.015026535,0.0036502227,0.0056946054,0.008828895,-0.011034507,-0.018779945,0.014420315,-0.032400563,0.005746199,-0.03449009,-0.02393927,-0.03601209,0.013607721,0.0056268894,-0.017786775,0.03294229,0.0083968025,-0.03990738,-0.011189287,-0.0160713,6.2123516e-05,0.011434355,0.004659516,0.007203708,-0.0014478357,-0.023358846,0.014188145,0.005855834,-0.02806673,0.025796628,0.0033245403,0.005168999,-0.019308776,0.0031294534,0.020792082,0.0030617372,-0.014123653,0.020534115,0.02095976,0.0071263183,-0.0010447634,-0.025835322,-0.014110755,0.026054593,0.013633518,0.0065200976,-0.01934747,-0.016380858,-0.021811048,-0.006707123,-0.019450657,0.005659135,-0.006194415,-0.012743534,-0.00092222943,0.007829276,-0.004956177,0.010183219,-0.004611147,0.015955213,-0.027112255,0.0007376223,0.008235573,-0.0024716393,0.0008133999,-0.0017751304,-0.0066877757,0.024971135,-0.0039339857,-0.0059009786,0.022649439,0.014962044,0.019321674,-0.011008711,-0.0075068185,-0.010054235,-0.009506057,-0.016406655,0.021940032,-0.014781468,-0.034748055,-0.016690418,-0.020701794,0.0013559352,-0.022997692,0.008938531,-0.01246622,0.021075845,-0.021204827,5.627897e-05,-0.023990864,-0.005210919,0.00695864,-0.012272745,0.001365609,0.03090436,-0.030801173,-0.0066813263,-0.0191282,0.017554605,-0.0074294284,0.0044724904,-0.0092867855,-0.012298542,0.019489352,-0.0015147456,-0.01162783,-0.0052657365,-0.0060686567,0.011511745,-0.009602794,0.007564861,-0.007687395,0.015877824,-0.00516255,0.010518575,-0.023139574,0.023152472,-0.010770092,-0.022507558,0.022649439,0.0020927514,0.016625926,-0.0037340617,0.010157422,0.01919269,-0.024300423,-0.011692321,-0.0031907202,0.04016535,-0.0045982487,-0.016006807,-0.0068425555,-0.0036663457,-0.007964709,0.01422684,-0.017141858,0.00749392,0.013594822,-0.004869113,0.00749392,0.0042209732,-0.015426383,-0.026299661,-0.0313687,-0.01652274,-0.00978982,-0.020031082,-0.0033858074,0.008732159,0.028350493,-0.0077131917,-0.013594822,-0.0023620035,-0.024364915,-0.00036760193,0.016767807,0.018186621,0.004159706,0.0054366393,0.011847101,0.0024152093,0.008125938,0.0046917615,-0.037663076,-0.020611504,-0.003160087,-0.011711668,0.0019041136,0.012453321,-0.0073004453,0.015168416,0.009828515,-0.002157243,0.024713168,0.016999977,-0.019179793,-0.015091027,-0.018018944,-0.027009068,-0.019231385,0.00810659,-0.0024393934,-0.05192861,0.009506057,0.0110216085,-0.008429048,-0.022688134,0.020998454,-0.0026651141,-0.009841413,0.01238883,-0.020585708,-0.022688134,-0.015078128,-0.014162349,0.017889962,0.01545218,-0.0014542849,0.012517814,-0.010054235,-0.005104508,-0.026286762,0.0030681863,-0.008132387,-0.008067895,0.015813332,7.663412e-05,0.018341402,-0.0052657365,-0.017464317,-0.0076293526,0.0123049915,-0.0070940726,-0.0074681235,-0.015052332,0.002692523,0.02224959,-0.03165246,-0.0038146763,0.00027025997,0.0108861765,-0.025757933,-0.01055727,-0.00826137,-0.017025774,-0.0012148599,-0.012614551,-0.018534876,0.007874421,-0.00074124994,0.010105829,-0.03113653,0.027267035,0.19842766,-0.019695725,0.002297512,0.02324276,0.006262131,0.021204827,0.024442304,0.018896028,-0.019824708,-0.00033374387,-0.00021282217,0.01307889,-0.018225318,0.0036502227,-0.0040339474,-0.021346709,-0.024661576,-0.036450636,-0.00871281,-0.02569344,0.010466982,-0.00887404,-0.014059162,0.0025877242,0.0074294284,-0.000630002,0.00013180464,0.002692523,-0.0022120608,0.026003,-0.01742562,-0.01537479,0.013981772,-0.009499608,-0.026196474,0.016806502,-0.0010181606,-0.0021008127,0.013207873,0.0045176344,0.0043499563,0.01804474,0.018702555,0.004956177,-0.0075132675,0.03549616,-0.011769711,0.0076164543,-0.016329264,0.007158564,-0.03456748,0.0048852363,0.0019186242,0.010699151,-0.0003696173,0.004227422,0.018135028,0.019540945,-0.0051335287,0.00585261,0.011040957,0.038565956,-0.018173724,0.011215083,-0.015813332,0.033535615,-0.021991625,0.005978368,0.0029504893,-0.024480999,0.0024006986,-0.0039501083,-0.019399064,-0.020392234,-0.01804474,-0.015400587,0.03523819,0.031188123,0.033071276,-0.0010810399,-0.0131498305,0.007403632,0.011350516,-0.02654473,0.00023176656,-0.027705578,0.022971896,-0.0036727947,-0.011402109,-0.0010641109,0.0023507176,-0.007539064,-0.008306514,0.00011850325,0.018225318,0.016238976,0.010686253,0.03931406,-0.03864335,0.01055727,-0.028582662,0.060002953,0.03245216,0.01522001,-0.014497705,-0.0020443827,-0.010866829,0.031600866,-0.012962805,-0.017012876,0.0039210874,0.005659135,0.015555366,-0.005210919,0.022120608,0.0036308751,-0.0012027677,-0.012653246,0.018160826,-0.030311037,-0.019089503,-0.017103164,0.0025603152,-0.007455225,0.0052496134,-0.0009762411,-0.03755989,0.02494534,-0.012208254,-0.019876301,0.028350493,0.0007815572,-0.02050832,0.007816378,-0.002073404,-0.0074423268,0.014523501,0.0073455893,0.008383904,-0.0024152093,0.008699913,0.0076615983,-0.022520455,-0.021320913,-0.014188145,0.019721521,0.025113016,0.016122892,-0.030078867,-0.006939293,-0.01721925,-0.014355823,0.008732159,-0.014278433,0.017064469,-0.013053093,-0.029511342,-0.019244283,-0.010363795,0.040062163,-0.0072939964,0.007842175,0.009538303,-0.018986318,-0.0061138007,0.010544371,-0.16530478,0.008745057,0.010279956,-0.027241237,0.0010624985,0.0113247195,0.01965703,-0.00016173277,-0.0014091408,0.007119869,0.015091027,0.026828492,-0.04573742,0.0055333767,0.0008279105,-0.006829657,-0.022507558,0.0070876232,1.3011678e-05,0.007984056,0.020082675,-0.010970016,0.024300423,-0.016032605,0.004949728,0.004756253,-0.0032729472,0.015503773,-7.9455625e-05,-0.015890723,-0.02110164,0.013814094,0.02806673,0.023513626,-0.008661218,0.0030569003,-0.008042098,-0.004459592,-0.00925454,0.020817878,0.025499966,0.00588808,0.0148846535,-0.0068232077,0.023191167,-0.0056720334,0.004595024,-0.00871926,0.014059162,-0.0028134447,0.011208635,-0.0115955835,0.014962044,-0.02608039,0.041171417,0.026647916,0.01276933,-0.0029633876,-0.0051980205,0.021746557,-0.00902237,-0.016883893,0.02553866,-0.0044015497,-0.005536601,0.0005586582,0.0021378954,0.009357726,-0.025306491,0.0048626643,-0.0055398257,-0.011485948,0.015400587,-0.020172963,0.025151711,-0.014974942,-0.031394497,0.010847482,0.011531092,0.0036115278,0.005788118,0.036992364,-0.010163871,-0.0029246926,0.024893746,0.018921826,-0.022146404,0.0029875718,-0.019631233,-0.009893007,0.008151734,-0.044602368,-0.0030504512,-0.013607721,0.0013188525,0.006110576,0.0050077704,-0.0031375147,0.007435878,-0.015710145,-0.0010584679,-0.010447634,-0.016084196,0.010492778,0.019721521,-0.0040274984,0.013581924,0.029124392,0.033380836,0.0160713,-0.015258705,0.025280695,-0.0059719193,0.011576236,0.00030351343,0.0055720713,0.023462033,-0.011834202,0.016496943,-0.0007622097,0.036992364,-0.0146137895,-0.0016832299,-0.0014002732,0.013491636,-0.014691179,-0.0665037,-0.034773853,0.027421815,0.017902859,-0.009164251,0.0010705601,0.0025796627,0.022301184,-0.024339117,0.021179032,0.002179815,-0.021295115,0.013749602,-0.0016316366,0.019373266,-0.011408558,-0.01721925,-0.022701032,0.003066574,0.020134268,-0.017077368,-0.022314083,-0.0013914056,-0.015477976,-0.0048207445,0.020392234,-0.029227579,0.037069753,0.017012876,-0.0007605974,-0.020624403,-0.019631233,0.003089146,-0.016638825,0.008196878,-0.008861141,-0.021901336,-0.02210771,0.012111517,-0.016651724,-0.019863402,-0.012330788,-0.010486329,-0.022701032,0.011711668,-0.015890723,-0.029691918,0.0052818595,0.019605437,-0.035805717,-0.01881864,0.0013228833,-0.0071327672,0.010080032,-0.0010294466,-0.00037949256,-0.014394518,0.0128789665,-0.016006807,-0.0019041136,-1.3855611e-05,-0.0009238417,0.009325481,0.01919269,0.021346709,-0.022688134,-0.008196878,-0.012782229,0.0024877621,-0.012820924,-0.023462033,0.008570929,-0.025874017,0.029949885,-0.014974942,-0.0044241217,-0.022830015,-0.010692702,0.041197214,0.02279132,-0.017322436,-0.02500983,0.025835322,-0.001254361,0.011840652,0.024700271,0.025358085,0.013530331,0.014381619,-0.011666524,0.009132006,0.03565094,0.031394497,-0.007919565,-0.0051432024,0.03245216,-0.005168999,-0.004785274,0.016019706,-0.0054721097,-0.01047988,-0.018341402,-0.09003023,0.014523501,-0.0160713,-0.0029343662,-0.019824708,-0.0044015497,0.0049142577,-0.015619857,-0.014330027,0.015503773,0.003250375,-0.0042564436,-0.008293616,-0.014020467,-0.017864164,-0.025822423,0.014755671,-0.0048207445,0.0036083031,0.022701032,0.009918803,0.008087243,0.03044002,0.005959021,-0.045634232,0.0006420942,-0.011666524,0.011208635,-0.02500983,-0.009338379,-0.006065432,-0.011131245,-0.016780706,0.010821685,-0.001889603,0.0002916228,0.011273126,0.012872517,0.02417144,0.027886154,-0.016238976,-0.020224556,-0.00037042346,-0.016729113,0.0067264703,-0.0032584365,-0.012937008,0.009093311,0.0064749536,0.013685111,0.020663098,0.021952929,-0.0010109054,-0.0125307115,-0.0024393934,-0.0037598584,0.030465817,0.026802696,-0.012582305,-0.01200833,0.03701816,0.029743511,0.012504915,0.0027021966,0.009673735,0.018405894,-0.027782967,-0.0025183957,-0.005636563,-0.051309492,-0.0023765143,-0.0139946705,0.010389592,0.011002261,0.0139946705,0.0116407275,0.01247267,0.0050819353,-0.001382538,-0.002658665,0.0072681997,0.009422218,-0.015981011,0.022559151,-0.006668428,0.022920303,-0.01407206,0.013311059,-0.02614488,0.026854288,-0.008280717,0.012685492,-0.012859618,0.008990125,-0.0042241975,-0.013427144,-0.0019944017,0.020547014,0.010331549,0.019386165,0.03090436,0.00657814,-0.006816759,-0.033097073,-0.013040195,0.0015316748,-0.014420315,-0.020250352,-0.008280717,0.0006997335,-0.011801957,0.0074681235,0.0004756253,0.01430423,-0.023294354,0.015748842,0.0071908096,-0.007577759,-0.03694077,0.017451419,-0.011047405,-0.0010165484,0.016509842,-0.0061911903,0.0063330717,-0.009757574,0.011047405,-0.012382381,-0.009319032,-0.028866425,0.023965066,0.015439281,-0.030259443,-0.015207112,-0.0010810399,-0.029124392,0.0062073134,-1.3251002e-05,-0.017296638,0.023487829,0.005230266,0.0049658506,0.011060304,-0.0034051547,0.021320913,-0.0099510485,0.012872517,-0.016019706,-0.022159303,-0.0025232325,0.003227803,-0.020547014,-0.039030295,-0.020289047,0.013607721,-0.0017203125,0.008061446,-0.01131827,0.008964328,0.02455839,0.019721521,0.010112278,0.0014567033,-0.006023512,0.0023442684,0.04289979,-0.021449896,0.00079324626,-0.031523477,0.003769532,-0.0042790156,-0.031394497,-0.010808786,0.022984795,-0.011537542,0.019179793,-0.0020750163,0.0029633876,0.011827754,0.006187966,-0.0069973352,-0.018908927,-0.029150188,-0.01055727,-0.0021507938,0.0098607605,0.0004913451,-0.020224556]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40d07dc4-a5da-11ee-8347-ebca8e1aee7f', 'Politics', 'this article is about the healthcare', '[0.019669225,0.018314995,0.009433603,-0.03279081,-0.0009063819,0.010255345,-0.010360528,0.0039246418,-0.020905126,-0.013489723,0.020563282,0.013088713,-0.012483911,0.0043815305,-0.017342051,0.006380008,0.04759532,-0.026466679,0.01822296,-0.024967821,-0.010261919,0.009282402,-0.0038128847,0.015264687,0.0043650954,0.011484671,0.022601202,-0.034184486,-0.015093764,-0.00712615,0.008388346,-0.010064701,-0.030266415,-0.025572624,-0.0005456369,0.007566604,0.002051069,-0.0056831706,0.0075928997,-0.025520032,0.024270983,-0.00035150032,0.013305653,-9.075118e-05,-0.008710469,-0.009091758,0.033658568,-0.022298802,-0.013364818,0.006186077,0.010511729,0.014002491,-0.05093488,-6.301737e-05,0.014055082,-0.0143443355,0.0035499271,-0.008467234,-0.006284686,0.002271296,0.016355962,-0.0057817795,-0.019734966,0.0029434813,-0.021851774,-0.01822296,-0.011037644,0.016921319,-0.010071275,0.005298595,0.03644592,0.027058333,-0.005955989,-0.012911216,0.018748874,-0.020602725,-0.013949899,-0.009558507,-0.0026262887,0.011524116,0.01044599,-0.012760016,-0.0039312155,0.013095287,0.020957718,-0.0011241436,-0.0077178045,0.016290221,0.016263926,-0.010873295,0.02521763,-0.001157835,-0.010222475,0.011537263,-0.019695522,0.035920005,0.007842709,0.016868727,0.025690954,-0.037524045,0.0055681267,0.038102552,-0.045517955,-0.016277073,-0.048436783,0.0033724308,-0.008434364,0.0070669847,0.037313677,-0.016632067,-0.013055843,0.0016443066,-0.0005575522,-0.012004013,0.0073956815,-0.01957719,-0.013285931,-0.007145872,0.005107951,-0.018183516,0.020681612,0.027926093,0.010853574,0.009584803,0.023692477,-0.0143443355,-0.032317486,-0.002125026,-0.002912255,0.0021332433,0.0052657253,-0.009118054,0.006301121,0.009032592,0.009795169,0.013910456,0.005068507,0.009486195,-0.030844923,-0.024376167,0.000555087,0.017026503,-0.017263165,-0.0077178045,-0.012043457,0.018880354,0.020418655,0.016355962,0.008434364,0.014659884,0.014830807,-0.023245448,0.020103106,0.014410075,-0.012326136,0.016198186,-0.014265448,0.004135008,-0.003278752,-0.02174659,-0.019919036,-0.02832053,0.010472286,0.0060217283,0.014055082,0.027978685,0.007198463,0.027742023,0.016132446,0.023705624,-0.012976956,0.03649851,-0.009229811,0.007855858,0.01512006,0.024586532,-0.028688671,0.010590616,-0.039496228,-0.0032886132,-0.021983253,0.034263372,0.045833506,0.030713445,-0.012937512,0.021667704,0.020274028,-0.011090236,0.002491523,0.008598712,0.022732683,0.023140267,0.00039566896,0.009788595,-0.68032384,-0.029109403,0.013463427,0.023850251,0.017447235,0.008368624,0.021207528,0.013989342,-0.030529374,0.016763546,-0.0015670628,-0.0006352069,0.010925887,-0.00013147878,-0.011556985,-0.0035400663,0.02126012,-0.03189675,0.00994637,-0.0026624454,-0.0041481555,0.004683932,-0.008999723,-0.004670784,0.019011833,0.020063663,0.012490485,0.006600235,-0.0045886096,0.005518822,-0.01815722,0.011201993,-0.018499065,-0.00018828173,0.025520032,0.00821085,-0.0013049269,-0.008289738,0.008592139,0.020037366,-0.025191335,-0.0064325994,-0.0013041052,0.011412359,-0.02441561,-0.0047299494,0.020103106,-0.010787834,0.014028787,0.02261435,-0.0034348832,0.019327382,0.007244481,0.022035845,4.018834e-06,0.017407792,0.009164072,-0.012260397,0.022390837,0.009164072,-0.0045623137,0.012174935,-0.026598157,-0.025835581,0.008112241,-0.0046280534,-0.0031949345,0.015961524,-0.000162705,-0.012050031,-0.002335392,0.022469724,-0.008592139,-0.0067777312,0.028346825,0.004111999,0.003964085,-0.021720296,0.0075008646,0.011182271,0.0022565047,-0.007658639,-0.018656839,-0.005739049,0.031213064,-0.014620441,-0.02423154,-0.0011594786,0.0069815232,-0.0065903743,0.01920905,0.014528406,0.003336274,-0.0028941766,0.00227787,-0.004542592,0.0045360182,0.009321846,0.036919244,0.009775448,0.0062551033,-0.0059757107,0.015185799,0.020089958,0.0013205401,0.0207605,-0.018656839,0.032317486,0.02453394,-0.0272687,0.01698706,-0.00088255137,-0.01902498,0.0057850666,-0.005801501,-0.030161234,0.025730398,0.011622724,-0.010248771,-0.0030519513,0.034184486,0.0043420866,0.015908932,-0.013660646,0.0077309525,0.036156666,-0.01475192,-0.0051671164,0.00070710934,-0.02274583,0.011280879,-0.0075205863,0.02745277,0.004545879,0.031502318,-0.0057719187,0.00929555,0.0017601722,0.013187322,-0.017157981,-0.0072839246,-0.019103868,0.0063569993,0.006061172,-0.012464189,-0.033053767,-0.0260328,-0.023258597,-0.018485917,0.011320324,-0.008000484,-0.02062902,-0.0050882287,0.01803889,-0.012615389,0.0057719187,0.0031144037,0.0034743268,-0.018735727,-0.008901114,0.006682409,0.03179157,-0.020300325,-0.013594906,-0.01149782,0.0042040343,-0.013910456,0.008776208,0.014699328,-0.022219915,0.014107673,0.0063438513,0.011096809,-0.017420938,-0.0029615597,0.01573801,-0.012378727,-0.004453844,0.0038260326,0.0063241296,-0.0130624175,-0.019432565,-0.023337483,0.0068631927,0.005617431,-0.022141026,0.006465469,0.012589093,0.01678984,0.014594145,-0.01623763,0.016447997,-0.0014027143,0.01785482,-0.0032425956,-0.013778976,-0.016776692,0.006143346,0.02281157,-0.014567849,0.030187529,0.009722856,0.020155698,-0.024770603,0.036787763,-0.02007681,0.013476576,-0.018630544,0.0070538367,0.0003831374,0.012030309,-0.011668742,-0.014278596,-0.018512214,-0.009026019,-0.007362812,-0.017631305,0.0005780958,-0.00997924,-0.0009359646,-0.0008809079,0.010912739,-0.00036629167,-0.00307496,-0.015974673,0.015422462,0.017263165,0.006485191,0.0009072036,-0.028846445,-0.017933706,0.0119842915,0.002721611,0.011510967,0.0084014945,0.0057883533,0.010399972,-0.029635318,0.0139367515,0.00715902,0.0021463912,0.016000967,0.00824372,-0.0042664865,0.00070793106,-0.021654556,0.03073974,0.0029138986,-0.0016155456,-0.00023912704,-0.0069486536,0.0033543524,0.024113208,0.020655317,0.0054563694,-0.0037208495,0.0043585217,0.007027541,0.03247526,0.022824718,0.008552695,0.01803889,-0.0025506883,0.0068697664,0.018420178,-0.016263926,-0.021772888,-0.010492007,-0.011149401,-0.020655317,-0.019984774,0.017565565,0.01909072,-0.022627499,-0.0026279322,0.034500033,0.0054497956,-0.0050257766,0.019511452,0.015409313,-0.003566362,-0.027794614,0.013778976,0.023008788,-0.019774409,-0.029819388,-0.010117292,-0.0014709189,-0.023021935,0.017631305,-0.008914261,0.023771364,0.014291744,0.0011430436,-0.014857102,0.0012868486,0.037339974,0.009236384,0.007586326,-0.006922358,0.0024175663,-0.0060118674,0.00892741,-0.0073102205,0.011175697,-0.00035458183,-0.018919798,-0.020747352,0.005160542,-0.03024012,0.019472009,-0.022666942,0.0037175626,-0.0040528337,-0.0041645905,0.0109061655,-0.024113208,0.024008026,0.02441561,-0.011017922,0.003766867,-0.019879593,0.0017042938,0.0033790048,0.12916476,0.009532212,0.0037372843,0.03568334,-0.010031831,-0.016263926,0.0077243787,-0.01785482,0.0064523215,-0.009486195,-0.005597709,0.016277073,0.004618192,-0.0040495466,0.02268009,0.019406268,-0.011905404,-0.0067580095,-0.0038654762,-0.0018390595,0.023442667,-0.013253061,-0.0025178187,0.031397134,0.00574891,-0.018183516,0.023560999,0.018564804,0.008322607,-0.0051243855,-0.024547089,-0.00022289762,-0.021615112,0.005725901,-0.021523077,0.014659884,0.013029547,-0.00166485,0.02398173,0.0017486678,0.0068566184,0.020011071,-0.0004967433,-0.015185799,0.006350425,-0.042730603,-0.01685558,0.037497748,0.010242198,0.0008003771,0.015514497,-0.0007905162,-0.033369314,-0.018117776,0.026269462,0.019472009,-0.0023386788,0.023258597,-0.0076191956,-0.010123867,-0.006251816,-0.039128087,-0.017631305,-0.0044867136,0.0073233685,-0.027689433,-0.01044599,-0.0015013234,0.00090227317,-0.009387585,0.014567849,-0.028346825,-0.003566362,0.011162548,0.011951421,-0.018840909,0.025138743,-0.0008143467,0.0069880974,0.011951421,0.0033181957,-0.018946093,-0.006478617,-0.04033769,-0.0009934866,-0.02243028,-0.018262403,-0.0009104906,-0.014475814,0.029793093,0.0026230018,0.028872741,-0.01406823,0.0068566184,0.014396926,0.022022696,0.011550412,-0.0021168084,-0.011261158,-0.007362812,-0.007711231,-0.025257075,-0.013049269,0.005006055,0.009183793,0.00022577372,0.015080617,-0.0021299564,0.021680852,-0.012181509,0.025520032,-0.0148965465,-0.015961524,-0.0034841879,0.003040447,0.01567227,1.8938595e-06,0.0120829,-0.013923603,-0.0066035218,0.0061959377,-0.008237146,0.0005633044,0.008355477,-0.014055082,-0.0049436023,-0.008329181,-0.006593661,-0.010662929,-0.006738288,0.011767351,0.017881114,0.000599872,-0.012713999,-0.009972665,-0.00040594075,-0.02955643,0.0161193,-0.00032191759,-0.009381011,-0.015540793,0.018551657,0.0040626945,-0.026847968,0.02955643,-0.02950384,0.009532212,-0.007454847,-0.02503356,0.0046116184,0.00842779,-0.0024586532,-0.004891011,0.012345858,-0.008973427,-0.018420178,0.021615112,-0.013213618,0.0229299,0.03915438,0.038575877,-0.010248771,-0.001237544,0.021483634,0.0066594,-0.0020773648,0.0018653553,0.013082139,-0.024967821,-0.00023399114,0.016093003,0.005969137,0.008894539,0.0011372914,0.0042040343,-0.00049016933,0.0133188,-0.0010403258,-0.029793093,-0.018249255,-0.021654556,-0.021680852,-0.014002491,-0.001135648,-0.035367794,-0.006163068,0.00839492,0.0075534564,0.014304892,-0.015251539,0.0072576287,-0.009104906,0.020274028,0.001135648,-0.015698567,-0.026479827,-0.011044218,-0.009492768,0.005597709,0.01585634,0.022548612,0.014962286,-0.012878347,-0.013778976,0.009808317,0.024547089,-0.018275551,-0.02373192,0.014081378,-0.023035083,0.0043585217,-0.016461143,-0.023626737,-0.05156598,0.0074877166,0.0025589059,-0.020181993,0.02987198,0.008947131,-0.04906788,-0.0061532073,-0.010485433,-0.00929555,-0.0070801326,0.01093246,0.017999446,-0.015461905,-0.02863608,0.0075534564,0.009762299,-0.025007265,0.019800704,0.022325097,0.0008841948,-0.0011430436,0.005709466,0.028110163,0.0016582762,-0.046017576,0.015501348,0.00892741,0.010235623,-0.005643727,-0.024783751,-0.017802227,0.039049197,0.022154175,0.0012383658,-0.015777454,-0.012621963,-0.008066223,-0.008855096,-0.029109403,0.018433325,-0.0044078263,-0.009782022,-0.00939416,-8.4613785e-06,-0.0067448616,0.013778976,-0.011510967,0.017789079,-0.018209811,0.0173552,0.0117804995,-0.0036058056,0.010169884,-0.0042599128,-0.024060618,0.022351393,-0.00027898155,-0.008730191,0.02175974,-0.0017683896,0.009722856,-0.022732683,-0.0022630785,0.0017026502,-0.027163517,-0.01081413,0.013299079,-0.005837658,-0.036104076,-0.015172652,-0.0071064285,-0.0030453773,-0.0076257694,-0.0070801326,0.0027873502,0.023560999,-0.019905888,-0.005709466,-0.023534702,-0.0019360251,0.011261158,-0.022443429,-0.0015941802,0.02937236,-0.025875024,0.014331187,-0.018196663,0.018144073,-0.010722095,0.0016385544,0.00318343,-0.030581966,0.018446473,0.002867881,-0.036892947,-0.019721817,-0.011392636,0.01189883,0.0035269184,-0.003014151,0.00026912065,0.011155975,-0.005502387,-0.0045853225,-0.019971628,0.036051482,-0.00419746,-0.010064701,0.013489723,-0.018551657,0.009302124,-0.0130164,0.017644452,0.00045113658,-0.0065673655,-0.008335755,-0.010275067,0.033237837,-0.021365302,-0.006491765,-0.024113208,-0.01149782,-0.0161193,0.017157981,0.0008209207,0.0018144072,0.01555394,-0.0049436023,0.0060085803,-0.0017996158,-0.02558577,-0.025375405,-0.03868106,-0.0037635802,0.0005563196,-0.014107673,0.0013821707,0.010919313,0.016461143,-0.02398173,-0.025178187,0.0026164278,-0.015843194,-0.015054321,0.017210573,0.020195141,0.0041580168,0.012372154,0.003780015,0.011333471,0.016684657,0.003773441,-0.03260674,-0.022364542,0.016618919,-0.02174659,0.0038556154,0.020037366,-0.016750397,0.0066462527,0.007822988,0.001266305,0.008164832,0.03229119,-0.03394782,-0.013949899,-0.010281641,-0.015106913,-0.021457337,0.012740294,-0.010005536,-0.032343782,0.014988582,0.02156252,0.0052821604,-0.021799183,0.004766106,-0.007454847,-0.010143588,0.01989274,-0.007711231,-0.0136737935,-0.012240674,-0.021312712,0.006264964,0.015225243,-0.001049365,0.012069752,-0.011188844,-0.0049994807,-0.013239914,0.003033873,0.0029714205,-0.027636841,0.016106151,-0.0050192024,0.007882153,0.008749913,-0.03184416,-0.0014101099,0.0028498026,-0.011543837,-0.002213774,-0.013568611,0.0019195903,-0.006922358,-0.040127326,0.00164595,-0.017144833,0.00039957225,-0.0027955677,-0.01878832,3.6875692e-05,-0.008795931,-0.0033987265,-0.010590616,-0.015422462,-0.001049365,0.021536225,-0.005617431,-0.027189812,0.037971072,0.2007944,-0.015527644,-0.0019360251,0.009808317,0.022456577,0.01648744,0.0139630465,0.011741055,-0.026821671,0.006830323,0.0070801326,0.011294028,-0.012437893,0.0006278112,-0.010058127,-0.015277835,-0.021141788,-0.022561759,-0.021102345,-0.018722579,-0.013193896,0.0004536018,0.008408069,-0.0055582654,-0.0014109317,0.004647775,-9.131613e-05,0.0031686388,0.020366063,0.029898275,-0.012247249,-0.0176576,0.0045064352,-0.0006080894,-0.018696284,0.0039312155,-0.02261435,-0.008046501,0.011879108,0.0065607913,4.1780466e-05,0.018564804,-0.0014750276,0.0043453737,0.0042894953,0.041363224,-0.006810601,0.0067514353,-0.0037208495,0.023495259,-0.04138952,-0.0060907546,0.015645975,0.01897239,-0.005739049,0.01034738,0.0019541034,0.015895786,-0.015830046,0.027794614,0.026861116,0.028609784,-0.02863608,0.022035845,-0.013108435,0.028846445,-0.012457615,0.014712476,-0.0040692682,-0.017276311,-0.0034217353,0.0074022557,-0.015948376,-0.029030515,-0.021523077,-0.013857864,0.037497748,0.027978685,0.03202823,0.0036288144,-0.013226765,-0.0033954396,0.0025983495,-0.018144073,0.006623244,-0.033474497,0.02014255,0.023087675,-0.022114731,0.011596429,0.0022318524,-0.007836135,-0.019853296,0.0038621894,0.0019376685,0.029661614,0.0020247733,0.033921525,-0.035920005,-0.0034250224,-0.021431042,0.06616013,0.010794409,0.0023468963,8.3047344e-05,-0.008191128,-0.006797453,0.036367033,-0.017683897,-0.017815376,0.0009786952,-0.0052525774,0.010386824,-0.0031275516,0.030792331,0.009755726,0.0039213547,-0.015751159,0.011024496,-0.022259358,-0.0032294476,-0.009269254,0.010544598,-0.008105667,0.0030700297,0.0021266693,-0.016816137,-0.001170983,-0.008184554,-0.02832053,0.004983046,-0.0014240795,-0.013647498,0.009144349,-0.021062901,-0.0036189535,0.006810601,0.002606567,-0.0071721678,0.011261158,0.00073587033,0.0029434813,-0.020786796,-0.018512214,0.004299356,0.0027988546,0.019248495,0.019866444,-0.009229811,-0.014791363,-0.027216109,-0.0055911355,-0.006491765,-0.03229119,0.011773925,-0.015435609,-0.02186492,-0.010853574,0.008335755,0.02690056,-0.010301363,0.0080530755,0.030687148,-0.015383018,-0.004785828,0.008651304,-0.16902913,0.020063663,-0.00074285513,-0.0058606667,0.009091758,0.009617673,0.005762058,-0.002003408,0.014646737,0.0076389173,0.010518303,0.016645214,-0.02156252,0.021181231,0.007027541,-0.01555394,-0.045754615,0.014620441,0.0077966917,0.012602242,0.027610544,0.007987336,0.010123867,-0.026427235,0.0069683758,-0.005949415,-0.011787073,0.023837104,-0.00039320375,-0.0040331115,-0.019379973,0.010912739,0.023284893,0.027479066,-0.004927167,0.005739049,-0.0036485363,0.00037142757,-0.009354715,0.01139921,0.029293474,0.0028711678,0.01995848,-0.012667981,-0.007915023,-0.004838419,0.02206214,-0.007882153,0.018683136,-0.004756245,0.005725901,-0.013292505,-0.0010945608,-0.011616151,0.027005741,0.014817659,0.0022614351,0.0037701542,-0.015567088,0.027794614,-0.0054629436,-0.02745277,0.0019919036,0.004437409,-0.0039673722,-0.009328419,-0.0023945575,-0.0079347445,-0.024310427,0.0052394294,-0.032448962,-0.01772334,0.013463427,-0.011294028,0.034841876,-0.0033510656,-0.029793093,0.007803266,0.016960762,-0.00049715413,0.020497542,0.0131676,-0.008473808,-0.018209811,0.015146356,0.02553318,-0.015383018,0.008736765,-0.006031589,-0.018354438,0.0008098271,-0.053695936,-0.0021611825,-0.021667704,0.0036945539,0.0132070435,0.0006134307,-0.011142827,-0.001145509,-0.033369314,-0.004746384,0.0037635802,-0.025940765,0.010682651,0.014094526,0.002644367,0.015264687,0.020116255,0.029346064,0.019248495,-0.0074022557,0.039627705,0.0071853157,0.013108435,-0.008868244,0.013568611,0.0029303334,-0.01710539,0.012707424,-0.021838626,0.036919244,-0.021641407,0.0041481555,0.0049205935,0.008848522,-0.000304661,-0.08903743,-0.034447443,0.036945537,0.013581758,-0.010084422,-4.1523672e-05,-0.008664452,0.006261677,-0.024888935,0.015501348,-0.0010197823,-0.026479827,-0.0029500553,-0.007356238,0.029740501,-0.0048942976,-0.020063663,-0.03723479,0.012694277,0.020642169,-0.016211335,-0.015527644,-0.0008242076,-0.016171891,0.005624005,0.014199709,-0.028425714,0.03189675,0.015225243,0.008217424,-0.012911216,-0.02187807,0.009032592,-0.014712476,0.0111691225,-0.013463427,-0.012069752,-0.010044979,0.009867483,-0.03371116,-0.012944086,-0.016842432,-0.025151892,-0.033264134,0.01678984,-0.020471247,-0.033316724,-0.005305169,0.022758977,-0.015422462,-0.01909072,-0.0023008788,-0.011616151,0.004683932,-0.0034973356,-0.010327659,-0.006606809,0.0057817795,-0.012792885,-0.027557952,-0.0065509304,-0.004871289,-0.0068763406,0.030766036,0.02087883,-0.01772334,-0.0057817795,-0.0026295758,0.0009630821,-0.0132662095,-0.021904366,0.0031883605,-0.01934053,0.01939312,-0.012345858,-0.022101583,-0.027216109,-0.013042696,0.029740501,0.0077572484,-0.008263442,-0.007336516,0.023784513,-0.0060217283,0.007060411,0.03210712,0.020116255,0.007836135,0.012786312,-0.0070735584,0.007060411,0.037971072,0.013805272,-0.010728668,0.017434087,0.026374644,-0.0050126286,0.0030026468,-0.0034348832,0.003678119,-0.009505916,-0.011550412,-0.07341775,0.008776208,-0.01013044,-0.007875579,-0.008177981,0.0004494931,0.0026295758,0.0001018447,-0.004079129,0.010833852,-0.02020829,0.014278596,0.002383053,0.005410352,-0.0074154036,-0.021693999,0.02528337,0.012957234,0.016132446,0.017697044,0.012891495,0.002654228,0.015054321,0.0035532143,-0.025230778,0.008736765,-0.01573801,0.015106913,-0.022377688,-0.013430558,-0.014107673,-0.0063602864,-0.007244481,0.012181509,0.007678361,0.0068631927,0.0060118674,0.00017277134,0.01890665,0.037892185,-0.020957718,-0.03804996,-0.011280879,-0.021509929,0.0039312155,-0.008421216,-0.029161993,0.03129195,0.004874576,0.007481143,0.032895993,0.023521554,-0.02187807,-0.024967821,-0.016355962,-0.0052657253,0.008362051,0.0378133,-0.007461421,-0.026532419,0.018091481,0.020063663,0.010123867,0.0011792004,0.0069355057,-0.0029960729,-0.014278596,0.0014166839,0.004029825,-0.049488615,-0.008848522,-0.014212857,-0.0077703963,0.003881911,0.010137014,0.005801501,-0.017328903,0.0010953826,0.003684693,0.023626737,0.015146356,0.01146495,-0.020536985,0.03315895,-0.0051309597,0.02813646,-0.03260674,0.022075288,-0.010860148,0.023337483,-0.017197425,0.0106432075,-0.00799391,0.014383779,-0.0043815305,-0.003088108,0.007684935,0.0069486536,0.007941319,0.010478859,0.04133693,-0.00048195192,-0.013686941,-0.035762228,-0.016066708,-0.018538509,-0.009183793,-0.0408899,-0.002430714,0.015106913,-0.011701612,0.014673032,-0.0048942976,0.005157255,-0.028714966,0.007908449,0.0013312227,-0.01106394,-0.0322386,0.022035845,-0.017683897,-0.010511729,0.009459899,-0.009229811,0.0142260045,0.008539547,0.021509929,-0.0057850666,-0.010202753,-0.013213618,0.0036551103,0.008000484,-0.04157359,-0.017946854,-0.009584803,-0.029819388,0.008703896,-0.008408069,-0.01989274,0.02398173,-0.0039377897,0.00796104,-0.012615389,0.003895059,0.018617395,-0.0048811496,0.0128586255,-0.02014255,0.0028514462,0.016697805,-0.004503148,-0.004450557,-0.014541553,-0.009341568,0.015014878,0.009466472,0.0070867063,-0.003766867,0.013949899,0.012286692,0.024691716,-0.010893017,-0.006915784,-0.018762022,-0.0024192096,0.03247526,-0.017867967,0.008250293,-0.026874263,-0.007750674,-0.008598712,-0.027873503,-0.016211335,0.037077017,-0.006084181,0.0049304543,0.01044599,0.003132482,0.012556224,-0.0125956675,0.022325097,-0.02937236,-0.020681612,-0.022758977,-0.017618157,0.01648744,-0.0019130163,-0.018393882]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40dac7ac-a5da-11ee-8347-d3304eebc61f', 'Politics', 'this article is about War', '[0.009149011,-0.0019438362,-0.008334013,-0.019901728,-0.007453289,0.006809178,-0.011686021,0.004604082,-0.021584304,-0.022925109,0.008596916,0.020690436,-0.01109449,0.008971551,-0.0013260151,0.023740105,0.03927765,-0.0037102131,0.017193832,-0.025330666,-0.0067368792,0.01506432,0.004242591,0.001953695,0.007893651,0.013020252,0.021242531,-0.035781045,-0.008366875,-0.023608655,0.0110682,-0.02113737,-0.017851088,-0.030444123,-0.0034308792,-0.0057838573,0.009628808,-0.02062471,-0.005987607,-0.018731812,0.021071644,0.0005829044,0.009549937,-0.0038975312,-0.018915843,-0.011804327,0.026553163,-0.007959377,0.007703047,0.01083816,0.03010235,0.023030268,-0.047716822,-0.008419456,-0.0002546869,-0.014249322,0.0006712232,0.015918754,-0.0027752656,-0.017364718,0.007479579,0.014236176,-0.014446499,0.0057017,-0.02257019,-0.026277116,-0.01608964,0.009076713,-0.014367628,-0.0024564962,0.042064417,0.03217928,0.009819413,-0.014643676,0.014893433,-0.023450913,-0.008386593,-0.0030545997,-0.0069800643,0.0015930255,0.011166789,-0.010180904,-0.013618356,0.016615445,0.02272793,0.0067007304,0.012527309,0.012941381,0.010693564,-0.016694317,-0.0009842416,-0.0036083383,-0.003033239,0.010470097,-0.028577514,0.02502833,-0.0011452695,0.023884702,0.012343278,-0.04734876,0.017693346,0.017969394,-0.025435828,-0.014499079,-0.03819975,0.0034013025,-0.001965197,-0.0038580957,0.037936848,-0.020913903,-0.019126166,-0.0067697424,0.022346722,-0.020506404,0.0053566406,-0.011916061,-0.003986261,-0.030444123,0.0005430582,-0.034519114,0.036543462,0.02100592,-0.00402241,0.0036017657,0.025448972,-0.008938689,-0.026001068,0.002104864,-0.011850336,-0.0015461959,0.004870271,0.019375922,0.011166789,-0.0015207273,-0.0042261593,0.018613504,-0.012172391,0.011193079,-0.015366658,-0.022478173,0.0056063985,0.026224535,-0.0072363946,-0.03225815,-0.010752717,0.018061409,0.007709619,0.013960129,-0.0025057904,0.0132963,0.013670936,-0.020664146,0.04198555,0.017298993,-0.00827486,0.022911962,-0.014696256,-0.004604082,-0.000981777,0.002288896,-0.006605428,-0.013868113,0.01303997,0.009319898,0.015563834,0.033598956,0.013960129,0.031548314,-0.0037496486,0.018692376,-0.0022626056,0.0133948885,-0.015051175,0.015616415,0.0123695675,0.036780074,0.008702076,-0.00048554825,-0.038594104,-0.00516275,-0.021912932,0.02159745,0.024449943,0.037358463,-0.012533882,0.015813593,-0.011679448,-0.005126601,-0.00488013,0.008623206,0.017943103,0.028367192,0.007426999,0.009911428,-0.6742926,-0.031048799,-0.004811118,0.028945578,0.0034703144,-0.009799695,0.01711496,0.015300932,-0.02262277,0.019875437,-0.021860352,-0.01232356,-0.009990299,-0.018560924,-0.0075781676,-0.011469127,-0.0034703144,-0.034492824,-0.0014246035,0.0041177124,-0.008426028,0.00960909,-0.0024564962,-0.011758319,0.020651,-0.008255142,0.007617603,-0.008577198,0.0019011145,0.0059350263,-0.013421179,0.01555069,0.005100311,0.014196741,0.028078,0.0020128482,0.005258052,0.007952804,0.013007107,0.012993962,-0.005925168,-0.008439174,-0.0059021637,-0.0010631124,-0.020204065,0.000924267,0.018744957,-0.0225439,0.0072824024,-0.009839131,-0.0006083731,0.01662859,0.0032698512,0.017325282,0.008715222,0.011061627,0.01865294,-0.021820918,0.0058134343,0.012527309,-0.0071312333,0.028735256,-0.0044463403,-0.0070523624,0.0013712015,-0.0065857107,-0.018074555,0.020664146,-0.0018074554,-0.013079405,-0.009181874,0.025961634,-0.009648526,-0.013401461,0.012790212,0.006835468,0.015274642,-0.021991804,-0.0036050521,0.01081187,0.0035524715,-0.012382713,-0.029523963,-0.0029050738,0.03641201,-0.018403184,-0.014499079,0.0051693227,0.011232514,-0.0039566844,0.017785361,0.024305347,-0.009122721,0.0102794925,0.01209352,0.0049129925,0.010792152,0.0011814187,0.020821886,0.019757131,0.013138558,-0.00525148,0.01560327,-0.0030085917,0.009188446,0.007696474,-0.015761012,0.008656069,0.026947517,-0.015471819,0.022096965,0.011600578,-0.019559955,0.01911302,-0.001976699,-0.03004977,0.04308974,0.005264625,0.0015905608,-0.017614475,0.018284876,-0.00858377,0.01608964,-0.019270761,-0.0010557183,0.038672976,-0.020953339,-0.0074204262,-0.009451349,-0.025567278,0.028577514,0.007479579,0.028761545,-0.0021475856,0.013684081,0.0020982914,0.0073875636,0.004673094,0.022018094,-0.0034473105,-0.011475699,-0.0017285846,-0.0021689467,0.00932647,-0.002730901,-0.028998159,-0.022451883,-0.02515978,-0.029366221,0.021071644,0.017483024,-0.008537763,-0.0134737585,-0.01509061,-0.0070523624,0.0141178705,0.0031876941,0.0020506403,-0.014761982,-0.016391978,0.007479579,0.012777067,-0.02502833,-0.0014385702,-0.0020966483,0.0040322687,-0.0095367925,-0.0044364817,0.010562113,-0.018153425,0.021558015,0.01562956,-0.015537544,-0.013552629,-0.0008108902,0.00059522793,-0.009050422,-0.0026914654,0.013283155,0.015892463,-0.010292637,-0.012316988,-0.04737505,0.0077227643,-0.0018616791,-0.0013942054,0.0006297339,0.026632035,0.005451943,0.025869617,-0.01452537,0.009208164,-0.003067745,-0.00613549,-0.012908518,-0.003486746,-0.013762952,0.01616851,0.033572663,0.022662206,0.023805832,0.01457795,0.022412447,-0.01765391,0.027578484,-0.03720072,-0.005241621,-0.031285413,0.025817037,-0.0045876508,0.013618356,-0.007755627,-0.022583334,-0.00023702314,-0.0029445093,0.010884169,-0.011613723,-0.014407063,-0.026448002,-0.0020522836,-0.00020149021,0.0032222,-0.01598448,0.00678946,-0.03604395,0.00590545,0.02416075,0.0014484291,-0.0059021637,-0.039961196,-0.025094055,0.010765862,-0.016260527,0.015327223,0.004673094,-0.0075978856,0.012593036,-0.011212797,0.012474729,0.008925544,0.0036116247,0.02661889,0.0027161126,-0.010936749,0.018100845,-0.027788807,0.026290262,0.0032616355,-0.004745392,-0.0019044008,-0.01962568,0.003513036,0.011278522,-0.00025653545,0.0052186167,-0.02572502,0.005547245,-0.009333042,0.013723517,0.030996218,0.011285095,0.0056622652,0.00613549,0.00031712628,0.008656069,-0.008255142,-0.015156335,-0.0020259933,-0.00502144,-0.005037871,-0.021479143,0.003591907,0.03207412,-0.029629124,-0.0062143607,0.01716754,0.02159745,-0.013427751,0.0015264783,0.013644646,-0.0062537957,-0.028025419,0.015826738,0.040802486,-0.0195731,-0.0180877,-0.022373013,-0.008504899,-0.018232297,0.018442618,-0.011429691,0.023713816,0.029024448,0.0056918417,-0.009779978,0.008728366,0.035623305,0.0003810034,0.008577198,0.0023809117,0.011179933,0.013946984,0.019126166,0.0060434737,0.008596916,-0.016378833,-0.007880506,-0.031732347,0.001127195,-0.013552629,0.0102992095,-0.008452319,0.0007451646,0.006372102,-0.0043970463,0.014748837,-0.022741076,0.01506432,0.024463087,0.0026602459,0.01275735,-0.0064805495,-0.008649496,-0.0015190842,0.13933839,0.0018945419,0.0055406727,0.026632035,-0.0025090768,-0.028577514,-0.0134737585,-0.016299961,0.012060657,-0.015327223,-0.012448438,0.00091194344,0.0123498505,-0.014183596,0.02572502,0.007348128,-0.012901946,-0.009687961,-0.0015527685,-0.0074007087,0.02815687,-0.020637855,-0.026921228,0.025882762,-0.013230574,-0.03444024,0.03220557,0.023464058,-0.01257989,-0.005704987,-0.018679231,-0.0054946644,-0.004896561,-0.012783639,-0.0048472667,0.034782015,0.007939659,0.01668117,0.0073415553,-0.009839131,-0.0066415775,0.0068617584,0.0008367697,-0.018245442,0.011127353,-0.033861857,0.0048768437,0.03296799,0.0070720804,-0.0042491634,0.014249322,0.0043904735,-0.04038184,-0.024318492,-0.0030644585,0.006986637,-0.0038613821,0.04001378,0.0021771623,0.0004452913,0.008702076,-0.024265911,0.0037627937,0.009885138,-0.0011148714,-0.026526874,-0.007413854,-0.00062603684,-0.0035360402,-0.007913369,-0.0070523624,-0.028682675,-0.00390739,-0.016391978,0.01870552,-0.013999565,0.036385722,-0.005941599,-0.010010017,0.007617603,-0.006835468,-0.019888584,-0.0074598617,-0.04153861,-0.011252232,-0.0105818305,-0.017627621,0.019481083,-0.025015183,0.012047512,-0.0054322253,0.031548314,0.0038548096,0.005034585,0.013710371,0.016299961,-0.0023398332,0.004811118,0.014880287,0.007630748,0.00402241,-0.018758101,-0.026001068,0.0036181973,0.005987607,0.0030266664,0.01711496,0.011896343,0.014499079,0.008649496,0.0070523624,-0.019402213,-0.015077465,0.0052120443,0.00016852468,0.020256646,0.010818442,0.019743986,-0.008353731,-0.0025271513,-0.0059711756,-0.027105259,-0.0016382119,0.017693346,-0.00072092825,0.0018008829,-0.025567278,-0.020033179,0.0027062537,-0.003637915,-0.014683111,0.022018094,0.017693346,0.01460424,-0.0012389285,0.0066448636,-0.010752717,0.023832122,-0.00801853,0.008031675,-0.0134343235,-8.143819e-05,-0.006973492,-0.021860352,0.026487438,-0.029918317,-0.0058988775,0.0013859897,-0.017745927,0.0015026528,-0.010759289,-0.012113238,-0.006881476,0.0066317185,-0.0016242452,-0.03517637,0.0074927243,-0.005688555,0.003513036,0.030680735,0.03704298,-0.00781478,0.0027621207,0.0141178705,-0.001540445,-0.01360521,0.0092738895,0.010371508,-0.037621364,0.0027966266,0.05039843,0.010700136,0.00778849,0.0017729495,0.018127136,0.02070358,0.0024696414,0.018258587,-0.02275422,-0.0123695675,-0.0141178705,-0.0095762275,-0.0020506403,-0.00079979905,-0.037121847,-0.0031219686,0.0025978065,-0.0033322906,0.016299961,-0.008905826,0.016562864,-0.0064706905,0.02813058,-6.2285326e-05,-0.015853027,-0.023766397,-0.004216301,-0.0068420405,0.0040355553,0.018613504,0.00046583056,0.002755548,-0.01309255,0.002919862,0.009799695,0.025462119,-0.0055308137,-0.01765391,0.005787144,-0.029471382,-0.0002158677,-0.019822856,-0.0151826255,-0.02656631,0.01895528,0.00270954,-0.012658761,0.024818007,0.012073803,-0.05862728,-0.0041242847,-0.009793122,0.00502144,0.005405935,0.01860036,-0.00017304333,-0.0049951496,-0.028892998,0.019270761,0.0045547877,-0.025238652,0.02656631,0.018731812,-0.005938313,0.0026586028,-0.00590545,0.01962568,-0.0010959753,-0.017206976,0.029655416,-0.0042261593,0.007026072,-0.008163126,-0.02567244,-0.030391542,0.028998159,0.0141573055,0.010857878,-0.010437233,-0.020506404,-0.012113238,-0.005964603,-0.030785896,0.015498109,-0.015156335,-0.01009546,0.008978125,-0.0007669362,0.0074598617,0.0085509075,-0.008636351,0.018731812,-0.03404589,-0.00011265788,0.020322371,0.0023053272,0.0051364596,-0.009201592,-0.014735691,0.023437768,-0.0067828875,-0.0049129925,0.012770494,0.011981786,0.026040504,-0.0054322253,-0.0036576325,-0.024068734,-0.019178746,-0.018429473,0.011732029,-0.009740542,-0.029339932,-0.011219369,-0.018534634,-0.002045711,-0.005754281,-0.0009431631,-0.014761982,0.015235206,-0.022990834,0.0029970899,-0.03791056,-0.016023913,0.0130531145,-0.015800446,-0.0017663769,0.048768435,-0.03444024,0.0016751826,-0.011791182,0.017706491,-0.009254172,0.011429691,0.0021262248,-0.040513292,0.027263,-0.014775127,-0.019888584,-0.0040322687,-0.020637855,0.019283907,-0.011015619,-0.0037759389,0.0073415553,0.032047827,-0.015774157,-0.006615287,-0.018245442,0.021255676,-0.0036773502,-0.008380021,0.016825767,-0.02718413,0.011870053,-0.0077950624,0.0067763147,0.006125631,-0.016510284,-0.023227446,-0.00084786094,0.029550254,-0.008057965,-0.03217928,-0.004669808,-0.00037586858,-0.020519549,0.0032156275,0.0105818305,-0.0021919506,0.018876407,-0.0013769524,-0.016852057,-0.019875437,-0.007913369,-0.021163661,-0.022333577,-0.011909489,-0.020874467,-0.025895907,0.0019323342,0.016221091,0.008110546,-0.0061683524,-0.029471382,-0.0023989864,-0.018850118,0.010450379,0.0055998256,0.014867143,0.020033179,0.0075715953,-0.0025074338,0.021899788,0.012422148,-0.011239086,-0.0077621997,-0.019415358,-0.007426999,-0.010187476,0.001104191,0.008649496,-0.015327223,0.0053697857,0.010240057,-0.010194049,0.012665333,0.008958407,-0.022386158,-0.012619326,-0.022359867,-0.018547779,-0.01665488,0.021203095,0.0011871696,-0.050503593,0.011534852,0.022635914,-0.003628056,-0.038725555,0.021281967,-0.0022445312,-0.01465682,0.0038383782,-0.0076110307,-0.01765391,-0.026750341,-0.015787302,0.03430879,0.014722547,0.002325045,0.0070063546,-0.0033273613,0.00084786094,-0.027026389,-0.00439376,0.0015281214,-0.013388315,0.008649496,0.004347752,0.0066810125,-0.0024795004,0.00017407029,-0.0050707343,0.0015634489,-0.01911302,0.009471066,-0.008412884,0.014643676,0.011607151,-0.038751844,0.004058559,-0.009793122,0.0055373865,-0.01303997,-0.016444558,-0.0077950624,-0.0012791855,-0.008110546,-0.014906578,-0.011265377,-0.009602518,0.0019717696,0.004682953,-0.018758101,0.029786866,0.20495887,-0.020861322,0.012980817,0.009589373,0.010456951,0.017561894,0.032415893,0.013158276,-0.016352542,-0.013276582,-0.0008301972,0.025146635,-0.00078049215,0.0058857324,-0.016786331,-0.014472789,-0.0291559,-0.03220557,-0.023713816,-0.0073875636,0.010102033,-0.007334983,-0.015261496,-0.009819413,0.009227882,0.0017696632,-0.009135866,-0.010036307,0.0058298656,0.028735256,-0.019928018,-0.0102992095,0.0070786527,-0.008241997,-0.02013834,0.015208916,-0.0022445312,-0.015590125,0.0113245305,-0.0025320807,-0.008439174,0.02216269,0.011916061,0.023332607,0.004433195,0.03118025,-0.010910459,0.0019356204,0.0028985012,0.035544433,-0.019730842,-0.018758101,0.01183719,0.029550254,-0.0019389067,0.0055735353,0.010246629,0.015853027,-0.011147071,0.019481083,0.0053434954,0.030996218,-0.036674913,0.025278086,-0.016313108,0.035386693,-0.008373449,0.01598448,0.0018781106,-0.029629124,-0.016221091,-0.010798725,-0.026829211,-0.023003979,-0.013368598,-0.004324748,0.03394073,0.016483994,0.022373013,-0.013986419,0.0039106766,-0.021768337,0.010798725,-0.014052144,0.017351573,-0.012113238,0.011022192,0.009779978,-0.019993743,0.012934809,0.0036872092,-0.00014120746,-0.014354482,0.014170451,0.0037890838,0.0088532455,0.022451883,0.041302,-0.017417299,-0.005461802,-0.026973808,0.05234391,0.026605744,0.016773187,-0.018981569,-0.0077293366,-0.012527309,0.04001378,-0.028892998,-0.017667055,-0.004002692,-0.015392948,0.012303842,-0.004498921,0.015432383,0.0029773721,-0.0049261376,-0.0064213965,0.0130136795,-0.030917346,-0.009083285,-0.017062379,0.016234236,-0.014906578,0.0013416249,-0.0019093303,-0.029445093,0.007262685,-0.022307286,-0.03641201,0.029944608,-0.00935276,-0.024265911,0.0025698731,-0.013933838,0.0018797537,-0.00031219685,0.00981284,0.0059580305,0.003637915,0.00085196877,-0.012448438,-0.014643676,0.0010187476,0.0109433215,0.025685586,0.023464058,0.008669213,-0.017180685,-0.018587215,-0.025251796,-0.0072232494,-0.00012282481,-0.02013834,0.005300774,-0.016299961,-0.03517637,-0.017496169,-0.016615445,0.035675883,-0.026198246,0.014946014,0.033782985,-0.0102597745,-0.004160434,0.0064608315,-0.1689938,0.019717695,0.01004288,-0.008182844,0.013171421,0.031758636,0.02910332,0.006592283,0.005941599,0.0019339774,0.006730307,0.026658325,-0.024844296,0.01611593,-0.0077950624,-0.007998812,-0.036359433,0.017851088,-0.016102785,0.02067729,0.02472599,0.0023464058,0.020532694,-0.013381743,0.00026249184,-0.001720369,0.0038088015,0.023477204,0.001184705,-0.013986419,-0.016852057,0.0054585156,0.024752282,0.014735691,-0.007965949,0.004682953,-0.017259557,0.0069340565,-0.015774157,0.014814562,0.021019064,-0.003930394,0.022688495,-0.013841823,-0.00427874,0.00030911597,0.009694533,-0.0035294676,0.009010987,-0.015445529,0.00048267277,-0.015708432,0.0021919506,-0.018850118,0.025711875,0.007269257,0.01211981,0.0012183893,-0.0062570823,0.023963572,-0.019770276,-0.01127195,0.012290698,-0.009227882,-0.018771246,-0.0041998695,-0.010194049,0.010601548,-0.022964543,0.0042491634,-0.0057444223,-0.003940253,0.0016521786,-0.021505434,0.016773187,-0.012882228,-0.032915406,-0.008452319,0.004955714,0.020900758,0.007703047,0.011962069,-6.983351e-06,-0.013079405,0.022320433,0.020374952,-0.022044385,0.004009265,-0.023293171,-0.021281967,0.011140498,-0.031469442,-0.010417516,-0.019428503,0.007703047,0.008084255,0.00041489318,-0.008281432,-0.011469127,-0.02607994,0.0016875061,-0.00090619246,-0.021373982,-0.0035360402,0.012126383,0.0051693227,0.017075526,0.025501553,0.030522993,0.02464712,-0.0062636547,0.043063447,0.0017680201,0.01555069,0.008235425,-0.0029379367,0.036254272,-0.015011739,0.018127136,0.004870271,0.0485844,-0.0032468473,-0.0066908714,0.0011608794,0.017009798,-0.017417299,-0.07345499,-0.0081696985,0.022044385,0.003404589,-0.020098904,0.0022971116,-0.011968642,0.0133948885,-0.014998594,0.007683329,-0.001779522,-0.024910023,-0.0032616355,-0.0030168074,0.021242531,-0.010654128,-0.020848177,-0.029339932,0.007118088,0.032652505,-0.0046336586,-0.011804327,-0.003917249,-0.02416075,0.0028656386,0.01137711,-0.03433508,0.036937818,0.0075255875,-0.0015067606,-0.0054716608,-0.014012709,0.012507591,-0.012198681,0.008616633,-0.0029264346,-0.016444558,-0.017364718,0.017929958,-0.02057213,-0.013447469,0.016247382,-0.014446499,-0.024371073,0.010180904,-0.0148408525,-0.02818316,0.0059810346,0.02100592,-0.025002038,-0.026763486,-0.009602518,-0.010989329,0.009825985,0.008577198,-0.004518639,-0.0022872528,0.007486152,-0.022859382,-0.0035754757,-0.011114208,0.011541424,0.0017154396,0.037621364,0.01760133,-0.021479143,-0.006240651,-0.009411913,0.0020637854,-0.003637915,-0.015931899,-0.0106212655,-0.021584304,0.023661235,-0.028682675,-0.023937283,-0.01204094,0.00041817946,0.04398361,0.020651,-0.017325282,-0.012855938,0.022767367,-0.0042590224,0.019928018,0.03246847,0.01665488,0.01452537,0.02011205,-0.010956466,-0.0026438143,0.032521054,0.023398332,-0.02815687,0.010194049,0.024371073,-0.0053895037,-0.00088729634,0.0064049647,0.004811118,-0.012362995,-0.005543959,-0.0885456,0.027972838,-0.020282937,-0.007426999,-0.013329162,0.0015010096,0.0076570385,-0.002629026,0.00081581966,0.015668996,-0.0046336586,0.008682359,-0.016444558,-0.006602142,-0.013388315,-0.017206976,0.007183814,0.0053895037,0.0051101698,-0.0031071804,0.0006264476,-0.00678946,0.035991367,7.121991e-05,-0.027867677,-0.006368816,-0.014998594,0.012704769,-0.015642706,-0.00527777,-0.007768772,-0.012809929,-0.008695504,0.01652343,-0.00876123,0.008780947,-0.00045720406,0.0085114725,0.01803512,0.03922507,-0.021584304,-0.008524617,0.009753687,-0.016405122,0.014262467,0.0067171617,-0.007242967,0.014012709,0.01754875,0.01746988,0.02669776,0.022083819,0.0026175242,-0.01455166,-0.016641736,0.00525148,0.037542492,0.022215271,-0.0019602675,-0.013565775,0.018823827,0.03791056,0.027972838,-0.0031991962,0.008537763,0.017364718,-0.0095367925,-0.015642706,-0.0020637854,-0.05415794,-0.003953398,-0.010700136,0.008623206,-0.003453883,0.0029675132,0.01746988,0.0053862175,0.0031384,-0.0010885812,-0.005543959,0.01260618,0.0021278681,-0.038935877,0.017824797,-0.0022790371,0.02062471,-0.022031238,0.016865203,-0.033546373,0.028656384,-0.011981786,-0.0010573615,-0.016589155,0.0098982835,-0.013644646,-0.0034473105,-0.013762952,0.011455981,0.017075526,0.022504464,0.023792686,0.0005742779,-0.013920694,-0.025987923,-0.01229727,-0.009306752,-0.02275422,-0.0210585,-0.012744204,0.0075387326,-0.0049129925,0.011363965,-0.008261715,0.012540455,-0.0141178705,0.019402213,0.009418486,0.0003672421,-0.036254272,0.009056995,0.0022691782,0.007821353,-0.0029215054,-0.023464058,0.008642923,-0.003591907,0.009063568,-0.0085114725,-0.021334548,-0.009885138,0.024949457,-8.297864e-05,-0.033677824,-0.0064148237,-0.003568903,-0.014328192,0.013723517,0.008209134,-0.036359433,0.02661889,0.013907548,0.020256646,-0.0020933622,-0.029760575,0.022701642,-0.0039632567,-0.0022724646,-0.0021459425,-0.020072615,-0.0018649654,0.010923604,-0.012619326,-0.025633005,-0.016194802,0.0056096846,-0.005951458,-0.012520737,0.0026421712,0.0060960543,0.032705083,0.01598448,0.0074335714,0.019757131,-0.005428939,-0.010016589,0.03730588,-0.012961099,-0.0018863262,-0.01895528,-0.004314889,-0.0027522617,-0.03819975,-0.023017123,0.027341872,-0.004311603,0.015708432,-0.012619326,0.013657791,0.0103255,0.005777285,-0.0050082947,-0.024791716,-0.040828776,0.014104725,0.009885138,0.013020252,0.008031675,-0.018889552]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40de9850-a5da-11ee-8347-67d21b89482b', 'Politics', 'this article is about Laws', '[0.025141561,0.011694056,0.0027521243,-0.03839131,-0.011700648,0.011628137,-0.0034014278,-0.0058173644,-0.01969664,-0.02228067,0.018127764,-5.0495095e-05,-0.010863475,0.0038628618,-0.008879309,0.029953659,0.042478297,-0.021885155,0.018536463,-0.0012944872,0.0021110605,0.010217467,-0.0036815843,0.012096163,0.0035662258,0.0061931037,0.026842276,-0.049017474,-0.005850324,-0.0050592944,0.026802724,-0.0037211357,-0.027633306,-0.021410538,-0.011239214,0.0029004423,0.0052966033,-0.008879309,0.0037475033,-0.013777101,0.036070954,0.006186512,-0.012089571,-0.024956988,-0.017705882,-0.0026713733,0.040395252,-0.030217335,-0.028450703,0.008562896,0.024073672,0.038892295,-0.048753798,-0.002768604,-0.0073368005,-0.014238535,0.0046011563,-0.0024785597,-0.012030244,-0.002999321,0.0038068306,0.016427051,-0.016361132,0.013038807,-0.015583285,-0.011146927,-0.010751412,0.01783772,-0.010322938,-0.012425759,0.028582541,0.022663001,0.015754675,-0.016216109,0.0036057772,-0.025022907,-0.010758004,-0.005230684,-0.012874009,-0.0030981998,0.0074950065,-0.01077778,-0.007930073,0.017007139,0.016756646,-0.014937278,-0.008088279,0.016730279,0.017745433,-0.018707853,0.005708598,0.016848933,0.0018935275,-0.008516753,-0.026314922,0.027527835,-0.0055833515,0.033144146,0.017125793,-0.03556997,0.023440847,0.0068687745,-0.035543602,-0.01088325,-0.029320834,-0.013025623,0.0034310913,0.007837786,0.026130348,-0.015161403,-0.010837107,-0.005672342,0.019657088,-0.015504182,0.015451447,-0.013005847,-0.014779072,-0.022663001,0.006390861,-0.020276729,0.036255527,0.025655732,0.0035827055,-0.0038200144,0.020883184,-0.027949717,-0.014475844,8.363491e-05,-0.01986803,0.0007016269,0.019340677,-0.009426437,0.0019775743,0.0015721716,0.005227388,0.012939928,0.021687398,0.009927423,-0.018879242,-0.014159432,0.00029622414,0.016163373,-0.0310611,-0.024456002,-0.0073499847,0.0076466207,-0.0023401296,0.025022907,0.005616311,0.00860904,0.010942577,-0.011904998,0.022056546,0.014317638,-0.013948491,0.017284,-0.0026631334,-0.01098213,-0.0010439944,-0.023177171,-0.022504795,-0.01715216,-0.0021852197,0.013098134,0.016163373,0.041028075,0.025088826,0.022082914,0.005860212,0.022755288,-0.0066644256,0.024838334,-0.02069861,0.014027594,0.00847061,0.03622916,0.0041891616,-0.009202313,-0.03599185,0.015003197,-0.019828478,0.031245675,0.044640444,0.046749856,-0.016730279,0.02234659,-0.0020945808,-0.012709211,0.0031904865,0.0027438845,0.008661776,0.019577986,-0.0068028555,0.0032778294,-0.6813403,-0.04052709,0.00033289168,0.019037448,0.004073803,-0.0012153842,0.0049043843,0.004383623,-0.02448237,0.009334151,-0.013467281,-0.0029976731,0.016427051,-0.009960382,-0.020013051,-0.007903705,0.021318251,-0.02183242,0.019353861,0.020171259,-0.008826573,0.008075095,-0.0012837753,-0.014449476,0.015820595,0.004910976,0.0090177385,0.00568223,0.0016463306,0.006380973,-0.013645262,0.008272853,-0.018931977,0.0071390434,0.025299767,0.014317638,0.002081397,0.006242543,0.016914852,0.02723779,-0.017020322,-0.0129794795,-0.0037409114,0.015438263,-0.010988722,-0.009999934,0.029769085,-0.013539792,0.019182472,0.012577373,-0.0039584446,0.022873944,-0.00339154,0.019854845,0.001852328,0.01931431,0.0126367,0.0010250427,0.019327493,0.012392799,0.003000969,0.0071324515,-0.012195041,-0.014225352,0.0035827055,-0.008305812,-0.005141693,0.012063203,0.0049637114,-0.023282642,-0.0079894,0.023440847,-0.009195721,-0.011179887,0.0041957535,0.0004470142,0.00478573,-0.014370373,-0.0028806666,0.015438263,0.00490768,-0.008734287,-0.023955017,-0.001301903,0.029215364,-0.013361811,-0.014844991,0.0025593108,0.01756086,0.012827866,0.019301126,0.024442818,0.008220118,0.0067501203,-0.009545092,0.005454809,0.003154231,-0.00042167652,0.011964325,0.029373571,0.02059314,-0.006694089,0.014594498,0.0075015984,0.007705948,0.0063315337,-0.0131113175,0.03599185,0.007066532,-0.019920764,0.01580741,-0.00788393,-0.024403267,-0.003378356,-0.028397966,-0.03398791,0.018101396,-0.007112676,0.004090283,0.01205002,0.015280058,0.006700681,0.0153591605,-0.012709211,-0.008826573,0.043401163,-0.023994569,-0.012412575,-0.006987429,-0.016466603,0.011298541,0.00995379,0.032775,-0.0011272173,0.021252332,-0.000692975,0.011951141,0.006081041,0.022504795,-0.0045813806,-0.014396741,-0.023374928,-0.0070994915,0.012228001,-0.02768604,-0.025602994,-0.021410538,-0.012893785,-0.033935174,0.0090177385,-0.008899084,-0.016189741,-0.0006534235,0.0217665,-0.020461302,-0.00027521243,-0.0035991853,0.01676983,-0.0048780167,-0.0027900278,0.0002776844,0.0126367,-0.032247644,-0.013895756,-0.000535593,0.013658446,-0.00307348,-0.0065062195,0.015596469,-0.028503438,0.014647233,0.006417229,0.006466668,-0.011423788,0.0031904865,0.015820595,-0.013282708,0.009004555,0.010889842,0.0117929345,-0.014831807,-0.013005847,-0.031983968,0.00478573,0.004555013,0.017930007,-0.0004387743,0.021067759,-0.003154231,0.032142173,-0.01001971,0.018338706,0.008510161,-0.0031921344,-0.0065161074,0.002465376,-0.0045088693,0.0037409114,0.017824536,0.0023681452,0.025906224,0.005329563,0.028424334,-0.018576015,0.0155569175,-0.03749481,0.007930073,-0.033724234,0.003470643,0.014818624,0.016980771,-0.009070474,-0.013908939,-0.0141066965,0.0022181792,0.009617603,-0.016690727,-0.0062722065,-0.004472614,-0.0008651888,0.008925452,0.008055319,0.009749441,0.006183216,-0.012069795,0.008292628,0.021291884,0.0068028555,-0.014067145,-0.03649284,-0.021041391,0.005448217,-0.010428408,0.013737549,0.003988108,6.396217e-05,0.018510096,-0.022254303,0.012129122,0.0022198271,0.005332859,0.03216854,0.003618961,0.0018655118,0.020052604,-0.023651788,0.036651045,0.015820595,0.004531941,-0.0034409794,-0.0074950065,-0.0042122332,-0.0013950139,0.009690114,0.0008095695,-0.014080329,0.016506154,0.017284,0.010395449,0.021028208,0.00705994,0.006881959,0.008965003,-0.009063882,0.015306425,-0.017995926,-0.01514822,-0.014027594,-0.009077066,-0.022438876,-0.020289913,0.0084903855,0.03501625,-0.012458718,0.0077257236,0.010968946,-0.0040243636,0.0006628994,0.020922735,0.015121851,-0.004531941,-0.016572073,0.013157461,0.021951076,-0.015899697,-0.028081555,-0.024152774,-0.010263611,-0.011423788,0.01990758,-0.015214139,0.023480399,0.020092156,0.0007972096,-0.01063935,0.007890522,0.020909552,0.0065589547,0.00583714,-0.012445535,0.008714511,0.011140335,0.018193685,-0.00074406236,0.038549516,-0.0044759098,-0.018127764,-0.026301738,0.0059788665,-0.022610266,-0.006064561,0.0005850324,-0.0020303095,0.004228713,-0.011542442,0.011819302,-0.017719066,0.023757258,0.034277953,-0.012346655,0.006605098,-0.026473127,-0.012241185,0.0071851867,0.13616258,-0.011338092,-0.0061172964,0.032827735,-0.026763173,-0.041766368,-0.021700582,-0.011061233,0.013579343,-0.0058305482,-0.0055174325,0.005919539,-0.011140335,-0.0059294268,0.036861986,0.02145009,0.005856916,0.010527288,-0.0058173644,-0.00705994,0.0163875,-0.013658446,-0.015306425,0.04007884,-0.011614953,-0.032854103,0.030085497,0.0116610965,0.007297249,0.0062787984,-0.020474486,3.5972284e-05,0.0022643225,-0.001085194,-0.021924708,0.025247032,0.009353926,-0.0028147474,0.020883184,0.0054679927,0.012959704,0.011937957,0.0074290875,-0.021331435,0.019116553,-0.03501625,-0.009775809,0.04382305,-0.0034442754,-3.6410027e-05,-0.001992406,-0.003002617,-0.031192938,-0.008206934,0.022307038,0.007963032,-0.004798914,0.03691472,0.0009063882,-0.037099294,-0.0010538823,-0.030665586,0.00084335305,-0.0062194713,0.0028526508,-0.027000481,-0.0039551486,-0.016848933,-0.0154250795,-0.00062952784,0.00058091246,-0.038259473,-0.017653147,-0.009294599,0.015741492,0.0060546733,0.038813192,0.0031278634,-0.002308818,0.023559501,-0.016018352,-0.03164119,-0.0152932415,-0.026736805,-0.00430452,-0.023163987,-0.0074159037,0.0055240244,-0.038918663,0.012208225,-0.0067270487,0.030850159,-0.0025906223,-0.0008293452,-0.00090474024,0.017850904,0.0013793581,0.0026450057,0.0030800719,-0.00015388,-0.0029976731,-0.016690727,-0.017059874,0.014858175,-0.005794293,-0.0025708466,0.030454645,0.00881339,0.028556174,0.009670339,0.009551683,-0.025352502,-0.0029399937,0.017745433,-0.0019693344,0.03027007,0.0074884146,0.012610332,-0.004555013,0.002145668,-0.011575402,-0.021015024,0.0055306163,0.008971595,-0.0032778294,-0.011179887,-0.00678308,-0.019657088,0.0002002294,-0.0067270487,0.01215549,0.008806798,0.00867496,-0.0013463985,-0.008833165,0.0006525995,-0.02982182,0.03050738,-0.012761946,-0.0014024298,-0.014264903,0.014423109,0.008477202,-0.03301231,0.02813429,-0.031931233,0.0023664972,-0.006081041,-0.02196426,0.011100784,-0.004683555,-0.010303162,-0.015398712,0.016453419,-0.008655184,-0.033592395,0.020738162,-0.010553655,0.02458784,0.023018965,0.04234646,9.6355245e-05,-0.014251719,0.005959091,-0.0011783047,0.00068102713,-0.0052405717,0.009189129,-0.038707722,-0.0038101266,0.022847576,-0.0039683324,0.02589304,-0.012478494,-0.0009673634,0.019024264,0.004446246,0.024442818,-0.025075642,-0.01260374,-0.018233236,-0.007079716,-0.00833218,0.011720424,-0.04007884,0.0024703199,0.008984779,0.004680259,0.008239893,-0.008965003,0.016005168,-0.023480399,0.021806052,0.008839757,-0.019551618,-0.026934562,-0.006186512,-0.01032953,0.02021081,0.021898339,0.0018935275,-0.0017419134,-0.02410004,-0.010962354,0.00308996,0.005725078,0.0036651043,-0.010580023,0.004007884,-0.024943804,0.0022148832,-0.025879856,-0.009518724,-0.04131812,0.013012439,0.0062689106,-0.0041298345,0.03588638,0.0027389405,-0.03633463,-0.005319675,-0.015332793,-0.012597148,-0.0032794774,0.007837786,0.018299155,-0.0022066433,-0.026024878,0.007396128,0.012827866,-0.03377697,0.025247032,0.018536463,0.0067962636,-0.009235272,0.0009912591,0.032827735,-0.0055174325,-0.015214139,0.01794319,-0.0010992017,0.017086241,-0.007824603,-0.022016995,-0.022544347,0.028608909,0.01980211,0.018101396,-0.022781655,-0.011133743,-0.004518757,-0.0020270136,-0.017534493,0.0042715603,0.008173974,-0.00231541,0.014792256,-0.0017583931,-0.007521374,0.0055932393,-0.010276794,0.017877271,-0.025471156,0.0030438164,0.002373089,0.004472614,-0.0109953135,-0.008958411,-0.016862117,0.023045333,-0.013777101,-0.020026235,0.01734992,0.025352502,0.02042175,-0.0074422713,0.0068687745,-0.01986803,-0.0069610616,-0.013645262,0.012175266,-0.00066495937,-0.020276729,-0.013658446,-0.011904998,-0.016071087,-0.0075872936,-0.013922123,-0.0046538915,0.032379482,-0.025655732,-0.005082366,-0.028213393,-0.007178595,0.0041924575,-0.021067759,-0.0018440881,0.0390505,-0.034620736,0.012102755,-0.025009723,0.013276115,-0.0063974527,0.009729666,0.010428408,-0.023018965,0.026499495,-0.0008759006,-0.023875915,-0.021502825,-0.008543121,0.0034113156,0.00035060744,-0.011595177,-0.011621545,0.0052405717,-0.001230216,-0.0012038484,-0.01941978,0.022768471,-0.016914852,-0.009439621,0.017297184,-0.032353114,0.008088279,0.0029334018,0.008134422,0.0001387392,-0.030560115,0.0021275403,-0.0014024298,0.02823976,-0.010144956,-0.003612369,-0.010250427,-0.004792322,-0.00059409626,0.0088199815,-0.0067369365,-0.0018078325,0.022979414,0.0045747887,0.0042682644,0.008543121,-0.0077389074,-0.0068028555,-0.027896982,-0.005556984,-0.02100184,-0.025800753,-0.0022379549,0.0046407077,0.012340063,-0.010692085,-0.023111252,-0.003849678,-0.034225218,-0.0071192677,0.0058305482,0.018285971,0.014739521,0.004449542,-0.00048615367,0.009960382,0.007640029,0.020738162,-0.026262186,-0.023678156,0.004057323,-0.020540405,0.017284,0.0041825697,0.006994021,0.007771867,0.016110638,-0.021463273,0.02499654,0.026420392,-0.021977443,-0.011608361,-0.003094904,-0.011483115,-0.018154131,-0.00950554,-0.0037442073,-0.04097534,0.004920864,0.019235207,-0.008734287,-0.026077613,0.02386273,-0.012926744,-0.015926065,0.01576786,0.01205002,-0.017178528,-0.018444177,-0.010237243,0.023256274,-0.002686205,0.0065095155,0.015636021,-0.004690147,-0.009334151,-0.020342648,0.008457426,0.00012431938,-0.021199597,0.012874009,0.0034343873,0.032010335,0.0040441393,-0.026314922,-0.011404011,-0.0018160724,-0.0073565766,-0.008905676,-0.008266261,0.015319609,0.021858787,-0.02548434,-0.022109281,-0.0064238207,0.0019446147,-0.015991984,-0.009762625,-0.00909025,-0.02802882,0.0024785597,-0.0064567802,-0.008767246,0.010065854,-0.0025708466,0.00909025,-0.027949717,0.013183828,0.19206202,-0.009775809,0.0056525664,0.0070863077,0.006829223,0.012241185,0.023005782,0.009723074,-0.024390083,0.0027389405,-0.014198983,-0.0074488632,-0.004854945,0.011371052,-0.011614953,-0.012926744,-0.028081555,-0.04355937,-0.026354473,-0.012768538,-0.0071192677,0.0020665652,-0.008529937,-0.0055734636,0.010896434,0.0088199815,0.015372344,0.008912268,-0.0069149183,0.025906224,-0.008707919,-0.01649297,0.015675573,-0.01246531,-0.01491091,0.0066314656,-0.0050625904,-0.016031535,0.008391507,0.0006855591,-0.00050428143,-0.00047585383,0.021990627,-0.015306425,-0.017613595,0.040395252,-0.010079037,0.009268232,-0.006469964,0.011529258,-0.038312208,0.008200342,-0.0031229195,0.02802882,0.0011659449,-0.0030355765,-0.0019479106,0.021753317,-0.018470544,0.013467281,-0.008121238,0.031272043,-0.03477894,0.015741492,-0.010771188,0.025708467,-0.015200955,0.012728986,0.0055965353,-0.022438876,-0.0012046724,-0.002839467,-0.009077066,-0.025906224,-0.013460689,-0.014396741,0.026249003,0.04680259,0.029742718,0.0011733607,-0.003539858,-0.009248456,0.017824536,-0.0090177385,0.0052933074,-0.029083526,0.013454097,0.0017715769,-0.01941978,0.00043671433,0.011595177,-0.008101462,-0.012340063,0.011555626,0.0039518527,0.0067962636,-0.000997027,0.035649072,-0.040685296,0.0092814155,-0.031324778,0.0603292,0.03353966,0.008800206,-0.0095385,0.012208225,-0.0065556588,0.034357056,-0.019894397,-0.021120494,0.0050065587,0.0063480134,0.0040144757,-0.008984779,0.019854845,0.000153468,-0.00015944193,-0.0093473345,0.01986803,-0.014475844,-0.023111252,-0.008464018,-0.003843086,-0.006690793,0.0134409135,0.0061008167,-0.027659673,0.008628816,-0.019274758,-0.029900923,0.02100184,-0.002379681,-0.0090177385,0.010362489,-0.013605711,-0.009096842,0.006252431,-0.00093357987,0.004090283,-0.0058700996,0.001153585,0.015609653,-0.033829704,-0.016295211,0.0073368005,0.015345977,0.027000481,0.010289978,-0.023216723,-0.013302484,-0.017138977,-0.02087,-0.0062062875,-0.02351995,0.009782401,0.0028806666,-0.024363715,-0.024614207,0.0037837587,0.031113835,-0.013869388,0.017336736,0.03240585,-0.013552976,-0.0028246352,-0.0010192747,-0.16980772,0.014528579,0.012735578,-0.005781109,0.017508125,0.013632079,0.015108667,-0.0010522343,0.008760654,0.0020171257,0.016361132,0.006018418,-0.044614077,0.012228001,-0.0071390434,-0.017521309,-0.027765144,0.0015837074,-0.0014114936,0.011034865,0.015504182,0.0025939182,0.021397354,-0.0212787,0.012893785,0.011015089,-0.016611625,0.0039947,-0.0016026592,-0.01587333,-0.010955762,0.017956374,0.021898339,0.018536463,0.0009393478,0.01136446,-0.0024966875,-0.0025016314,-0.020579956,0.014146248,0.018549647,0.0021011727,0.019788926,-0.017771801,0.024627391,-0.0030223927,0.012267552,-0.01734992,0.015174587,-0.008279445,0.014264903,-0.04139722,0.013388178,-0.026776357,0.027870614,0.025299767,-0.004927456,0.0058239563,-0.013632079,0.028898953,0.002076453,-0.027105952,0.020540405,0.007178595,-0.01804866,-0.0097428495,-0.011496299,0.007389536,-0.025220664,0.0014535171,-0.008503569,-0.019301126,0.013164053,-0.023849547,0.018971529,-0.021753317,-0.026539046,-0.008173974,0.010085629,0.005547096,0.0032695895,0.020645875,-0.0032893652,0.0058140685,0.010013117,0.015939249,-0.024258245,0.005369114,-0.02723779,-0.015636021,0.015688756,-0.02599851,0.00023669093,-0.02555026,-0.006074449,0.008740879,0.009465989,-0.010896434,-0.021529192,-0.018075028,-0.0004080807,-0.00059492025,-0.029980026,0.005207612,0.01274217,0.0033289168,0.00030405205,0.019050632,0.031351145,0.0134409135,-0.0045747887,0.023111252,-0.0064304126,0.00600853,-0.003297605,0.000773314,0.019077,-0.019077,0.0007321145,0.0035958893,0.049597565,-0.0098746875,0.015398712,0.0048318733,0.0152273225,-0.0033173808,-0.07177276,-0.03385607,0.038786825,0.013210196,-0.0098746875,0.012366432,-0.0041232426,0.029558145,-0.014304454,0.011054641,-0.0010069149,-0.021516008,-0.008292628,-5.8548303e-06,0.005922835,-0.004845057,-0.0154250795,-0.020843633,0.0005001615,0.021819236,0.0002068213,-0.0044231745,-0.0141726155,-0.00631835,0.0019610946,0.01721808,-0.036571942,0.031983968,0.015385528,0.010395449,-0.023506766,-0.014212167,-0.0077257236,-0.004564901,0.020514037,-0.002140724,-0.012148898,-0.011489707,0.028081555,-0.018378258,-0.0075015984,-0.0096110115,-0.009690114,-0.027659673,0.006934694,-0.023295825,-0.024772415,0.002373089,0.034568,-0.025932591,-0.019301126,-0.0016636344,0.0013447505,-0.001689178,0.015003197,0.0021951075,-0.0044923895,0.007692764,-0.026591783,-0.0019363748,-0.014844991,0.00568223,0.015240506,0.031140203,0.021133678,-0.022412509,-0.014752705,-0.020909552,0.012722394,-0.0038134225,-0.016928036,0.00047338186,-0.024811966,0.021806052,-0.009004555,-0.0042023454,-0.035148088,-0.009914239,0.023124436,0.013513424,-0.0061172964,-0.012761946,0.022320222,-0.002925162,0.018404625,0.023269458,0.01969664,0.011766567,0.009373702,-0.005899763,0.006707273,0.03419885,0.02758057,-0.00881339,0.007244514,0.028081555,-0.019116553,-0.000540949,0.02069861,0.00678308,-0.0021951075,-0.02234659,-0.08896448,0.013645262,-0.010711861,0.0003769751,-0.014871359,0.006315054,-0.00416609,-0.019063815,0.006525995,0.0092814155,-0.0137111815,0.0022956342,-0.023467215,-0.03251132,-0.018035477,-0.021792868,0.019538434,0.014713153,0.002312114,0.019498883,0.022201568,-0.011865445,0.020250361,-0.0069742454,-0.026209451,-0.00039015894,-0.009934015,0.009492356,-0.035807278,-0.01005267,-0.008978187,0.0012236241,-0.0075938855,0.0075807017,0.00048532969,0.006143664,0.015991984,0.010006526,0.026354473,0.01655889,-0.00045484208,-0.033407822,0.0047231065,-0.02155556,0.016453419,-0.0025049276,-0.020606324,0.018510096,0.040948972,0.0076663964,0.031245675,0.023098068,-0.009136394,-0.015965616,-0.014304454,0.008384915,0.021516008,0.023902282,-0.014990013,-0.011417196,0.022531163,0.009828544,0.023678156,0.0013579343,0.0057547414,0.008048727,-0.036519207,-0.0019133032,0.01063935,-0.038575884,-0.0076004774,-0.009452805,-0.0041990494,0.0001915775,0.001389246,-0.00012205342,-0.009927423,0.0027307004,0.0024274725,0.004083691,0.021225965,-3.1054096e-05,-0.021687398,0.019947132,0.006829223,0.004067211,-0.034831677,0.012953112,-0.024258245,0.015121851,-0.02689501,0.018285971,-0.007290657,0.0012401039,0.0028048595,-0.0033486926,-0.004999967,0.0045813806,0.0041265385,-0.0011923125,0.025075642,0.004067211,-0.011641321,-0.031245675,-0.009696706,-0.0010530583,-0.01941978,-0.03377697,-0.009736258,-0.00039386688,-0.006987429,0.011647913,-0.009373702,0.0117929345,-0.024086855,0.014950462,0.010026302,-0.011199662,-0.035095353,0.027659673,-0.009894463,-0.004449542,0.016703911,-0.0074884146,0.012300512,-0.005164765,0.006621578,-0.001615843,-0.014765888,-0.022122465,0.007066532,-0.0011461691,-0.03343419,-0.010586615,-0.004169386,-0.014317638,0.0113315005,0.0034805308,-0.020830449,0.015187771,-0.0049043843,-0.0064567802,0.0146340495,0.006479852,0.026407208,-0.005144989,0.00070451084,-0.0058305482,-0.02469331,0.0047362903,0.01604472,-0.0022527867,-0.018655118,-0.02272892,0.009307783,-0.023388112,-0.0013546384,-0.015912881,0.01088325,0.027976085,0.027765144,-0.013645262,0.0044890936,0.0024521921,0.00613048,0.031482983,-0.023889098,0.0050691823,-0.026868643,0.00045072215,0.003307493,-0.021713765,-0.020342648,0.021713765,-0.0067435284,0.016466603,0.011825894,-0.0019001194,0.010718453,0.013256339,0.0040243636,-0.0203822,-0.024469186,0.0041792737,0.0067468244,0.010837107,0.0030174488,-0.007224738]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40e4a59c-a5da-11ee-8347-974ec881264c', 'Politics', 'this article is about Policy', '[0.019527366,0.0014405836,0.0074026594,-0.03501099,-0.0015669506,0.014727052,0.00069950236,0.0061112703,-0.028306203,-0.01800118,0.0056547187,0.009254955,-0.015574934,0.013207387,-0.02028394,0.019344747,0.035558853,-0.020270893,0.024445081,-0.009828906,-0.013540018,0.011407269,-0.0053025214,0.0052177333,-0.0009285935,0.010892019,0.033419583,-0.0393678,0.0015971155,0.00067382137,0.011876865,-0.0039622164,-0.01408788,-0.015822776,-0.005361221,-0.0055829748,-0.0022207978,-0.016683703,0.0062351916,-0.008446206,0.017805515,-0.0023708076,0.0025485368,-0.02543645,-0.004973152,0.0001093482,0.043359365,-0.010755053,-0.0022827582,0.008452728,0.028071405,0.02456248,-0.051759914,-0.003404571,0.0020822017,-0.019344747,-0.0020512214,0.0027621377,-0.009385398,-0.005491664,0.004536167,0.006567822,-0.0131030325,0.0038448172,-0.02679306,-0.01198122,-0.015196648,0.017883781,-0.006453684,-0.009052767,0.031436842,0.03428051,0.009626718,-0.01622715,0.024066795,-0.028332293,-0.01119856,-0.005830817,-0.0050416347,0.0038285118,0.0035904527,-0.011094206,0.003446965,0.015235782,0.01330522,-0.0029773691,0.0081657525,0.005560147,0.017622894,-0.008713615,0.012398639,0.015796687,0.0013134013,-0.0003729864,-0.028880155,0.030654183,0.007513536,0.019240392,0.017962048,-0.022971071,0.020544825,0.024079839,-0.035089258,-0.016488038,-0.03443704,-0.006225408,-0.0044546397,-0.0009049506,0.044950772,-0.016083663,-0.025906047,-0.0014943915,0.019501278,-0.01134857,0.0021229652,-0.0073048268,-0.016853279,-0.01763594,0.006724354,-0.01860122,0.028697534,0.02396244,0.00728526,0.0029822607,0.0098093385,-0.023858085,-0.02377982,-0.0041220095,-0.00689393,0.0053416546,0.014374855,0.010702875,-0.001703916,0.021666639,0.00900059,0.008133142,-0.0060069156,0.009685418,-0.020623092,-0.025201652,0.0076439795,0.0196839,-0.014035703,-0.021288352,-0.0031991228,0.018196845,0.001312586,0.02230581,0.009307132,0.0062058414,0.016788058,-0.009104945,0.026766973,0.013866127,-0.014283545,0.015535801,-0.010448511,0.0027637682,-0.0020218717,-0.0087657925,-0.009020156,-0.019853475,0.005948216,0.00430463,0.009828906,0.033628292,0.022605829,0.02974108,0.00019311727,0.01595322,-0.011746422,0.013566107,-0.022162322,0.02034916,0.012555171,0.031671643,-0.0012864973,-0.005631891,-0.029454105,0.005511231,-0.019436058,0.03031503,0.04228973,0.032428212,-0.014231368,0.009652806,0.014244412,-0.01194861,-0.0037469848,0.0004163996,0.015118383,0.021575328,0.006610216,0.009261477,-0.68790597,-0.035637118,-0.0053383936,0.030054145,0.012470383,-0.0017626155,0.007924433,0.02152315,-0.020375248,0.023623288,-0.008107053,-0.01119856,0.002871384,-0.0026382164,-0.013500885,-0.013292176,0.022188412,-0.021510106,0.0012970959,0.009581063,-0.011042029,0.008133142,0.002540384,-0.011452924,0.021888392,-0.0018131624,0.008681004,0.0030556351,0.0050188075,0.0041578813,-0.004412246,0.010539821,-0.008870147,0.00057028193,0.031593375,0.007630935,0.009828906,0.0050383736,0.007780945,0.033419583,-0.01733592,-0.0052829552,0.0030588962,0.00803531,-0.013233476,-0.0140096145,0.025540804,-0.023310224,0.013070422,0.012170363,-0.0019354529,0.0146096535,0.005746029,0.009528886,0.010037615,0.0044057234,0.016970677,-0.02242321,0.012450816,0.012587782,0.0013215541,0.013800905,-0.022814538,-0.016031485,0.014100924,-0.010455033,-0.01062461,0.021666639,0.0027768125,-0.020479603,-0.0062351916,0.013383486,-0.0024458126,-0.009763683,0.0066786986,-0.009678896,0.020466559,-0.01309651,0.0010557758,0.005250344,-0.0035806694,-0.006336285,-0.0234798,-0.015744511,0.03284563,-0.011081161,-0.018653397,0.010663742,0.020766579,0.000695426,0.018118579,0.010689831,0.006075398,-0.00036850243,0.006303674,0.003675241,0.0092158215,-0.0019762164,0.021418795,0.027132213,0.013774816,0.0049503245,0.017322876,0.008426639,0.0072461274,0.012470383,-0.004650305,0.030967247,0.013553062,-0.019592589,0.016409772,-0.010213713,-0.017375052,-0.0052373,-0.019462146,-0.037071995,0.02898451,0.0057003736,0.0041676643,0.012235585,0.020883977,0.00013390824,-0.0055307974,-0.018327288,0.0077548563,0.043933313,-0.014818363,-0.009894127,-0.0034502263,-0.026714794,0.010676787,0.0061634476,0.038428605,0.0014365072,0.028645355,0.010200669,0.0076635457,0.0024409208,0.024275504,-0.011002895,-0.013526973,-0.014127013,0.0055438415,0.009457142,-0.0057623344,-0.025932135,-0.006730876,-0.01850991,-0.028827976,0.004343763,0.008726659,-0.009267999,0.012803013,0.017596805,-0.014283545,0.0035904527,-0.0039622164,0.0065026004,-0.0035350143,-0.0010908324,-0.00845925,0.018614264,-0.03681111,-0.018770795,-0.011537713,0.020427426,-0.010578955,-0.009835428,-0.0002725043,-0.020701356,0.012222541,0.010781142,-0.005977566,-0.02014045,0.003603497,0.0028648616,-0.026662618,0.007780945,0.0058112503,0.013318265,-0.020766579,-0.010552865,-0.04985544,-0.000356681,0.01390526,-0.004095921,0.02191448,0.0262452,-0.00046918838,0.025579939,-0.007820078,0.0120660085,0.0075722355,-0.00020932079,-0.00680262,-0.0029447582,-0.012542127,0.00042475612,0.02492772,0.003076832,0.032193415,0.008576649,0.024379859,-0.020362204,0.0156532,-0.027497455,0.0018262067,-0.03164555,0.009431053,0.012783446,0.019162126,-0.008674482,-0.025919091,-0.01730983,-0.014140057,0.007924433,-0.017818559,0.0027490933,-0.030001966,0.015118383,0.0020218717,0.004806837,-0.00993326,-0.0028893198,-0.012026875,0.017348964,0.010885497,-0.0012979112,-0.0053057824,-0.03428051,-0.012437772,0.008498383,-0.004731832,0.021366619,0.00023235219,-0.00045410584,0.021197041,-0.017557673,0.020036096,0.0069982847,0.011283348,0.028671445,0.0028306204,0.0022322116,0.020753535,-0.032793455,0.03232386,0.017088076,0.005084029,-0.0076635457,-0.0062058414,-0.0025354924,0.016409772,0.013657417,0.0063297627,-0.007598324,0.0024164629,0.007200472,0.0057003736,0.02085789,0.002745832,0.004914453,0.009241911,-0.0055307974,0.0030213937,-0.02257974,-0.025997356,-0.025606027,-0.002895842,-0.015235782,-0.01760985,0.006541733,0.024340726,-0.03388918,0.0044415956,0.015327091,0.019370835,-0.0032610833,0.009228866,0.010552865,-0.0046046497,-0.0125095155,0.017935958,0.03832425,-0.018836018,-0.018040312,-0.023010204,-0.009463664,-0.019540412,0.019240392,-0.002868123,0.026975682,0.020975288,0.0061275754,-0.009385398,0.004898147,0.030262854,0.013918304,0.012450816,-0.002380591,0.009835428,0.0071874275,0.016957633,-0.004258975,0.023101514,-0.012418206,-0.021549238,-0.024627702,0.009972393,-0.015718421,0.00044799133,-0.01908386,-0.008439683,0.0017642461,0.0010402856,0.003906778,-0.025488628,0.022801494,0.035898004,-0.0060101766,0.01622715,-0.011518147,-0.0019028421,0.009685418,0.13472188,0.010487644,0.0009033201,0.027993139,-0.013957437,-0.031567287,-0.005547103,-0.02074049,0.005671024,-0.019109948,-0.014061792,0.02122313,-7.4852054e-05,-0.027523544,0.03326305,0.01643586,-0.0054166596,-0.0059416937,0.005074246,-0.005410137,0.027888784,-0.014127013,-0.016240194,0.030001966,-0.010461556,-0.039837394,0.036524132,0.008589693,-0.0143096335,-0.0063428073,-0.020362204,0.001426724,-0.00499598,-0.0028974726,-0.02955846,0.019253436,0.010578955,0.004102443,0.0070048072,0.008563605,-0.0021588372,0.0104746,0.003939389,-0.015796687,0.0132530425,-0.03947215,-0.00433398,0.04422029,0.005162295,-0.0036719798,0.005742768,0.0034273986,-0.039993927,-0.014440077,0.018144667,0.0034926203,-0.008961457,0.025214696,-0.007448314,-0.02914104,0.0062449747,-0.042002752,-0.009346265,-0.008713615,0.019762166,-0.030393297,0.0068221865,-0.004252453,-0.0015155885,-0.00025803322,0.01071592,-0.028619267,-0.013748728,-0.010305024,0.016461948,-0.001682719,0.032923896,-0.004112226,-0.0081657525,0.020714402,-0.005876472,-0.026166933,-0.020270893,-0.044898596,-0.002838773,0.007448314,-0.021940568,0.011485536,-0.024732057,0.01622715,-0.008472295,0.02898451,0.0021099208,-0.0024800538,0.001372916,0.01878384,0.00022501475,0.0049405415,0.00918321,-0.0051199007,-0.0051394673,-0.021131821,-0.021275308,-0.0012180146,-0.0010345787,0.004418768,0.02080571,-0.00040987742,0.023714598,-0.0068417527,0.009287565,-0.0146096535,-0.0071743834,0.01113986,-0.0019452362,0.015327091,0.006052571,0.02603649,0.0015082511,0.0018310983,-0.013089988,-0.029454105,-0.0099658705,0.022501474,-0.009307132,-0.0012057855,-0.008198364,-0.023075426,-0.006646088,-0.0011805121,0.008889713,0.003988305,-0.0018620786,-0.0052992604,-0.022449298,0.009196255,-0.02377982,0.028723622,-0.012444294,-0.007317871,-0.026414774,0.0009987068,0.006541733,-0.02034916,0.031019425,-0.034306597,0.008133142,-0.004894886,-0.020597002,0.017283741,0.0044742064,-0.0018050097,-0.017296785,0.008257063,-0.009398442,-0.029401928,0.019031683,-0.008472295,0.014453121,0.03441095,0.040854853,-0.012287762,-0.0051003345,0.00466661,-0.004823142,-0.011152905,-0.0001358445,0.002576256,-0.029480193,-0.004415507,0.025658203,-0.0049829353,0.01631846,-0.0014992831,0.005165556,0.009111467,0.016188018,0.00900059,-0.017270697,-0.005814512,-0.008589693,-0.0038448172,-0.010461556,0.011694245,-0.03975913,0.00095386687,0.0056155855,0.006655871,0.018275112,0.0045981277,0.015587978,-0.012170363,0.0131095555,0.01327261,-0.020166539,-0.016201062,-0.0141531015,-0.021627504,0.01258126,0.03185426,0.0067895753,0.0014006353,-0.011100728,-0.003603497,0.012887801,0.009607151,0.0010631132,-0.017231565,0.01760985,-0.021497061,0.008224452,-0.033915266,-0.021366619,-0.03464575,0.016592393,0.014374855,-0.023101514,0.039106913,0.0010900171,-0.04482033,0.012568215,-0.013513929,-0.005175339,-0.002757246,0.0026431081,0.007630935,0.00028249135,-0.03540232,0.0034730537,0.0037013297,-0.029819347,0.032349948,-0.0014218324,0.013748728,-0.01282258,0.0060982257,0.02534514,0.009202777,-0.018496865,0.0055373195,0.003835034,0.016396727,-0.0051394673,-0.026271287,-0.0131226,0.022605829,0.023584155,0.0061993194,-0.009678896,-0.020910066,-0.012881279,-0.015901042,-0.018849062,0.0141661465,-0.005234039,-0.013174777,0.004255714,0.0009832167,-0.003052374,0.016044531,-0.004539428,0.02239712,-0.027184391,0.011028984,-0.0045655165,0.00094652944,0.00066933734,-0.005746029,-0.007278738,0.021601416,-0.011387703,-0.015287959,0.012803013,0.008576649,0.027419189,-0.025553849,-0.0011307807,-0.0315412,-0.014935762,-0.012939978,0.014244412,-0.00034363667,-0.019892609,-0.006691743,-0.012561693,0.004973152,-0.00845925,-0.003795901,-0.0027947484,0.017622894,-0.023427622,-0.0020055664,-0.021836214,-0.0011552388,0.007037418,-0.017231565,-0.0059971325,0.03480228,-0.03169773,0.00070317107,-0.027236568,0.0156532,-0.010344156,0.004412246,-0.004930758,-0.025632115,0.028280115,-0.004422029,-0.025762558,-0.009978915,-0.018183801,0.019240392,-0.012594304,-0.006646088,-0.0065515162,0.021470973,-0.010722442,0.0054525314,-0.013526973,0.025866913,-0.0078722555,-0.011531191,0.011531191,-0.009620196,0.015340136,-0.018144667,0.014296589,0.002501251,-0.025932135,-0.009554974,0.0055014477,0.02781052,-0.016292373,-0.0061014867,-0.0065613,-0.014648787,-0.015940176,0.0046405215,-0.0016859801,-0.0015204801,0.014622698,-0.004229625,-0.006528689,-0.003564364,-0.014061792,-0.02064918,-0.03287172,-0.007161339,-0.0025110343,-0.015379269,0.006815664,0.023192825,0.018222934,-0.012255151,-0.01986652,0.0029822607,-0.026323466,-0.009646284,0.006717832,0.010207191,0.012483427,0.0117594665,0.007200472,0.006809142,0.008250541,0.01607062,-0.030941159,-0.014440077,0.0050383736,-0.013618284,0.008791881,0.016775012,-0.005993871,-0.0056579798,0.013226954,-0.0065026004,0.021601416,0.025214696,-0.025801692,-0.003230103,-0.014205279,-0.010742009,-0.014883584,0.0076570236,-0.0059319106,-0.04635956,0.014753141,0.032767367,-0.01062461,-0.026362598,0.017727248,-0.007037418,-0.011022462,0.0076113683,-0.007383093,-0.02085789,-0.016801102,-0.010820274,0.012294284,0.0014079728,0.0013843299,0.007813556,-0.008752747,-0.021210086,-0.025814736,0.013076944,-0.0075591914,-0.013011723,0.026010402,0.0035024036,0.02140575,-1.31971965e-05,-0.025632115,0.0045263837,0.0011095837,-0.0072983047,0.004647044,-0.012339939,0.0046242164,0.013461752,-0.019305613,-0.0058536446,-0.007617891,0.0026447386,-0.01634455,-0.009313654,-0.00743527,-0.020714402,-0.0044448567,-0.009496274,-0.016592393,0.00033568777,0.0062514967,0.018235978,-0.02227972,0.022318855,0.19169952,-0.017740294,0.0031273789,-0.0029431276,-0.000996261,0.01719243,0.02396244,0.020323072,-0.018196845,0.004572039,0.0026104972,0.010233279,-0.007428748,0.0040111328,-0.024405947,-0.014413988,-0.024966855,-0.044194203,-0.024627702,-0.01507925,0.006300413,-0.0146096535,-0.007748334,-0.006698265,0.017022856,0.009039723,-0.0030001968,-0.0032676056,0.0013142166,0.03368047,-0.0072591715,-0.022357987,0.0129660675,-0.002576256,-0.013194343,0.013461752,0.00040253997,-0.010278935,0.014544432,0.003988305,-0.0041578813,0.025032075,0.022318855,-0.0013769924,-0.0069069746,0.044142023,-0.010885497,0.00900059,-0.005644935,0.020623092,-0.027471365,-0.004337241,0.013018245,0.021301396,0.007317871,0.0067504426,0.0076505016,0.03425442,-0.006796098,0.024640746,0.008328807,0.038428605,-0.033002164,0.011642068,-0.011472492,0.03193253,-0.010076747,0.003678502,0.00040987742,-0.018457731,-0.0067504426,-0.0052959993,-0.014492255,-0.033497848,-0.012444294,-0.023440666,0.0340718,0.035898004,0.034724016,-0.007624413,-0.008954935,-0.005589497,0.0063428073,-0.021757947,0.013448708,-0.03425442,0.016709791,0.0007993731,-0.011211605,-0.0023496104,0.011394225,-0.0037339404,-0.014257456,-0.0010981698,-0.0013443816,0.019240392,0.0026398469,0.033810914,-0.03772421,0.00803531,-0.010070225,0.05796902,0.029610638,0.018157711,-0.005250344,0.008224452,-0.0064308564,0.04111574,-0.024066795,-0.025749514,0.0004557364,-0.008257063,0.01183121,-0.0065026004,0.013148688,0.004813359,0.008902757,-0.014453121,0.017479407,-0.02182317,-0.02368851,-0.013474796,0.0052014277,-0.010644176,0.010918107,-0.0025632116,-0.015731467,0.015744511,-0.012098619,-0.025475584,0.014700964,-0.0020870934,-0.019892609,-0.005123162,-0.011602934,0.0021686205,0.012118186,-0.0003212167,-0.00018139776,-0.0021017683,0.007820078,0.01457052,-0.008204886,-0.026088666,0.0020593742,0.01457052,0.022175366,0.010259368,-0.022801494,-0.015183604,-0.020753535,-0.0049111913,-0.004017655,-0.039080825,0.0059286496,-0.004190492,-0.034750104,-0.040020015,-0.007748334,0.03814163,-0.02134053,0.0071548168,0.01995783,-0.0062514967,-0.0015506451,0.010852885,-0.16790666,0.01673588,0.0150662055,-0.015979309,0.009796294,0.0070178513,0.016814146,0.0012000786,0.008074442,0.0061699697,0.010187624,0.01339653,-0.036550224,-0.00020045471,0.0039654775,-0.017388096,-0.030106321,0.0051199007,0.0050416347,0.009744117,0.01719243,0.0012017093,0.025919091,-0.013826993,0.00818532,0.0122160185,-0.018327288,0.017779427,0.0074222255,-0.02034916,-0.010650698,0.008198364,0.022149278,0.026558263,0.0030866154,0.007272216,-0.0032464084,-0.0081657525,-0.01742723,0.022971071,0.025775602,0.0153531805,0.026271287,-0.0146096535,0.0034176153,-0.0043763737,0.0131030325,-0.004180709,0.010402855,-0.005837339,0.010546343,-0.01724461,0.007128728,-0.032036882,0.026740884,0.026766973,0.008139664,-0.0018686007,-0.0060460484,0.028645355,-0.012600826,-0.011883387,0.019214302,0.0030980292,-0.018718619,-0.00442529,-0.00090413535,0.007428748,-0.0262452,0.009124511,-0.008791881,-0.0051786005,0.01297259,-0.018731663,0.024392903,-0.015718421,-0.038846023,0.003945911,0.016579349,-0.0053546987,0.016579349,0.026675662,-0.002661044,-0.005971044,0.01742723,0.01908386,-0.0125095155,0.0056253686,-0.019057771,-0.014714008,0.003486098,-0.044142023,0.0045622555,-0.012711703,0.016853279,0.0090658115,4.068711e-05,-0.0031616203,-0.0070830733,-0.018836018,-0.009828906,-0.0022256894,-0.021327484,-0.00070847035,0.019618677,-0.004226364,0.01860122,0.018105535,0.02131444,0.029428016,-0.007813556,0.028827976,-0.011844255,0.022918893,-0.0021262264,0.0034339207,0.01998392,-0.017362008,0.008863624,-0.009972393,0.038663406,-0.018770795,0.0010272412,-0.004099182,0.019436058,-0.010585477,-0.06553473,-0.026597396,0.030054145,0.009952826,-0.016174974,-0.0030947682,-0.003362177,0.021079643,-0.031071601,0.011113772,0.005168817,-0.025710382,0.011765989,-0.010357201,0.014127013,-0.003916561,-0.019527366,-0.023440666,0.004223103,0.021392707,-0.007448314,-0.017466363,-0.009502796,0.00028595625,0.002007197,0.030001966,-0.033706557,0.03263692,0.010272413,-0.009594107,-0.012789969,-0.020714402,0.008061398,-0.02368851,0.011452924,-0.0029675858,-0.008094009,-0.0053481767,0.017935958,-0.02182317,-0.0122029735,-0.005824295,-0.025619071,-0.032949988,0.01198122,-0.01860122,-0.035350144,0.0012653003,0.02396244,-0.019031683,-0.022475386,-0.0026365859,-0.012320373,0.010944196,0.004999241,-0.012326895,-0.0059351716,0.007774423,-0.0033850046,-0.011048551,-0.01526187,0.007989654,0.00019148673,0.035715386,0.018379467,-0.02610171,-0.020453515,-0.009281043,0.0034534873,-0.014244412,-0.023375446,0.0010158274,-0.018040312,0.03232386,-0.012502993,-0.012594304,-0.028932331,-0.017883781,0.038115542,0.009939782,-0.014805319,-0.014400944,0.030784627,0.0080157425,0.011394225,0.034019623,0.02955846,0.014700964,0.010670265,-0.0066591324,0.01282258,0.04776835,0.030419385,-0.023636332,0.0040437435,0.023845041,-0.0060460484,-0.0054557924,0.0096658515,0.0056579798,-0.013748728,-0.011452924,-0.08979719,0.014687919,-0.0063460683,-0.017831603,-0.015248826,-0.0007533103,0.00267898,-0.016201062,0.0010525146,-0.0023023249,-0.012026875,0.00059433246,-0.025553849,-0.0077679004,-0.0057329847,-0.021066599,0.018288156,0.0067504426,0.00954193,-0.0005246268,0.0069461074,0.007383093,0.035558853,-0.0029366056,-0.02974108,0.008283151,-0.016748924,0.003561103,-0.020375248,-0.009978915,-0.014022659,-0.0051459894,0.0060427873,0.012105142,-0.005971044,0.0150662055,0.018914284,-0.0012506255,0.016996766,0.020727446,-0.0052209944,-0.026975682,-0.006023221,-0.013435664,0.009939782,-0.00089027575,-0.02552776,0.0046079108,0.015835822,0.010670265,0.022971071,0.015835822,-0.008446206,-0.014648787,-0.015444491,-0.00047163418,0.021210086,0.030549828,-0.01673588,-0.01517056,0.025397317,0.020231761,0.017022856,-0.0049861963,0.013592196,0.0065156445,-0.021510106,0.0057721175,-0.006258019,-0.041246183,-0.019188214,-0.013011723,0.0046079108,0.0054623145,0.0024702707,0.013318265,-0.01809249,-0.008811447,0.006486295,0.011433358,0.013011723,0.0029822607,-0.027549632,0.019644765,-0.0070765507,0.0081657525,-0.02230581,0.01390526,-0.02573647,0.019462146,-0.018275112,0.0153531805,-0.012039919,-0.0010492536,0.0022566696,-0.0064341174,0.0016068988,0.01622715,0.013813949,0.015992353,0.019540412,-0.004849231,-0.011518147,-0.033550024,-0.011113772,-0.012444294,-0.022449298,-0.03308043,-0.0010663742,0.0045589944,-0.016748924,0.010722442,-0.016488038,0.01324652,-0.019657811,0.024679879,0.0016639677,-0.0055340584,-0.04108965,0.0137095945,-0.014100924,-0.0120660085,0.018940372,-0.015874954,0.0032431474,0.0031224873,0.006313457,-0.014831407,-0.017896825,-0.018849062,0.0134095745,0.009737595,-0.026140844,-0.0110094175,0.0023121082,-0.025879957,0.0153531805,0.005596019,-0.016970677,0.017753338,-0.008557083,0.0018930589,-0.008133142,-0.0043894183,0.015901042,-0.005951477,0.003358916,-0.017153298,-0.01986652,0.007696157,0.012744314,-0.008635349,-0.022827584,-0.017440274,0.014635742,-0.009737595,0.0021360095,-0.012835624,0.010520255,0.031593375,0.014987939,-0.0077613783,0.0063525904,-0.010918107,-0.0069004525,0.027549632,-0.003603497,0.0033752213,-0.028854065,0.00027821117,-0.008661438,-0.027993139,-0.02230581,0.024601612,-0.014987939,0.0029512804,0.010768097,0.008902757,0.0155097125,0.0035382754,0.0021360095,-0.027940962,-0.034019623,-0.013644373,-0.006306935,0.0072265607,-0.017088076,-0.019723032]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40f40f64-a5da-11ee-8347-afa1db92f195', 'Health & Wellbeing', 'this article is about mental health', '[0.011855744,0.019919727,0.02201039,-0.032515645,-0.033554483,0.024464646,-0.012927046,-0.019582106,-0.010764964,-0.022594737,-0.013193249,0.025321687,-0.026931887,0.0007182594,-0.000569738,0.011686932,0.038177315,-0.009674183,0.0040482236,-0.007836738,-0.018919846,0.0074147093,0.0006228973,0.008531461,-0.017361587,0.02002361,0.0120570185,-0.02523079,-0.0050838157,-0.012108961,0.010271516,-0.0035223116,-0.00070324494,-0.016686343,0.0024964586,0.011570063,0.0044670054,-0.008421084,0.01902373,-0.019491207,0.0074861296,0.0010274762,-0.016387677,0.011505136,-0.02445166,0.010349428,0.029866606,-0.0158293,-0.013193249,0.013959392,0.024789283,0.034333613,-0.06508323,-0.0030905444,0.012823163,-0.0025435311,0.002631183,0.004324165,0.020478103,-0.013478929,0.00503512,-0.02537363,-0.02752922,0.008524968,-0.02364656,-0.008641837,-0.0019169815,0.011141542,0.016076025,-0.0022481114,0.027113684,0.012530989,-0.014504782,0.015998112,0.011102586,-0.018569237,-0.0077847955,-0.0118947,0.027139654,-0.0046358164,0.003885905,-0.023049228,-0.013530871,0.01947822,0.023737459,-0.008700272,-0.003911876,0.01310235,0.021270217,-0.00045408602,-0.012745249,0.0019364598,0.009070358,-0.0058629448,-0.009979342,0.033554483,0.018751035,0.001236867,0.0005401148,-0.024516588,-0.01784205,0.0057655536,-0.03080156,-0.011888208,-0.018828947,-0.018309528,-0.006129147,0.013264668,0.025321687,-0.009804038,-0.029295245,-0.0072394055,-0.014881361,-0.03654114,-0.0010420849,0.0023958213,-0.003254486,8.5978085e-05,0.006499233,-0.023231026,0.026282612,0.017543385,0.015439737,-0.00533054,-0.00051982503,0.012790699,-0.040306933,-0.0050123953,0.0014105479,0.0008489258,0.013147799,0.006005785,0.02945107,0.001280693,0.002981791,0.028412232,0.010667573,0.0043598753,-0.03537245,-0.011199977,0.005174714,0.02997049,-0.024373747,-0.019660018,-0.0033535005,0.010959745,0.00810294,0.018543266,0.00398005,0.009661198,-0.003921615,-0.026931887,0.01603707,0.0067394646,0.0076874048,0.027243538,-0.016530517,-0.0025402848,-0.031866368,-0.026061859,-0.004479991,-0.018945817,0.001744924,0.017751152,0.0055383076,0.024776297,0.008531461,0.0032041674,0.022893403,0.0045643966,0.021361116,0.045319326,-0.024114037,0.017790109,0.0023438793,0.012738757,-0.01051824,0.013582813,-0.02867194,-0.0034736162,-0.036385316,0.03212608,0.036125608,0.04370913,-0.012264786,0.007505608,0.013582813,0.0058694375,0.004262484,-0.003788514,0.010226066,0.028775826,0.014569709,-0.018374456,-0.6694275,-0.014920318,0.014115217,0.012706293,0.008901547,0.004736454,0.024036124,0.025750209,-0.011920671,0.025048992,-0.006830363,-0.0042202813,-0.0048630624,-0.011959627,-0.004145615,-0.006694015,-0.008810649,-0.039475862,0.01703695,0.0009049257,-0.011446701,0.017478457,-0.022750562,-0.01376461,-0.0015923446,0.016270807,0.0058272346,-0.0011516499,-0.0011824904,0.014803448,-0.017166806,0.025412586,0.0042332667,0.031035298,0.031762484,-0.020620944,-0.016933067,0.025048992,0.006067466,0.03207414,-0.036878765,-0.005135758,-0.0010031284,-0.00879117,0.0056454376,0.0071160435,0.036930706,0.009128793,0.021685753,0.008200331,0.011570063,-0.0025759947,0.008518475,0.009901429,-0.00031185444,0.0036164564,0.019673003,-0.013933421,0.02999646,0.028568057,-0.005905147,0.012991973,-0.024282848,-0.02565931,-0.007817259,0.0033194134,0.007044623,0.0067914063,-0.0027496757,-0.015764374,0.0159202,0.0091223,-0.014063275,-0.0013610407,0.032333847,0.024256878,0.01646559,-0.008758707,0.009667691,0.008498997,0.002649038,0.00021750681,-0.014790462,-0.011044151,0.036852796,-0.027347423,0.006979696,0.005054598,0.0027188351,0.0011548962,0.025983946,-0.017140834,-0.000545796,8.902156e-05,0.004613092,-0.009401488,-0.00074463617,0.012569945,0.024958095,0.022114273,0.0041261367,-0.0018341992,0.013556842,0.022062331,0.0025906034,0.014634637,-0.0066193487,0.016621415,0.02321804,-0.010427341,0.008843113,0.018764019,-0.017595327,0.022737578,-0.0021539666,-0.029139418,0.038151342,-0.0073887384,-0.012797191,0.0010428964,0.037190415,0.0028048637,0.0190497,-0.0014219101,0.0034573842,0.028516116,-0.035216622,0.0069667106,-0.015335852,-0.023984183,0.0095962705,-0.0037203403,0.03378822,0.0024396472,0.027113684,-0.008732736,-0.006401842,0.0018277065,0.01011569,-0.017855035,-0.017166806,-0.010193602,0.016660372,0.004768918,-0.01795892,-0.03298312,-3.020646e-05,-0.016283793,-0.013582813,0.015699446,-0.009823516,-0.019257467,-0.019867785,0.022477867,0.003200921,0.004720222,-0.0007738535,-0.019088658,-0.014517767,-0.008797663,0.0033729787,0.028983593,-0.028256405,-0.0089859525,-0.015933184,0.004142368,-0.010524732,0.01658246,0.013310118,-0.013582813,-0.0061681033,-0.0034930944,-0.0063921027,-0.008784678,-0.021750681,0.018673122,0.006577146,0.0032950658,0.0069732033,0.008096447,-0.02224413,-0.009544329,-0.025529455,-0.016361706,0.004324165,-0.011427223,0.026360527,0.015063157,0.012264786,0.014102232,0.0056259595,0.031996224,-0.011238934,0.024140008,-0.018673122,-0.0108428765,-0.025087949,0.015907213,0.038255226,-0.004911758,0.017738167,-0.0014762868,0.01379058,0.003033733,0.032827295,-0.0111155715,-0.008219809,-0.0072913473,0.007966592,-0.01881596,0.011161021,-0.00919372,-0.041943103,-0.002824342,-0.012745249,-0.016699329,0.00022582563,0.014128203,-0.039475862,-0.02376343,0.013556842,-0.025815135,-0.008875576,0.011654469,-0.0018975034,0.040488727,0.021529928,0.027243538,-0.0045643966,-0.016309764,-0.007823752,0.010992209,0.014660608,0.0042949477,0.0027107191,0.009284618,0.017634282,-0.036255464,0.03293118,0.01134931,-0.002692864,0.033866134,-0.016257823,-0.011342817,0.018179674,0.00262956,0.027840871,0.012966002,-0.0063336683,-0.014725535,-0.02267265,0.00784323,-0.021114392,0.0135178855,-0.0050286273,0.0048111207,-0.008180853,-0.0118947,0.0072458982,0.013056901,0.0158293,0.004434542,-0.002754545,-0.0022253867,0.011238934,0.010479283,-0.0038664269,-0.0025419078,-0.0016913589,-0.0071549998,-0.008213316,0.01459568,-0.004333904,-0.025126904,0.01390745,0.02758116,0.0018520541,0.000545796,0.02224413,0.03376225,-0.018192658,-0.015050172,0.0031846892,0.037190415,-0.019153584,-0.017335616,-0.009174242,0.025503485,-0.018543266,-0.006700508,-0.00067078124,0.039320037,0.016179908,0.0047591785,-0.01893283,0.0021150103,0.019270454,0.008395113,0.00642132,0.003304805,0.008823634,-0.008583403,0.002105271,-0.00883662,0.0015817939,-0.0071549998,-0.0340739,0.0021783144,-0.011355802,-0.006483001,0.016777242,-0.005989553,-0.005629206,-0.0041001653,-0.0061226543,-0.0019656771,-0.0123427,0.018166687,0.0245945,-0.008466533,0.017088892,-0.010985716,-0.0135178855,0.01781608,0.12507614,-0.0015785475,0.010492268,0.01196612,0.017426515,-0.010427341,-0.004830599,-0.020932594,0.017647268,-0.004622831,0.0010599399,-0.021218276,-0.003665152,-0.015309881,0.020854682,0.0060577267,-0.01758234,0.009466415,-0.0042300206,0.002123126,0.009031402,-0.034956913,-0.00503512,0.045501124,0.02269862,-0.0118947,0.021088421,0.027996697,0.0071549998,-0.006320683,-0.0019705468,0.006323929,-0.004324165,0.0033892104,-0.015933184,0.020205408,0.002963936,-0.0004337962,0.00817436,-0.009401488,0.013212726,0.011777831,0.010557196,-0.01445284,0.008453548,-0.01379058,0.009557314,0.036826823,-0.008310707,0.008557431,0.022490853,0.0004573324,-0.021465,-0.050097983,0.022737578,0.014271043,-0.003587239,0.020335263,-0.012569945,-0.029139418,-0.007395231,-0.030074373,-0.01051824,0.00770039,0.01637469,-0.023490734,0.0052526267,-0.008109433,0.006096683,0.009180735,0.023464764,-0.009336561,-0.002412053,0.017205762,0.0015509534,0.0016897357,0.013998348,0.015517649,-0.015959157,0.01139476,-0.0049409755,-0.003087298,-0.0033372685,-0.028152522,-0.001175186,-0.011537599,0.005340279,-0.006366132,-0.028568057,0.019906742,-0.0035352972,0.034671232,0.008401606,0.005742829,-0.000934143,0.03189234,0.0007653318,0.0004914193,-0.00043501362,0.00978456,0.022724591,-0.016868139,-0.01810176,-0.0111480355,0.01445284,-0.011167513,0.0015801707,0.018530281,-0.0022740823,-0.045864716,0.030697677,-0.006648566,-0.00025159368,0.021789636,-0.00039646297,-0.0037917604,0.014829419,0.0056681624,0.0018553005,-0.010648094,-0.0019543148,-0.04111203,0.005343525,0.0191406,-0.014348956,0.012498525,-0.0011305484,-0.025425572,-0.019750915,0.008336679,-0.008447055,0.003876166,-0.032515645,-0.022932358,-0.009505372,-0.02120529,-0.03129501,0.024724355,0.0031100225,-0.031944282,-0.0107325,-0.002902255,-0.011615513,-0.0053954674,0.032359816,-0.033866134,-0.006031756,-0.0066225952,-0.028412232,0.011096093,-0.017426515,-0.0046617878,-0.03968363,0.0034443988,-0.013985363,-0.013362059,-0.003700862,-0.008050998,0.01338803,0.011264904,0.026646206,-0.0050059026,-0.0020760538,0.020530045,-0.00035365144,-0.024581514,0.0054831193,0.01594617,-0.02023138,-0.004226774,0.015855271,7.238391e-05,0.022205172,-0.0018423151,0.018854918,0.02608783,-0.0036326882,-0.012907567,-0.0294251,-0.027918784,-0.023179082,-0.004710483,-0.024204936,0.00023394155,-0.036800854,-0.0057558143,0.032022197,0.026620235,0.0040287455,0.0068108845,-0.0014884607,-0.018153703,0.024737341,0.011342817,-0.023841342,-0.034879003,-0.0066193487,-0.017543385,-0.006771928,0.02890568,0.023698503,0.038462993,-0.0037398185,0.00095199805,-0.010310472,0.024620472,-0.018764019,-0.016218865,-0.008849605,-0.02485421,0.009810531,-0.008226302,-0.017764138,-0.03160666,0.026620235,-0.008473027,-0.014868376,0.04882541,0.00083269394,-0.038255226,-0.0112064695,-0.008401606,0.015530635,-0.0067394646,0.031243067,0.003489848,0.010154646,-0.035268564,0.01317377,-0.0010437081,-0.010563688,0.011329832,0.028308349,-0.006015524,-0.010180617,0.008817141,-0.00045083967,-0.010979224,-0.039346006,0.0065966244,0.020763783,0.0055025974,-0.0043825996,-0.00489228,-0.03563216,0.027477277,0.012258294,-0.0036294418,-0.015790345,-0.030723648,0.006252509,0.010511747,-0.021309175,0.026672177,-0.0014949534,0.0066615515,-0.01606304,0.00905088,-0.028853739,-0.008589895,0.0073173186,0.021075435,-0.03695668,-0.0025646323,0.037839692,-0.0036002246,0.010745485,0.010284501,0.0032853265,0.024737341,-0.018205645,-0.020504074,0.0151151,-0.0040125134,0.005567525,0.011654469,0.0039475863,-0.013264668,-0.024399718,-0.008284736,0.00081118674,0.007602999,-0.02402314,-0.0049344827,0.0063693784,-0.02497108,-0.0045643966,-0.0159202,-0.01902373,0.011660961,-0.017829064,-0.032255933,-0.02556841,0.033866134,0.0048013814,-0.016907096,0.0095703,0.033840165,-0.032567587,0.009550821,0.00068295514,0.0064245667,0.0012044034,0.0046877586,0.021750681,-0.023023257,0.018738048,-0.0091093145,-0.031866368,-0.017387558,0.003665152,0.027269509,-0.011368789,-0.008401606,0.0021783144,0.013349074,-0.027035771,0.0044215564,-0.038722705,0.0020370972,-0.0151151,-0.018075788,0.025607368,-0.010018298,0.004613092,-0.027607132,0.024867196,-0.0026100816,-0.026646206,-0.01094676,-0.01637469,0.023321923,0.0022659665,0.0038988907,-0.017322632,-0.00533054,-0.0117258895,0.0060804514,0.014141189,-0.0023162852,0.014465826,0.009401488,0.011109078,-0.025594382,0.005009149,-0.03404793,-0.03996931,-0.006103176,-0.021685753,-0.0037300794,0.0041099046,0.010784442,0.031684574,-0.023802387,-0.023231026,-0.0019721698,-0.033632394,-0.0106286155,0.019750915,0.029347187,0.009791053,-0.00027675307,0.0020046337,-0.0061421324,0.02191949,-0.0018845178,-0.018192658,-0.020127496,0.019698974,-0.00883662,-0.01982883,-0.0064115813,-0.0074861296,0.0073692603,0.02201039,-0.018023847,-0.01959509,0.005905147,-0.01637469,-0.003762543,-0.00507083,-0.011537599,-0.0044832374,0.00675245,0.008875576,-0.02812655,0.004992917,0.011777831,-0.017764138,-0.0015890982,0.021685753,0.01727069,0.006921261,0.008940504,-0.02778893,0.0009804037,-0.0063369144,-0.019893756,0.019698974,0.007680912,0.013491915,0.026490381,-0.009726125,-0.0037333257,-0.007434188,0.009842995,-0.013439973,-0.03321686,0.02002361,0.0012352439,0.0049604536,-0.01379058,-0.033554483,0.016011098,0.00507083,-0.023945227,-0.00850549,-0.0084405625,-0.002824342,-0.0007308391,-0.026879946,-0.026412468,-0.026412468,0.006035002,-0.012160903,-0.013199741,-0.002340633,-0.018854918,-0.021958448,6.5992615e-05,-0.0030986604,-0.005009149,0.0024152994,0.004937729,-0.0022497345,0.015985128,0.19488609,-0.01715382,-0.0011841136,0.002209155,0.013660726,-0.009914415,0.038151342,-0.013777595,-0.012725771,0.019361353,0.0099274,0.012466062,-0.013225712,0.01018711,-0.015621534,-0.029321216,-0.0318404,0.003885905,-0.027347423,-0.007025145,-0.013959392,-0.026542323,-0.0023828356,-0.019763902,0.020620944,0.0043436433,-0.015089128,-0.008141897,0.023308938,0.013842522,-0.006112915,-0.014608665,0.0063985954,0.0030288633,-0.017738167,-0.0112064695,0.005343525,-0.028697912,0.02203636,-0.007044623,0.005648684,0.017257703,-0.00569738,0.010635109,-0.009433952,0.02091961,-0.027477277,0.015933184,0.009304097,0.013738639,-0.042904027,0.0036683984,0.017478457,0.011193484,-0.02120529,0.00940798,0.019465236,0.014024319,-0.014426869,0.0020922855,0.017231733,0.011686932,-0.022841461,0.030022431,-0.016361706,0.03212608,-0.0051000477,0.021075435,-0.020984536,0.0045286864,0.01390745,0.00058110023,-0.033190887,-0.011251919,-0.005307815,-0.006817377,0.04129383,0.021114392,0.021633811,0.043397475,-0.022412939,-0.0037041083,-0.005431177,0.0033177903,-0.008076969,-0.018971788,0.0032512397,-0.0040482236,-0.022360997,-0.0030288633,0.009154764,0.005262366,-0.0010842877,0.004434542,0.01101818,0.030126315,0.0067459573,0.021218276,-0.010940268,-0.008057491,-0.01781608,0.051032938,-0.01139476,0.014569709,-0.017062921,-0.015569591,-0.011875222,0.03295715,-0.019335382,-0.009719633,-0.0009787806,-0.018802976,0.004385846,0.0019965176,0.0136087835,0.030411996,0.0070316377,-0.0046163383,0.010394878,-0.033190887,0.017803093,-0.012459569,0.006797899,-0.010797427,-0.0054993513,-0.0017546631,-0.02565931,-0.010219573,-0.009336561,-0.04220281,0.028542086,-0.0076354626,-0.01215441,0.00070081017,-0.02191949,0.010544211,0.02281549,0.006655059,-0.004866309,-0.0037950068,-0.0076549407,-0.026113803,-0.021283204,-0.0052234097,0.0077783028,-0.028152522,0.012349192,0.02333491,-0.0061778426,-0.015011216,-0.024373747,0.0015274172,-0.009583285,-0.0046617878,0.027399365,-0.017660255,-0.0062752333,-0.020491088,-0.011219455,-0.00015957939,-0.024127023,0.023568647,0.020491088,-0.01658246,-0.023633575,0.01277122,-0.1652792,0.011634991,0.008323693,-0.03895644,0.011803802,0.0008294476,0.0117843235,0.010284501,0.0064343056,0.023425806,0.0037852677,-0.004674773,-0.02025735,0.008206824,-0.00095118646,0.00073043327,-0.015855271,0.00824578,0.0023227779,-0.004210542,0.0302302,-0.011699918,0.01390745,0.0036261955,0.008473027,-0.011881715,-0.025048992,0.016413648,-0.008297722,0.001346432,-0.013842522,-0.0020841698,0.04859167,0.022971315,-0.012849133,0.0101741245,0.0041748323,-0.02591902,-0.009641719,3.7181082e-05,0.03895644,-0.00033011526,0.00361321,0.00836265,0.0037235867,0.015180027,0.006726479,-0.017439501,0.0068433485,-0.014413884,-0.010777949,-0.0040319916,0.006771928,-0.019387323,0.028204463,0.008784678,0.008154882,0.012654351,0.009979342,-0.017855035,-0.014504782,-0.012823163,0.0089859525,-0.0110246735,0.022101289,-0.015426751,-0.0087132575,-0.009466415,-0.03080156,0.008154882,-0.027399365,-0.016076025,0.0046065995,-0.005242888,0.008154882,-0.0118167875,-0.026477395,-0.015699446,-0.00594735,0.010420849,-0.0010932152,0.009330068,-0.020491088,-0.011790817,-0.004226774,0.021815607,0.0011232441,-0.002640922,-0.010213081,0.0005884046,0.012388148,-0.040904265,-0.012206352,-0.029684808,0.008745722,0.019426279,0.009537836,0.010784442,0.014193131,-0.021828594,0.013556842,0.0027042264,-0.0016962284,-0.0045741354,0.02295833,-0.01838744,0.016959038,-0.0012035917,0.011225948,0.012920553,0.0005920568,0.005041613,0.010135167,0.014777477,-0.0065576676,0.010180617,0.012751742,-0.034385554,0.018945817,-0.0052234097,0.04783851,0.008401606,-0.018919846,0.013082872,-0.0075315787,-0.009622241,-0.09017118,-0.016153937,0.022516824,0.029762723,0.0041163974,0.01175186,-0.00090167933,0.00113136,-0.030593792,0.016011098,0.018945817,-0.021802623,0.0030142546,0.0033194134,0.01471255,-0.022880416,-0.010979224,-0.013959392,-0.0008489258,0.02002361,0.009550821,-0.024555543,-0.00985598,-0.013920436,0.005411699,0.020127496,-0.044176605,0.031009328,0.011057137,0.0024786037,-0.012134932,-0.00940798,0.022101289,-0.024802268,0.008063983,-0.009089837,-0.016997995,-0.015725417,0.01127789,-0.01810176,-0.015154056,-0.008395113,0.005155236,-0.03763192,0.0051422506,-0.026191715,-0.02836029,-0.0075380714,0.00755755,-0.013056901,-0.011005195,0.001832576,-0.019322395,-0.009862472,0.018309528,-0.03329477,0.0049864245,0.0018374455,0.009700154,0.001201157,-0.013634754,-0.0042397594,-0.013634754,0.028022667,0.03152875,-0.0008586649,-0.014751506,0.0123621775,0.008882069,0.0043793535,-0.011927164,-0.011764846,-0.021880535,0.013751624,-0.020698857,0.006999174,-0.019621061,-0.008680793,0.0052688587,0.0010713021,-0.0151151,-0.00441831,0.017023966,-0.005736336,-0.00361321,-0.0047397004,0.015296896,0.005937611,-0.003262602,0.0053792354,0.0006975638,0.045137532,0.013362059,-0.021880535,0.016413648,6.629697e-05,0.0052526267,-0.008096447,0.019634048,0.0030045155,0.012134932,-0.015816316,-0.07022548,0.023049228,-0.0106286155,-0.0068628266,-0.01793295,-0.003447645,-0.003043472,-0.0015533881,-0.008232795,0.015452722,-0.013803566,0.022763548,0.02068587,0.0007393608,-0.02445166,-0.035034828,0.035294537,-0.012115453,-0.008758707,0.03129501,0.0070186523,0.012368671,0.029554954,0.010433834,-0.0278149,0.012595916,-0.014154174,0.017166806,-0.029243303,0.0038274704,0.0063012047,-0.013439973,-0.002235126,0.025607368,-0.0026360527,-0.0065284506,0.009362532,0.017919963,0.0071095508,0.034203757,-0.020581987,-0.017335616,-0.001744924,-0.0010250413,-0.009414474,-0.012901075,-0.024204936,-0.00049466564,0.026022904,0.023971198,0.031788457,0.01999764,-0.02002361,-0.011154528,-0.010005313,0.009894936,-0.0039248616,0.0222701,-0.016296778,-0.021114392,0.02158187,0.018374456,-0.010492268,0.008076969,0.008901547,0.030100344,-0.008343171,0.009791053,0.017309645,-0.03293118,-0.014569709,0.006882305,-0.0074276947,0.020607958,0.0027058495,0.007992564,-0.014816433,0.005525322,-0.025932005,0.018893875,0.010940268,0.009336561,-0.014803448,0.016127966,0.0007263753,0.022971315,-0.03212608,0.033035062,0.0017903731,0.0027659074,0.005989553,0.008596389,0.014024319,0.010849369,0.011472672,0.01769921,-0.006830363,-0.003726833,0.026828004,-0.007310826,0.026516352,-0.00033011526,-0.0038826587,-0.035242595,-0.010524732,0.00864833,-0.003772282,-0.029528983,-0.010777949,0.010836383,-0.00890804,0.020569002,-0.010557196,0.0042202813,-0.019179555,-0.00027999943,0.00905088,0.0051941923,-0.035476334,0.03887853,-0.027503248,-0.0034736162,0.0027594147,-0.0025500238,0.01338803,-0.00018960831,-0.006606363,-0.0015420258,-0.006437552,-0.021426043,-0.0058337273,-0.0067914063,-0.022114273,-0.011583049,-0.00499941,-0.032879237,6.78187e-05,0.00550909,-0.011446701,0.03950183,0.007356275,-0.00045936138,0.020348249,0.004869555,0.015699446,-0.015205998,0.017452486,-0.022984302,-0.009933893,-0.007129029,-0.020517059,-0.015933184,-0.031554718,-0.006031756,0.027451307,-0.0053013223,0.0095638065,0.013530871,0.005885669,0.01329064,0.0008399983,-0.016426632,-0.00023962269,-0.004431295,-0.011362296,0.0127582345,-0.016426632,-0.003752804,-0.013660726,-0.0074147093,0.0061064223,-0.046825644,-0.009817024,0.029840635,-0.020569002,-0.004392339,-0.00067808555,0.0006634769,0.040644556,-0.0014016203,0.02203636,-0.013310118,0.0073043327,-0.011712903,-0.01390745,0.02836029,-0.0126673365,-0.027892813]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('40ff6d64-a5da-11ee-8347-e72f378a59e9', 'Health & Wellbeing', 'this article is about healthcare', '[0.02102081,0.017315175,0.01856816,-0.032977477,-0.01816827,0.01852817,-0.011856697,-0.012663138,-0.013742837,-0.018514842,0.005318518,0.018554829,-0.021780597,0.0062382617,-0.006218267,0.0022043858,0.04238819,-0.01716855,0.015822258,-0.020181043,-0.017248526,0.005508465,-0.0045054113,0.019101344,-0.012663138,0.015662303,0.008271028,-0.025992757,-0.006584832,-0.004525406,0.010557058,-0.0052651996,-0.0069580614,-0.020261021,0.00093557267,0.011083579,0.00026888342,-0.014382659,0.019474573,-0.015888905,0.010936952,0.0063748905,-0.002207718,0.02515299,-0.024059962,0.006164949,0.03535015,-0.010537064,-0.007271307,0.011810043,0.0036289888,0.02761897,-0.069473974,-5.5505367e-05,0.007891134,0.0040155477,-0.001234656,0.008864197,0.01121021,-0.01398277,0.006001661,-0.017661745,-0.03212438,-0.00033282393,-0.028312111,-0.017688405,-0.006051647,0.011696741,0.014995822,0.012356557,0.032231018,0.014849195,-0.012669803,0.018341556,0.01226325,-0.022433748,-0.007171335,-0.009170778,0.009244091,0.005551786,-0.00018359468,-0.015089129,-0.009037482,0.01860815,0.030951375,-0.0114368135,-0.009190773,0.02100748,0.018768104,-0.005575113,0.0050752526,-0.0060716416,0.0019611202,-0.0017928338,-0.012109959,0.028791977,0.015422369,0.0048419842,0.009890578,-0.02131406,-0.014369329,0.026339328,-0.033377368,-0.013929452,-0.029138546,-0.0116900755,-0.010783662,0.010470415,0.028605362,-0.015648972,-0.034896944,-0.0021427362,-0.010870304,-0.03183113,0.0008114406,-0.0079311235,0.0021344053,0.0069447313,0.0061049657,-0.020554272,0.019634528,0.017915009,0.018088292,-0.001424603,0.004775336,0.01366286,-0.044734202,0.0027975538,0.0016778659,-0.0032407637,0.012636479,0.00010767833,0.02764563,-0.0008168557,0.0025226304,0.013456251,0.009570667,0.0043254616,-0.028285451,-0.020700898,0.005145233,0.034523714,-0.023006922,-0.0138361445,-0.0059550074,0.016981935,0.017221868,0.01858149,-0.0051818895,0.018861411,-0.0068980777,-0.024539828,0.023620086,0.00663815,0.006488192,0.01994111,-0.012903071,0.0047386796,-0.021940554,-0.021207424,-0.012109959,-0.031564537,0.008357671,0.0037356257,0.00137545,0.02455316,0.00979727,0.0065981615,0.02099415,0.017155219,0.0037989414,0.048333198,-0.01783503,0.007937788,0.003885584,0.0077844975,-0.01960787,0.013902793,-0.039642286,-0.001325464,-0.03215104,0.025832802,0.044547588,0.037989415,-0.011090243,0.012083299,0.021500675,0.009510683,0.011850031,0.005051926,0.012316568,0.031271286,0.010383774,-0.0039622295,-0.67821103,-0.016182158,0.019181322,0.014022759,0.007844481,0.004082196,0.023180207,0.01470257,-0.008750895,0.020767547,-0.011336841,-0.0013496239,0.0009564002,-0.0007531235,-0.0062349294,-0.004658702,0.0040955255,-0.042201575,0.013716178,-0.009490688,-0.00877089,0.011790048,-0.018354885,-0.008750895,0.003565673,0.026699226,0.0065248488,0.002026102,0.005105244,0.008957504,-0.019714506,0.022980263,-0.007937788,0.028418748,0.034150485,-0.012089965,-0.006991385,0.012009987,0.0123765515,0.026699226,-0.03324407,-0.0087442305,0.005271864,-0.011383494,-0.00464204,0.0031074674,0.024993036,0.0017944999,0.016168827,0.015422369,0.010050532,0.001464592,0.0032124382,0.012749781,-0.011416819,0.010050532,0.017568437,-0.010790327,0.03359064,0.020514283,-0.0030774758,0.01650207,-0.023766711,-0.0279922,-0.011083579,0.009697298,0.010003879,0.011923344,-0.007271307,-0.009703963,0.0149158435,0.0039655617,-0.011150226,0.005888359,0.033643957,0.025832802,0.007664531,-0.020554272,0.014755888,0.0098105995,0.0048619783,0.0022427083,-0.013322954,-0.0035523435,0.03257759,-0.023260185,-0.010916958,-0.0051419004,0.007637872,-0.0011546783,0.040788636,-0.014089407,-0.0014029425,-0.0034790307,0.0035023575,-0.010263807,-0.001786169,0.010210488,0.028125497,0.01366286,-0.0015220759,0.0037589525,0.009224096,0.025139662,-0.0014720898,0.02131406,-0.007944453,0.023979984,0.017781712,-0.025472902,0.0057817223,0.018221589,-0.01960787,0.018848082,-0.0024193258,-0.030738102,0.028125497,-0.0077911625,-0.01085031,-0.0005294358,0.03945567,-0.0024243244,0.02239376,-0.0048353192,-0.0014029425,0.027139105,-0.037482888,0.0017811704,-0.014049418,-0.035270173,0.008597604,-0.012343227,0.023393482,0.006778111,0.03500358,-0.015822258,-0.0031974423,0.0016420424,0.008031095,-0.015808929,-0.012343227,-0.019714506,0.017408483,-0.010783662,-0.01364953,-0.029271843,-0.0031857789,-0.0154623585,-0.010223818,0.012003322,-0.018154941,-0.021207424,-0.019647859,0.023886677,0.006084971,0.0066548125,0.002717576,-0.019367937,-0.0101705,-0.009803935,0.0011171887,0.028578704,-0.025126332,-0.0050086044,-0.012403211,0.009377387,-0.008124403,0.017581768,0.017781712,-0.017954998,-0.0011971664,-0.0024826415,0.00011382245,0.0076445364,-0.010737008,0.01994111,-0.0027225746,0.00823104,0.011103572,0.0045687268,-0.017528448,-0.022487067,-0.018861411,-0.0076112123,0.0033407358,-0.018754775,0.021167435,0.0141160665,0.01277644,0.013516233,-0.0115767745,0.016755331,-0.01743514,0.03257759,-0.009863918,-0.024713114,-0.033190753,0.02099415,0.033270728,-0.015795598,0.03324407,0.0025076347,0.020114396,-0.006488192,0.035643402,-0.011236869,0.005285194,-0.0023843355,0.014062748,-0.01646208,0.01398277,-0.004881973,-0.028605362,0.00010851143,-0.0053418446,-0.011063584,-0.009097465,0.005441817,-0.024086623,-0.010137175,0.0042288215,-0.016382102,-0.0025076347,-0.0013837811,-0.015902236,0.029964983,0.0122232605,0.02761897,0.00033823907,-0.0149291735,-0.013562887,0.010063862,0.016222147,-0.0014254361,0.0036423183,0.013502904,0.019021366,-0.034123823,0.018408203,0.005031931,0.0038122712,0.02725907,-0.0034107163,-0.013582882,0.0061816107,-0.0035856676,0.027698949,0.007671196,-0.006768114,-0.016275465,-0.011916679,0.007211324,-0.014835866,0.030818079,-0.0007497911,-0.0034890277,-0.00059233495,-0.007924459,0.022167157,0.012383216,0.025006365,0.010677025,-0.003995553,0.0027958876,0.014582603,0.008184386,-0.009497354,-0.006444871,-0.004865311,-0.009610656,-0.009657309,0.012576495,0.00507192,-0.012316568,0.013143005,0.04276142,0.003828933,-0.005111909,0.014422648,0.03263091,-0.014542614,-0.021087456,0.0048186574,0.027565653,-0.013542893,-0.026352657,-0.010437092,0.018674796,-0.030551488,0.008677582,0.003695637,0.026365986,0.01226325,-0.0015920564,-0.0058517028,0.0018511509,0.03183113,0.007417933,0.0014379326,0.0024726444,0.0037756145,-0.017181879,0.011570109,-0.011063584,0.015342392,-0.009110794,-0.028578704,0.00150708,-0.0018044972,-0.016195487,0.011083579,-0.01538238,0.00240433,-0.012996378,-0.004742012,0.003605662,-0.02206052,0.02138071,0.012009987,-0.012563166,0.011923344,-0.01171007,-0.005271864,0.016182158,0.12039312,-0.0012471525,0.01924797,0.022687012,0.0009888911,-0.012603154,0.0073179607,-0.013542893,0.016755331,-0.0072979666,0.0058916914,-0.017075242,0.004192165,-0.005111909,0.018248249,0.005465144,-0.014209374,0.00561177,-0.0030474842,-0.0023260186,0.008157727,-0.024659796,0.003572338,0.04313465,0.032764204,-0.009590661,0.026739215,0.021940554,0.0070846924,-0.0039389026,-0.0107503375,0.009230761,-0.011810043,0.0074645868,-0.022553716,0.013382938,-0.0021943885,-0.0016670355,0.017195208,-0.0044087716,0.0149291735,0.020074407,0.00788447,-0.01082365,0.011496796,-0.02134072,0.00031116328,0.034790307,-0.0064082146,0.011843367,0.020567602,-0.0010272138,-0.022873627,-0.050412618,0.017648416,0.008784219,-0.0038989135,0.015182436,-0.0031907775,-0.03500358,-0.016355442,-0.030658124,-0.012849753,-0.0009114127,0.011396824,-0.025846131,-0.01227658,-0.01572895,0.012483188,0.01049041,0.026339328,-0.012396546,-0.0013571219,0.023526778,0.006528181,-0.0052818614,0.021087456,0.009983885,-0.0067714467,0.0060316524,0.002470978,0.0048286547,-0.01049041,-0.034123823,0.0031291281,-0.018408203,-0.008517627,-0.015235755,-0.028312111,0.03215104,0.00017932503,0.02692583,0.0066814716,0.016568717,0.004222157,0.027152434,0.00093473954,-0.0043121316,-0.003908911,-8.695494e-05,0.011230204,-0.007271307,-0.007657866,0.0019327948,0.01650207,-0.0028275454,-0.0013146336,0.014969163,-0.0038522598,-0.04505411,0.026859183,-0.006024988,0.011856697,0.012269914,-0.004715353,0.0068714186,0.010577053,0.00062191003,-0.005961672,-0.00961732,-0.0033307385,-0.021074127,-0.0012413207,0.008704241,-0.015155777,0.013542893,-0.011076913,-0.017781712,-0.022527056,0.0015612317,-0.0053118533,0.0051752245,-0.024313224,-0.021900564,-0.013862804,-0.014462637,-0.032764204,0.02060759,0.00093890505,-0.037189636,-0.0073379553,0.0011830037,-0.0017228533,-0.012323233,0.027912222,-0.033883892,0.006174946,-0.00752457,-0.025286287,0.0075378995,-0.0020927503,-0.008697577,-0.024473181,-0.008784219,-0.012243255,-0.0120966295,-0.0052318755,-0.0074779163,0.015942225,0.02548623,0.02481975,-0.007551229,-0.0036289888,0.020261021,-8.75277e-05,-0.020247692,-0.0061949403,0.018074963,-0.025966099,-0.0061282925,0.016035533,0.0020944164,0.013462915,0.0092774145,0.013716178,0.017715063,0.0051319036,-0.026845854,-0.02699248,-0.023526778,-0.028205475,-0.011803377,-0.020341,-0.0044820844,-0.034523714,-0.008597604,0.030924717,0.02099415,0.0033124103,0.0073179607,0.0027808917,-0.0044254335,0.025326276,0.007797827,-0.022233805,-0.04022879,-0.008964169,-0.017635087,-0.00961732,0.024193259,0.025619527,0.026885841,-0.0023326834,-0.00875756,-0.007111352,0.02415327,-0.017395154,-0.024099952,-0.00092390925,-0.018994708,0.0034590361,-0.011343506,-0.016755331,-0.033404026,0.0075045754,-0.008251035,-0.02411328,0.04372115,-0.006414879,-0.04417436,-0.00018682294,-0.011730065,0.0086042695,-0.006824765,0.030738102,0.0088708615,-0.0005977501,-0.038149368,0.009064141,-0.0022943607,-0.01891473,0.009610656,0.031191308,-0.008910851,-0.012176607,0.015928894,0.005351842,-0.011056919,-0.047426786,0.017021924,0.019048026,0.0015362386,-0.0052385405,-0.0020444302,-0.023979984,0.030578146,0.020927502,-0.0022843634,-0.014475966,-0.02732572,0.0016703679,-7.1646704e-05,-0.02559287,0.03049817,0.0008214378,-0.005655091,-0.018648136,0.0025093008,-0.028552044,-0.01101693,-0.0028658682,0.013362943,-0.023206867,0.0047620065,0.03742957,-0.006328237,0.007771168,0.005821711,-0.0037122988,0.023406811,-0.01784836,-0.018354885,0.022993593,-0.0035756703,-0.007497911,0.011843367,-0.0033657288,0.0012179939,-0.03215104,-0.0070580333,0.0056850826,0.015355721,-0.026565932,-0.011656752,0.010077192,-0.018954718,-0.002665924,-0.0118300365,-0.008630929,0.009210767,-0.023406811,-0.02836543,-0.023193536,0.022113837,0.0073379553,-0.012163278,0.007491246,0.026859183,-0.03153788,0.0034023852,0.00028471233,0.013689519,-0.0028092172,-0.0056584235,0.010203823,-0.020447636,0.031671174,0.006158284,-0.03535015,-0.015862247,-0.0007722848,0.021940554,-0.004562062,-0.017048582,-1.7390987e-05,0.013716178,-0.019727835,-0.0025142995,-0.03700302,0.004995275,-0.0052918587,-0.015688961,0.023606755,-0.019861132,0.013576217,-0.017688405,0.0220072,-0.0019961104,-0.01891473,-0.009630649,-0.019221311,0.02903191,-0.0050152694,0.0033807247,-0.017795041,0.0010913626,-0.014555944,0.010996936,0.011736729,-0.0040688664,0.009504018,-0.00525187,0.009004158,-0.011736729,-0.005228543,-0.028552044,-0.038762532,-0.0047720037,-0.012663138,-0.0035290166,0.009404046,0.017115232,0.027459016,-0.02764563,-0.036549814,0.002485974,-0.032017745,-0.014609262,0.018141612,0.029938325,0.00033240736,0.0154623585,0.002989167,0.0014196044,0.019994428,0.0037389582,-0.018848082,-0.01646208,0.026512612,-0.018474853,-0.018661467,0.0027958876,-0.020221032,0.015422369,0.023313504,-0.0046487045,-0.016608706,0.01294306,-0.0199811,0.0004848649,-0.0022510395,-0.0075778887,-0.007864475,0.014582603,0.0056850826,-0.020567602,0.013182993,0.0106237065,-0.016222147,-0.008517627,0.017315175,0.008497632,0.0052918587,0.017421812,-0.01606219,-0.0073312903,-0.004998607,-0.028711999,0.0050086044,0.0101705,0.014902514,0.021727279,-0.015209096,-0.0025142995,-0.0073312903,0.0042621456,-0.010123846,-0.023606755,0.006584832,-0.003432377,-9.783732e-05,-0.0050752526,-0.03471033,0.010223818,-0.00113635,-0.017795041,-0.007777833,-0.011836702,-0.0006743954,-0.011510126,-0.023006922,-0.020727558,-0.02839209,0.0074779163,-0.007851145,-0.008784219,-0.0011505127,-0.013396267,-0.018021645,-0.0015187435,-0.007877805,-0.0060883034,0.016328784,-0.003499025,-0.008904185,0.018808093,0.1913067,-0.01647541,-0.0025909448,0.0015412372,0.020954162,-0.0072646425,0.033057455,-0.013129675,-0.018808093,0.012716456,0.0042088274,0.019154662,-0.016222147,0.0071180165,-0.023433471,-0.03049817,-0.036549814,0.012969719,-0.02170062,-0.00647153,-0.022313783,-0.02796554,-0.0046053836,-0.01743514,0.017701734,-0.001152179,-0.012689797,-0.00027617306,0.023166878,0.021194095,-0.0065148515,-0.021060798,-0.0022493731,0.007951118,-0.011643422,0.002042764,0.00075812207,-0.02553955,0.020087736,-0.0028208806,0.0003861424,0.022193816,-0.012703127,0.00035906662,-0.0013546225,0.022260465,-0.025392924,0.014022759,0.008657588,0.015715621,-0.04129516,-0.0014912512,0.015782269,0.010563723,-0.024393203,0.015555666,0.02094083,0.0064515355,-0.011176886,0.0067881085,0.028818637,0.013716178,-0.012963055,0.024033302,-0.013569552,0.028445408,-0.0017528449,0.018781433,-0.014835866,-0.00029637574,0.012856417,0.009344063,-0.030684784,-0.007131346,-0.014835866,-0.013083021,0.037589528,0.018248249,0.026166042,0.030871397,-0.018754775,0.005448482,-0.008570945,-0.003995553,-0.0017445139,-0.027232412,-0.003425712,0.006074974,-0.025299616,0.0027558987,0.007664531,0.01085031,-0.012876412,0.0056684203,0.0056584235,0.028791977,0.00428214,0.0279922,-0.015848918,-0.006298245,-0.017341834,0.06584832,-0.026339328,0.002372672,-0.010237147,-0.017368494,-0.013282966,0.03673643,-0.014529285,-0.009237426,0.008917515,-0.017155219,0.009923901,-0.00419883,0.029485118,0.025113001,0.0058083814,-0.012403211,0.011663416,-0.025352936,0.01364953,-0.01155678,0.016182158,-0.0006206604,-0.015808929,0.002709245,-0.016875299,-0.011243533,-0.015782269,-0.037696164,0.018488182,-0.012183272,-0.01644875,-0.002525963,-0.019901121,0.0033857233,0.013716178,-0.0031991086,-0.018061634,-0.0020177711,-0.007904464,-0.016422091,-0.019834474,-0.009530677,0.0061882758,-0.017994985,0.013756167,0.01786169,-0.005358507,-0.017208539,-0.028578704,0.00142377,-0.009164114,-0.023193536,0.031644516,-0.021207424,-0.0091374535,-0.012136619,0.010970277,0.0040222127,-0.01716855,0.009730622,0.032071065,-0.02063425,-0.019381266,0.0072046593,-0.1720054,0.008597604,0.0060949684,-0.02975171,0.009830594,0.0035523435,0.009697298,0.01506247,0.007864475,0.013969441,0.0040688664,-0.007591218,-0.02170062,0.005961672,0.0057417336,-0.00018109537,-0.032017745,0.02415327,0.0076845256,-0.002469312,0.029991644,-0.008477638,0.0072646425,-0.010650366,0.010237147,-0.012216596,-0.021087456,0.013129675,-0.0045887213,0.007584553,-0.0146492515,0.004042207,0.04164173,0.020767547,-0.01612884,0.0070447037,0.004658702,-0.017248526,-0.010130511,0.011603434,0.037909437,-0.00052568683,0.00327742,0.007071363,-0.0014354334,0.012789769,0.016915286,-0.012143283,0.019661188,-0.023380151,-0.0055951076,-0.0043654502,-0.0007964447,-0.008504297,0.030391531,0.016662024,0.0014854195,0.010117181,0.005308521,-0.0049852775,-0.0027409028,-0.019461244,0.0066781393,-0.006971391,0.015329062,-0.013063027,-0.004298802,-0.011410154,-0.017635087,0.00612496,-0.036816407,-0.0146492515,0.0019644527,0.0026942492,0.020687569,-0.007304631,-0.032337654,-0.009757281,-0.0031824466,0.00069438986,0.0013279633,0.0077844975,-0.014182715,-0.01122354,0.0019277962,0.02484641,-0.0033307385,-0.0013429591,-0.0015653971,0.0011513459,0.011936674,-0.049079657,-0.021434028,-0.034497052,-0.0024209921,0.024726443,0.0073179607,0.006058312,0.011183551,-0.02940514,0.011383494,0.004865311,-0.014742559,0.00039488997,0.0138361445,-0.008964169,0.019421255,0.0076778606,0.022153826,0.012256585,0.000819355,0.013589547,0.016928617,0.0019527891,-0.013796155,0.019101344,0.003210772,-0.03508356,0.014435978,-0.019714506,0.038282666,0.00716467,-0.015662303,0.011823372,-0.010150505,-0.00081977155,-0.08840203,-0.020207703,0.034683667,0.019861132,-0.00699805,0.012016651,-0.0022177154,-0.0012138285,-0.03183113,0.021607313,0.0010463751,-0.02134072,-0.003137459,0.001777838,0.02519298,-0.021300731,-0.017195208,-0.022660352,0.003442374,0.020527614,0.0050585903,-0.02519298,-0.004938624,-0.019194651,0.0054784734,0.025939438,-0.03774948,0.026352657,0.011763389,-0.000489447,-0.009230761,-0.010283801,0.018074963,-0.027165763,0.008644258,-0.0171019,-0.018288238,-0.006464865,0.008357671,-0.031617858,-0.011463473,-0.015369051,-0.005911686,-0.042548142,0.012836423,-0.024566488,-0.023260185,-0.008257699,0.009710628,-0.018834751,-0.005831708,-0.0005844205,-0.029964983,-0.014089407,0.013609541,-0.025726166,-0.0014296017,-0.0030191587,0.013429591,0.00041571748,-0.0141293965,-0.00821771,-0.022793649,0.03596331,0.028258793,-0.0091507835,-0.008377666,0.017968327,-0.002872533,-0.0010155503,-0.014409319,-0.014302681,-0.02028768,0.0138361445,-0.02171395,-0.0028525386,-0.011810043,-0.0048453165,0.014502626,0.0049686157,-0.009597326,0.0005835874,0.014569273,-0.007104687,-0.007391274,0.008897521,0.014355999,0.006991385,0.0006685637,0.002889195,0.01434267,0.038762532,0.010417097,-0.011616763,0.020954162,0.011230204,-0.0012779773,-0.0054818057,0.004752009,0.001013051,0.010010544,-0.0075645586,-0.07661865,0.017661745,-0.014795877,-0.00094223744,-0.012583161,-0.012436534,-0.00087142386,-0.0044920817,-0.015715621,0.013309625,-0.022127168,0.028498726,0.014395989,0.0070380387,-0.012756445,-0.033084113,0.033377368,0.0002951261,0.00647153,0.03500358,0.0071846647,0.000905581,0.03113799,-0.0018328226,-0.022327112,0.023220196,-0.008590939,0.013929452,-0.021220753,-0.0061716135,0.003968894,-0.008777554,-0.007551229,0.015329062,0.0030491503,-0.0062116026,0.0033973868,0.012456529,0.014742559,0.039002467,-0.015822258,-0.022273794,-0.0037556202,-0.0038722544,-0.009464029,-0.009963891,-0.015075799,0.0054284874,0.018648136,0.016955275,0.028418748,0.016555388,-0.028258793,-0.013756167,-0.011496796,0.0030241574,0.00023222696,0.024059962,-0.014169385,-0.024259906,0.019341277,0.023553437,-0.010563723,0.013742837,0.014795877,0.015222425,-0.0057517304,0.017648416,0.021207424,-0.033430684,-0.011676746,0.002191056,-0.01743514,0.019554552,0.015222425,0.0060316524,-0.022886956,0.0022926945,-0.0154623585,0.024299895,0.0073246257,0.011850031,-0.012756445,0.02240709,0.0045953863,0.022820309,-0.037189636,0.028232133,-0.008457643,0.01067036,-0.0020877516,0.011476802,0.008417655,0.013382938,0.0044587576,0.01607552,0.009264085,-0.0024909726,0.017181879,0.011163556,0.033137433,0.007031374,-0.0055117975,-0.03321741,-0.019661188,-6.9720154e-05,-0.0003203274,-0.02975171,-0.009577331,0.012836423,-0.0031807804,0.03255093,-0.0018578157,-0.0005798384,-0.021447357,-0.007697855,0.0042621456,-0.002164397,-0.039269056,0.038629238,-0.02969839,-0.013596212,0.001186336,-0.011796713,0.017701734,0.0026559266,0.0031041352,-0.0050019394,-0.0020127725,-0.017608427,-0.013929452,-0.0028458736,-0.025726166,-0.023620086,-0.0054851384,-0.03220436,0.009377387,0.004025545,-0.0110036,0.040815294,0.0071779997,-0.0022193815,0.013536228,0.0040721986,0.017715063,-1.472246e-05,0.020434307,-0.030684784,-0.0045454,0.007104687,-0.01538238,-0.015635643,-0.023166878,-0.006134957,0.020087736,-0.00040238787,0.008724236,0.007964447,0.021394039,0.006661477,0.009557337,-0.021074127,-0.007591218,-0.011416819,-0.008444314,0.022513727,-0.013942782,0.0012088298,-0.0154623585,-0.010270472,0.006521516,-0.037189636,-0.010103852,0.03463035,-0.012343227,-0.011910015,0.0038655896,0.010210488,0.021527335,0.0020644248,0.035136875,-0.024099952,-0.0031474563,-0.027072456,-0.017555108,0.029565096,-0.004332126,-0.009030817]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41082026-a5da-11ee-8347-fb7839f02191', 'Health & Wellbeing', 'this article is about food', '[0.032317445,0.0033778674,0.011218059,-0.011873319,-0.018910816,0.012371317,-0.015215147,-0.028071357,-0.012718605,-0.02883146,0.006755735,0.015922828,-0.031976707,-0.0015750822,-0.018176924,0.014323993,0.04846306,-0.006038225,0.008367675,-0.019041868,-0.01567383,0.011630872,0.016093196,0.0061528953,-0.010516929,0.021649804,0.009167094,-0.028149989,-0.005071716,0.011237716,0.022881694,-0.0032910455,-0.0050160186,-0.012043687,0.004957045,0.0056417924,-0.0028864222,-0.016774667,0.021505646,-0.018766658,0.008616675,-0.00014006192,-0.0052191494,0.02387769,-0.027389886,0.001844558,0.03512196,-0.002080452,-0.0034040778,0.010202405,0.02455916,0.017443033,-0.058554072,-0.0038693128,0.005107755,0.009376776,-0.0056319633,0.009507828,0.024716424,-0.024768844,0.0064903544,0.0019264657,-0.036327638,0.0043607582,-0.01416673,-0.021885699,-0.004835822,0.0063822367,0.00928504,0.010464509,0.015529672,0.02106007,-0.017246455,0.022436118,0.011270479,-0.019054973,-0.010916639,-0.001985439,0.017809978,-0.004773572,0.007286496,-0.020208232,-0.0024637792,0.034361858,0.026315259,-0.011211506,-0.018648712,0.016433932,0.02448053,-0.009461961,-0.00041506652,-0.003297598,0.0077910465,-0.011290137,-0.034335647,0.030692399,0.016879508,0.013229708,-0.002743903,-0.018609395,-0.013472155,0.019867497,-0.020326179,-0.008800147,-0.032265022,-0.015280673,-0.009029489,0.00416418,0.019697128,-0.027258834,-0.03459775,-0.0012097745,-0.0023523849,-0.046838015,-0.014808886,0.0053698593,0.012115765,-0.0012015838,-0.0023474705,-0.017600294,0.014179836,0.0140356785,0.017351296,-0.00044107216,0.0102220625,0.015686935,-0.032212604,-0.0045737177,-0.0038889707,-0.012030581,0.014337098,0.010241721,0.031845655,0.0013088827,-0.008760832,0.025188211,-0.008741174,-0.003079724,-0.01273171,-0.013943942,0.010444852,0.04023299,-0.025686208,-0.016198037,-0.018019661,0.017783768,0.018635606,0.035646167,-0.017023666,0.0030223888,-0.0024899896,-0.014337098,0.03535785,-0.0017511835,0.021191122,0.018910816,-0.0155689875,0.0059038964,-0.025017843,-0.0067688404,0.0002975292,-0.039341837,0.0060578827,-0.005307609,0.0037710238,0.031190395,0.020797966,0.010431746,0.009684749,0.018111398,0.01441573,0.05076958,-0.013118314,0.0098944325,0.004586823,0.013603207,-0.009173646,0.012869315,-0.027232623,0.010300694,-0.038870048,0.0151103055,0.052447043,0.043194767,-0.007188207,0.0032681113,0.014520571,0.010949402,0.005327267,-0.00027848568,0.007332364,0.033496913,0.0050324,-0.013799785,-0.6785353,-0.0061954875,0.013393523,0.00817765,0.018032767,0.012659632,0.02161049,0.020116495,0.01041864,0.010582455,-0.016761562,-0.007089918,0.002093557,0.0005045505,0.0013408266,-0.009160541,0.008570806,-0.039839834,-0.0061201323,0.00722097,-0.016394615,0.0151103055,-0.016617404,-0.012417185,0.012744815,0.01974955,-0.00056475255,-0.00097633805,0.0057925023,0.00042878604,-0.01255479,0.019408815,0.0018920645,0.028647985,0.041386247,-0.008859121,-0.014323993,0.017429927,0.0011049329,0.032867864,-0.032894075,-0.011716057,0.019264657,-0.011270479,-0.0061856583,-0.005117584,0.03517438,0.020562071,0.02015581,0.0031518026,0.01982818,0.0077582835,-0.0031927563,0.009900985,-0.0018199858,0.012626869,0.03268439,-0.01570004,0.029932296,0.027783042,-0.0010050057,0.014808886,-0.019146709,-0.023379693,-0.019264657,0.0012286133,0.004134693,0.021243542,0.008348018,-0.009461961,0.02010339,0.005255189,-0.003469604,-0.0011458867,0.029879875,0.017469242,0.020719334,-0.00812523,0.014232256,0.011014928,-0.00064256473,0.01021551,-0.010733166,9.6958065e-05,0.022514747,-0.016604299,-0.012954499,-0.0052715703,0.0069129975,-0.009317803,0.03326102,-0.009881327,-0.010451403,0.0034564987,-0.00035035957,-0.006038225,-0.025096474,0.006061159,0.027835462,0.004953769,-0.005543503,0.0041183117,0.014284677,0.024847476,0.01066764,0.022554064,-0.002570259,0.029172193,0.0065001836,-0.027180202,0.016342195,0.010805245,-0.024283951,0.012705499,-0.010300694,-0.028438302,0.028202409,-0.010471062,-0.011434294,-0.0069523132,0.03514817,-0.0024768845,0.016997455,0.0046785595,-0.004393521,0.03638006,-0.038843837,0.004069167,-0.02702294,-0.047729168,0.020116495,0.010857665,0.016276669,-0.0019133604,0.009625776,0.003166546,0.0008837825,0.000900164,0.014219151,-0.014992358,-0.016748456,-0.015280673,0.008243176,-0.015713144,-0.017469242,-0.017180929,0.0031108488,-0.010792139,-0.012030581,0.008380781,-0.010510378,-0.012666184,-0.031321447,0.013943942,0.013419733,0.006257737,0.0018412818,-0.029879875,-0.00425264,0.00040953775,-0.0016692759,0.021400806,-0.02423153,-0.0050258473,-0.025528947,0.007764836,-0.0015324904,0.009822354,0.010379326,-0.019566076,0.0068671294,-0.007338917,-0.0068671294,0.01567383,-0.029853664,0.034623962,-0.0151103055,0.01723335,0.0114932675,0.007424101,-0.0068998924,-0.016420826,-0.0327106,-0.010575904,0.0028028765,-0.014022573,0.010353114,0.029145984,-0.0059301066,0.020260653,-0.00087804894,0.009042594,-0.0064805257,0.024100479,-0.013550785,-0.025358578,-0.033706598,0.014271572,0.027075361,-0.020378599,0.028647985,-0.01117219,0.0115915565,-0.016066985,0.03902731,-0.0096978545,0.005848199,-0.011696398,0.005543503,-0.0011360578,0.016669825,-0.0065132887,-0.03902731,0.0100582475,0.0062151453,0.0012777578,-0.009979616,-0.0069261026,-0.029906087,-0.013590101,0.0076534417,-0.024126688,-0.0050618867,-0.0032517298,-0.011847109,0.04521297,0.011755372,0.024598476,-0.01290863,-0.03268439,-0.004976703,0.01819003,0.007437206,0.00090917386,0.0115587935,-0.006329816,0.02040481,-0.029198404,0.015267568,0.021046964,0.0046687303,0.036537323,-0.002971606,-0.0019395709,0.01597525,-0.004576994,0.016106302,0.0066083013,-0.009501277,-0.011945398,-0.011401531,0.010438299,-0.036249008,0.010929744,-0.009114672,0.0005995633,-0.0064805257,-0.012934841,0.007148891,0.01142119,0.022934115,0.009068804,-0.0060152905,0.0058711334,0.012495817,0.010628324,-0.0050389525,-0.020496545,-0.006031672,-0.010706956,-0.018399714,-0.002634147,0.0011827451,-0.017875504,0.011899529,0.030273031,0.0019362946,0.0069785235,0.0009771571,0.03590827,-0.016696036,-0.0034794328,0.0068343664,0.03957773,-0.014350203,-0.014926832,-0.024624687,0.025633788,-0.02229196,0.0015652534,0.010706956,0.030037139,0.019408815,0.0032877692,-0.01174882,0.018884605,0.020522757,-0.0032484536,0.00557299,0.009147435,0.004131417,-0.017770663,0.011434294,0.0018822355,0.027494727,-0.0060349484,-0.017089192,0.0011876596,0.005294504,-0.008728069,0.010484166,-0.004305061,0.006582091,-0.0137735745,0.0022803063,0.0031730987,-0.022763748,0.029512929,0.010405536,-0.011853661,0.008341465,-0.025122685,-0.008374228,0.027625779,0.11228543,-0.0012851295,0.027075361,0.013485259,0.016853299,-0.0028667643,-0.009579907,-0.0076272315,0.013485259,-0.004590099,0.0057302522,-0.013072445,0.0015693487,-0.01788861,0.012672736,-0.012482711,-0.02261959,-0.008577359,0.00019709005,0.0005151985,0.009383329,-0.024021847,0.003708774,0.043587923,0.030744819,0.0040167463,0.030902082,0.035567537,0.008210413,-0.0048947954,-7.750502e-05,-0.0055238456,-0.00090753566,-0.0068867872,-0.018137608,0.012128871,0.011761924,0.0010017294,0.008413544,0.0036792874,0.009265383,0.013655627,0.0011000184,-0.011932292,0.0024015293,-0.01701056,-0.0035646167,0.046706963,-0.02083728,0.007384785,0.018268662,0.000867401,-0.008498727,-0.04466255,0.016342195,-0.0057957782,-0.00076952146,0.014572992,-0.0139701525,-0.046182755,-0.003253368,-0.024336372,-0.003274664,0.005517293,0.0067688404,-0.021951225,-0.014310888,-0.019435024,0.007601021,0.021741541,0.01728577,-0.010851112,0.0063789603,0.008413544,0.0049734265,0.0076534417,0.0086232275,0.007253733,-0.010608667,-0.001138515,-0.002720969,0.006552604,-0.008315255,-0.03278923,-0.0069129975,-0.011611215,0.007941756,-0.019605393,-0.024703318,0.013046235,-0.004740809,0.036878057,0.007201312,0.009376776,-0.0051110312,0.008400438,-0.01597525,-0.0048030587,-0.0013801423,-0.004957045,0.008433201,0.0111001115,-0.013485259,-0.005055334,0.011958503,-0.0023278126,0.008538043,0.0018167095,0.002311431,-0.029565351,0.029408088,0.0009009831,0.005451767,0.016813982,-0.0007220151,0.022711325,0.015608303,0.0015095562,-0.012895525,-0.009022936,-0.013917731,-0.028595565,-2.0003361e-05,0.00075518765,-0.007345469,0.011984713,-0.009501277,-0.025882786,-0.017298875,0.0008317712,-0.008341465,0.0004693303,-0.022449221,-0.020208232,-0.012672736,-0.015267568,-0.01944813,0.02453295,-0.004999637,-0.03892247,-0.0140356785,-0.011434294,-0.0031829276,-0.014704044,0.01906808,-0.04067857,0.00722097,-0.01706298,-0.018268662,0.018111398,0.0014022574,-0.01567383,-0.032448497,0.0049308348,-0.012594106,-0.015464146,-0.02035239,0.0044819815,0.01695814,0.024074268,0.029067352,-0.007168549,-0.0012236988,0.014048783,-0.0064575914,-0.028464513,-0.01180124,0.010163089,-0.028516933,-0.0098289065,0.029014932,0.0044852574,0.00089115417,0.009396435,0.012653079,0.029722612,-0.0008227614,-0.030063348,-0.024021847,-0.012305791,-0.007836915,-0.0036170376,-0.0241529,0.0084594125,-0.0033582097,-0.018596292,0.029381877,0.017574085,0.0039512203,0.020876598,0.0112966895,-0.021204228,0.028700406,-0.0021639976,-0.036537323,-0.042382244,-0.010104116,-0.008963963,-0.018504554,0.0213877,0.01180124,0.021151807,-0.007483074,-0.009488171,-0.00101893,0.017036771,-0.010549692,-0.021846382,0.00074576825,-0.023038957,-0.0050291237,-0.015739355,-0.021492543,-0.023943216,0.013786679,-0.016433932,-0.036039323,0.045658547,-0.0068867872,-0.04408592,-0.0024457595,-0.004531126,0.019998549,-0.0049472163,0.034781225,0.0062282505,0.00611358,-0.0410193,0.01673535,-0.0043345476,-0.017469242,0.003025665,0.019513655,0.009199857,-0.024690213,0.0005057791,0.015385515,-0.010241721,-0.04086204,0.022632696,0.016106302,0.010405536,-0.009140883,0.00096487097,-0.018556975,0.02450674,0.019697128,-0.0053174384,-0.007515837,-0.025607577,-0.00067491824,0.018452134,-0.018307976,0.02770441,-0.00455406,0.0027062255,-0.009933748,-0.0063593024,-0.033575546,-0.0046032043,0.0059038964,0.01657809,-0.020168915,0.015791776,0.02710157,-0.007882783,0.012056792,0.0068016034,0.009330909,0.025725525,-0.011794687,-0.025476525,0.011866766,0.007378232,0.005140518,0.0040167463,-0.0045049153,-0.0020427743,-0.026197312,-0.021505646,0.0008968877,0.0099271955,-0.035095748,-4.8479033e-05,0.009036041,-0.01854387,-0.022095382,-0.00878049,-0.0050160186,0.008583912,-0.018674921,-0.030246822,-0.009547144,0.017495453,0.011670188,-0.021256648,0.004259193,0.023523849,-0.038398262,0.013137972,-0.00815144,0.016604299,0.0049373875,-0.0045933756,0.0030879148,-0.0070637073,0.025620682,0.0009902624,-0.034886066,-0.019867497,0.0041445224,0.025804156,-0.0013154353,-0.012417185,0.014887517,0.0114932675,-0.015477251,0.0024703317,-0.02948672,-0.0065788147,-0.013432839,-0.013550785,0.028962512,-0.016840193,0.005953041,-0.0053633065,0.015319989,-0.003653077,-0.0035089196,0.00049963605,-0.027730621,0.045842018,0.011519479,0.0046687303,-0.01701056,0.00587441,-0.017652716,0.001875683,0.0036301427,-0.014114309,0.0111328745,0.01285621,0.0038562077,-0.015831092,-0.004108483,-0.03339207,-0.04345687,-0.0035220247,-0.006179106,-0.012777578,0.005366583,0.003102658,0.031635974,-0.03016819,-0.02765199,0.008826358,-0.023405902,-0.020902807,0.012869315,0.023838375,-0.007797599,-0.00812523,-0.0110673485,0.0047899536,-0.0018347292,0.0050291237,-0.00587441,-0.017076086,0.01879287,-0.010516929,-0.013799785,-0.0010123773,-0.017495453,0.0054288325,0.020758651,-0.013327997,-0.0048653088,-0.0049275584,-0.009095015,0.015228252,-0.0213877,-3.4477962e-05,0.007450311,0.012305791,0.015346199,-0.005163452,0.00212632,0.0115260305,-0.019644707,-0.0112311635,0.009252277,0.011250822,0.007863125,0.019159814,-0.018674921,-0.017705137,0.0010607028,-0.019094288,0.0051863864,-0.0004521297,0.014337098,0.009461961,-0.0025833643,-0.012495817,-0.012829999,-0.0067295246,-0.020260653,-0.015319989,0.010890428,0.005173281,0.0009574993,-0.013367313,-0.018098293,0.010012379,0.0035187486,-0.0056155818,-0.014874412,-0.006028396,0.0070112864,-0.005019295,-0.01210266,-0.029041141,-0.008079361,0.0066083013,-0.0063724075,-0.0060480535,-0.007266838,-0.018334188,-0.02360248,0.0011434294,-0.018819079,-0.012469606,0.004734257,-0.00659192,-0.018661818,0.0102220625,0.19332804,-0.0153068835,0.0022262472,0.016433932,0.031242818,-0.005176557,0.028805248,-0.008747727,-0.015595198,0.012128871,0.011742267,0.025777945,-0.011807793,0.0075879158,-0.018976342,-0.022370592,-0.041962877,0.0034892617,-0.0064182756,-0.027756833,-0.010582455,-0.039918464,-0.019959232,-0.01449436,0.028621776,-0.0065460517,-0.016538773,-0.006182382,0.020824177,0.017482348,-0.003928286,-0.019684022,-0.0017184204,0.005455043,-0.0058940677,0.010654534,0.007089918,-0.017469242,0.025843471,-0.015333094,-0.00016893433,0.009717512,0.008085914,0.0032369865,-0.015228252,0.012004371,-0.028700406,0.014101204,0.004511468,0.019959232,-0.036039323,-0.0034597751,0.010018932,0.0036399716,-0.012790684,0.006126685,0.025083369,0.0011336005,-0.009724065,0.0057630152,0.014939938,0.033182386,-0.015005464,0.019015657,-0.023340376,0.027416097,-0.006008738,0.012377869,-0.01846524,-0.0052257017,0.010425193,-0.0037611949,-0.020522757,-0.008944305,-0.0047637434,-0.008865673,0.02420532,0.012122318,0.022082277,0.039053522,-0.020601388,0.0062511843,-0.009009831,0.0064117233,-0.007601021,-0.026000734,0.0016119407,-0.004734257,-0.019933023,-0.016224248,0.0112311635,0.01240408,-0.0076927575,0.008787042,0.009475065,0.014009468,-0.005071716,0.016774667,-0.007299601,-0.013524575,-0.023156904,0.027337465,-0.020037863,0.017128507,-0.025044054,-0.02193812,-0.022829274,0.0344667,-0.011355663,-0.008800147,0.0058973436,-0.006755735,0.005130689,0.0021607212,0.016106302,0.02417911,0.0030420464,-0.011480163,0.013242813,-0.03381144,0.016119406,-0.009062252,0.015359304,0.0076206787,-0.024637792,-0.0023605756,-0.019133605,-0.010032037,-0.0149137275,-0.04854169,0.022816168,-0.011912635,-0.03268439,0.017849294,-0.012980709,0.008348018,0.009402988,0.0026865678,-0.00878049,-0.014625412,-0.016748456,-0.023890795,-0.013432839,-0.017377507,0.007417548,-0.021649804,-0.0003309065,0.012469606,-0.011807793,-0.010267931,-0.009042594,-0.00042837652,-0.017652716,-0.010071353,0.023117587,-0.021073176,-0.02448053,-0.011866766,0.0036792874,-0.006451039,-0.021191122,0.009514381,0.032553338,-0.012508921,-0.015490357,0.009704407,-0.16795635,0.010110668,0.010130326,-0.048148535,0.009016383,-0.0013506556,0.020326179,0.016119406,0.008741174,0.029145984,0.0034663277,-0.012128871,-0.027520938,-0.0059235543,0.022750642,-0.00850528,-0.014677834,0.021885699,-0.0042034956,0.004524573,0.021544963,-0.0013408266,0.017757557,-0.0114474,0.0035318537,0.0058187125,-0.006061159,0.01414052,-0.0029191852,0.016853299,-0.0054615955,0.010733166,0.03208155,0.017049877,-0.018452134,0.0018560252,0.0022688392,-0.019408815,-0.005638516,0.015136516,0.02609247,0.008924647,0.0042624692,0.012371317,0.004999637,-0.0012417185,0.007299601,-0.009429198,0.016813982,-0.023890795,0.0019051697,-0.001680743,0.005586095,-0.0037677474,0.026249733,0.0150972,-0.004393521,0.011309795,0.0029765205,-0.0023671284,0.006755735,-0.012266475,0.011919187,-0.015896618,0.013046235,-0.011571899,-0.011971608,-0.00044557708,-0.015608303,0.0015685296,-0.019487444,-0.004088825,0.0068802345,0.009468514,0.004891519,-0.0014170007,-0.02825483,-0.01600146,-0.0032550062,0.002971606,-0.0026079365,-0.002938843,-0.03250092,-0.0055664373,0.005477977,0.014219151,0.0011295051,0.0065362225,0.0009787952,-0.0016889337,0.0155034615,-0.030063348,-0.012705499,-0.03638006,-0.0010361306,0.024087373,0.010589008,0.017141612,0.01788861,-0.028176198,0.010713508,-0.0030600661,-0.018203134,0.010765929,0.028045146,-0.016984351,0.016617404,0.01162432,0.01982818,-0.0012155081,0.010857665,0.013308339,0.012417185,0.0149137275,-0.018307976,0.022737537,0.01665672,-0.036301427,0.026760835,-0.0013408266,0.022200223,0.019264657,-0.019343289,0.015031674,-0.011309795,0.0029666915,-0.08361123,-0.01725956,0.020090284,0.019186025,-0.020968333,0.006496907,0.003708774,-0.0033270847,-0.028359672,0.02234438,0.010792139,-0.022160908,-0.0004238716,-0.0070637073,0.027442306,-0.007836915,-0.013203498,-0.023536954,-0.00096978544,0.017194033,0.00707026,-0.020260653,-0.009638881,-0.010149984,0.006136514,0.037533317,-0.03512196,0.017220244,0.008302149,-0.001138515,0.00038639887,-0.01182745,0.020365493,-0.033051334,0.009081909,-0.0111656375,-0.0039086286,-0.010149984,0.0036399716,-0.020011654,-0.01507099,-0.0034859856,0.0010181109,-0.03889626,0.01725956,-0.02488679,-0.03205534,-0.0009009831,0.014127415,-0.018425923,-0.007528942,0.0024048057,-0.028779037,-0.007266838,0.015319989,-0.031059343,0.0012671099,-0.00722097,0.020994544,-0.0021328726,-0.019159814,-0.00850528,-0.03381144,0.030273031,0.030744819,-0.0032779402,-0.02267201,0.010628324,0.008210413,-0.009167094,-0.012803788,-0.017443033,-0.013957047,0.019723339,-0.015909724,-0.00812523,-0.019186025,-0.0030420464,0.014481256,-0.0049079005,-0.0033647623,-0.012718605,0.010713508,-0.0025211144,-0.0048980718,0.0009574993,0.024677107,0.017128507,-0.008898437,-0.0038332734,0.01260721,0.03257955,0.025188211,-0.013262471,-0.0007633784,0.022396801,-0.008164545,-0.004986532,0.026655994,-0.016211143,0.006310158,-0.007135786,-0.06867129,0.016381511,-0.008511833,-0.004858756,-0.0011892976,-0.01446815,-0.0009042594,0.0053633065,-0.008216966,0.020011654,-0.007581363,0.02571242,-0.0015546053,-0.008269386,-0.006257737,-0.042277403,0.033732805,-0.009651986,0.006605025,0.027075361,0.0068147085,0.009501277,0.034807432,0.000900164,-0.027232623,0.02704915,-0.012639973,0.021702224,-0.021872593,-0.004337824,0.0099927215,-0.013524575,-0.0014350204,0.023943216,-0.007601021,-0.0026832914,-0.008918094,0.017901715,0.015857302,0.020299967,-0.006074264,-0.0153724095,-0.00078672206,-0.012646526,-0.0003730889,-0.019356392,-0.016604299,-0.0048849666,0.024860581,0.02193812,0.03965636,0.022514747,-0.0058711334,-0.011735714,-0.0045671654,0.0038889707,0.015490357,0.0213877,-0.02073244,-0.034623962,0.016551878,0.01240408,-0.0061201323,0.0063527497,-0.0011540775,0.010130326,-0.0033745912,0.0067295246,0.02450674,-0.039997097,-0.008472517,0.011152533,-0.004622862,0.0059792516,0.026538048,0.006126685,-0.020142706,-0.006624683,-0.0048194407,0.025004737,0.002373681,0.0151103055,-0.018661818,0.031662185,0.005052058,0.015319989,-0.029748823,0.01597525,-0.014992358,0.00724718,0.0009820715,0.008669095,0.022160908,0.011060796,0.01625046,0.015188937,-0.0035547877,-0.006329816,0.014664728,0.0021115767,0.029853664,0.007004734,-0.00925883,-0.019946128,-0.017836189,-0.00039622778,-0.006693485,-0.036065534,-0.019238446,0.0056450684,-0.004590099,0.02324864,0.0044066263,0.0042034956,-0.013721153,-0.00022934115,-0.008977068,0.00910812,-0.029696403,0.033706598,-0.018530766,-0.007463416,-0.0011303242,-0.0057269763,0.00046892074,0.0023687663,0.004219877,-0.0065100123,0.0045737177,-0.021807067,-0.012620316,-0.004357482,-0.016198037,-0.019330183,-0.014808886,-0.02073244,0.02581726,0.0085904645,-0.02166291,0.036747005,0.0068343664,0.007352022,0.016984351,0.016433932,0.023969427,-0.003102658,0.003934839,-0.027625779,-0.0063527497,-0.00353513,-0.012987262,-0.016800877,-0.037926473,-0.012345106,0.019081183,-0.0062544607,-0.008872226,0.0014686025,0.009357119,0.011539136,0.0031829276,-0.016722245,0.00030612948,-0.015870407,-0.007922099,0.01766582,-0.013105208,0.0069261026,-0.027756833,-0.005563161,0.017652716,-0.055828188,-0.010536588,0.03328723,-0.01917292,-0.00063642167,0.011912635,0.00923262,0.030561347,6.4655775e-05,0.031321447,-0.019028762,0.01796724,-0.0176134,-0.010549692,0.026787046,-0.0151103055,-0.010549692]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('411b6be0-a5da-11ee-8347-ff487c78ded5', 'Health & Wellbeing', 'this article is about relationship advice', '[0.009681749,0.019207235,0.015261614,-0.021121448,-0.016394515,0.026929196,-0.007096911,-0.019715087,-0.0064490736,-0.025679097,-0.0018393369,0.017644612,-0.016824236,0.019545805,0.0036037983,0.007487566,0.04815482,-0.008959036,0.02028805,-0.020600574,-0.018790536,-0.0043004677,0.0032326754,-0.014376127,-0.013099986,0.005664507,0.010782096,-0.016329406,-0.012924191,-0.019480694,0.015404854,9.9088174e-05,0.0017839941,-0.021746498,-0.0068690283,0.007552676,-0.011289948,0.004359066,0.022345502,-0.011921508,0.016759127,-0.016550777,-0.009089255,0.014558434,-0.02422065,0.0012875359,0.017123738,-0.015404854,-0.0053812815,0.012741885,0.02737194,0.01768368,-0.0650051,-0.008119127,0.009395268,0.010274244,-0.010964402,0.013998494,0.0115503855,-0.0064327964,-0.0020248983,-0.025093114,-0.020235961,0.0026743633,-0.024806634,-0.009668727,-0.003707973,0.01502722,0.0029885157,0.010938358,0.023191923,0.01587364,-0.010905803,0.03461209,-0.0005200603,-0.029689828,-0.010384929,0.0016350566,0.0016033158,0.0066313795,-0.0007271892,-0.009785924,-0.021095404,0.03445583,0.025014983,0.0031447778,0.0019044463,0.019233279,0.00027569706,-0.019311411,-0.0030731577,0.006110505,0.0023764884,-0.009948697,-0.008946015,0.024207627,0.011211817,0.013738057,0.0015504146,-0.0046162475,-0.00593471,0.02428576,-0.031226408,-0.010046361,-0.027632376,-0.0075852303,-0.00449254,-0.009603618,0.029715871,-0.012227521,-0.031851456,0.0037177396,-0.0020786135,-0.022046,-0.0091022765,0.0046488023,-1.8693483e-05,-0.0075461646,-0.014363105,-0.009753369,0.030601358,0.0058435574,0.014454259,-0.013386467,0.0038284252,0.018412903,-0.037242506,0.0042711683,-0.008184236,0.0121624125,0.03133058,0.016381493,0.033752646,0.021798585,-0.00807355,0.015678313,0.0007324793,-0.019897394,-0.01763159,-0.023543512,-0.0011280181,0.04351904,-0.02513218,-0.007435479,-0.003847958,0.0123186745,0.02457224,0.0022788246,-0.00062911835,0.0049352827,0.009838011,-0.018152466,0.035914276,6.332894e-05,0.008392585,0.020509422,-0.022840332,-0.0058175134,-0.023608623,-0.012025683,-0.0038414472,-0.0053650043,0.026720846,0.018347792,-0.010267733,0.031538934,0.00933667,0.019441629,0.022345502,0.00688205,-0.0030910627,0.04310234,-0.0082819,0.024559218,0.0069471593,0.015964793,-0.022293415,-0.011700137,-0.030887838,0.005286873,-0.03336199,0.019233279,0.045706708,0.05182698,-0.019636957,0.013386467,-0.0033401058,0.004114906,-0.001609013,0.0059770313,0.016134078,0.04114906,0.00927156,-0.0030617635,-0.67213607,-0.010970913,0.014988155,0.027996987,0.008555358,0.0068494957,0.01789203,0.019024929,0.0021713942,0.011498298,-0.014519368,-0.00061446876,-0.011993128,-0.0095124645,-0.0056059086,0.00088548614,0.0027752828,-0.04797251,0.007591741,0.0048083197,-0.007975886,0.01783994,-0.0075852303,-0.016055947,0.0008126451,0.009733836,-0.005534288,0.002075358,-0.012826527,0.004954816,-0.010423995,0.03411726,-0.003974921,0.014831892,0.051410284,-0.023074726,-0.013425532,0.018621253,0.018478012,0.037398767,-0.01909004,-0.021980891,0.009564552,-0.010443527,-0.008867883,-0.010417484,0.024168562,-0.0012973023,0.021043317,0.004922261,0.01726698,0.00361682,-0.0047497214,-0.0015194877,-0.016055947,-0.0070122685,0.021733476,-0.010899292,0.021473039,0.023751862,-0.0029266619,0.004189782,-0.02261896,-0.013301824,-0.017644612,-0.0029055013,0.005345471,0.019832285,0.01179129,-0.017605547,0.007604763,-0.004017242,-0.016876323,0.0034931125,0.021577213,0.030497184,0.0022544086,-0.0028094652,-0.0006832404,0.005566843,0.013106497,0.0024367145,-0.017996203,-0.011289948,0.040914666,-0.015574139,-0.0204964,0.011263904,0.011101131,-0.005225019,0.03047114,-0.014415193,-0.011882442,0.016511712,0.02295753,-0.002907129,0.0011638283,0.0098184785,0.022762202,-0.008685577,0.0042874455,-0.00807355,0.017253958,0.013165095,0.0059151775,0.0031675661,-0.01537881,0.022267371,0.010664899,-0.0014462398,0.0056970613,0.02773655,-0.010313309,0.0071815527,-0.008464205,-0.0331276,0.013099986,-0.0041865264,0.007435479,-0.00688205,0.023387251,0.003799126,0.011465743,-0.008040995,-0.003016187,0.024025321,-0.021655343,0.020053657,-0.012898147,-0.025093114,0.010886271,0.0034377696,0.016160121,0.0036070538,0.0022478977,-0.013034876,-0.011485276,0.00054284855,0.022710115,-0.0039618993,-0.023426317,-0.010964402,0.014805849,0.0007809043,-0.0077219596,-0.029950265,0.006283045,-0.010521659,-0.01945465,0.001814921,0.0020786135,-0.015990838,-0.01222101,0.029403348,0.008535826,0.009095766,-0.0010368652,-0.022267371,-0.025952557,-0.013021855,0.0033531275,0.02169441,-0.03867491,-0.0062472345,-0.014558434,0.0006608591,0.0066541675,-0.001062095,0.022488743,-0.008242834,-0.0041669933,0.0034019595,-0.023934169,0.007819624,-0.03544549,0.024611305,-0.0035419445,-0.009343181,-0.0013754334,0.0019142126,-0.01833477,-0.007910777,-0.029820047,-0.010443527,0.003532178,-0.007168531,0.02521031,0.01432404,0.008171214,0.009453867,-0.020834967,0.009017634,-0.01783994,0.017084673,-0.014011515,-0.01994948,-0.019207235,0.013327869,0.030549271,-0.009252028,0.029898178,-0.02119958,0.035914276,-0.01523557,0.018412903,-0.0066802115,-0.0014649587,-0.008307943,0.020170853,-0.015209526,0.0100203175,-0.00877673,-0.031018058,-0.015899684,0.009362713,-0.0141808,-0.009707793,0.024311803,-0.026095796,-0.013855253,0.010261222,-0.012650732,-0.0047692545,0.005251063,-0.0044762627,0.043310687,0.01958487,0.017618569,-0.010117981,-0.020092722,-0.007240151,0.010612812,0.017709723,0.020170853,-0.0010962774,0.0051241,0.022384569,-0.035888232,0.022684071,-0.0025099625,-0.004570671,0.031122232,-0.013751078,-0.015248592,0.015391832,0.010808139,0.028908517,0.029507523,0.013002322,-0.002846903,-0.015535072,0.015196504,-0.015079307,0.008666044,-0.011576429,-0.015821554,-0.0047366996,-0.0015146044,0.012038705,0.011491787,0.020548487,0.00558312,0.0025880935,-0.0030796686,0.015886663,0.0066802115,-0.0069406484,-0.01768368,-0.011556896,-0.012175434,0.0030210703,0.0028501584,-0.00259786,-0.019767174,0.011875931,0.030210704,0.00054773176,-0.0055863755,0.013438554,0.027345894,-0.007376881,-0.0007483497,0.023348186,0.02485872,-0.02063964,-0.024728501,-0.0018556142,0.023517469,-0.006579292,0.006517438,0.022228306,0.019480694,0.012442382,0.0044339416,-0.0025636777,0.0021958102,0.026382277,-0.004818086,0.010703964,0.0013485758,0.017774832,-0.009766391,-0.001475539,-0.019819263,0.020509422,-0.017644612,-0.019780198,-0.019858329,-0.001390083,-0.008796263,0.008027974,-0.0058435574,-0.018790536,-0.009304116,-0.0068494957,-0.0038381917,-0.00954502,0.018230597,0.016186165,-0.020887055,0.023504447,-0.020952163,-0.024246693,-0.00077113794,0.1320937,-2.8993973e-05,0.02353049,0.013327869,-0.01172618,-0.00038414472,-0.009076233,-0.02233248,0.020392224,-0.0008806029,0.021173535,-0.0255619,-0.005918433,-0.011882442,0.016329406,0.006908094,-0.005752404,-0.006699744,0.002986888,0.0009644311,-0.0025213566,-0.027580287,0.0002858704,0.05083732,0.010358885,-0.0010238433,0.024481086,0.019129105,0.011537363,-0.010495615,-0.0063351323,0.022996595,-0.013256248,0.009707793,-0.02465037,0.018399881,0.0049580713,0.0067648534,0.0075852303,0.0065109273,0.0037828488,0.022723136,0.015678313,-0.0076633613,-0.004577182,-0.017071651,0.0035940318,0.033309903,-0.005797981,0.005329194,0.018608231,-0.0038577244,-0.011569918,-0.029090824,0.015691334,0.003714484,-0.013946407,0.0024302036,-0.015613204,-0.036304932,-0.006237468,-0.035471532,0.0063839643,0.00022727206,0.011563407,-0.04500353,-0.017084673,-0.02781468,0.008405607,0.002348817,0.023335164,-0.0147146955,0.011407144,0.016602864,0.010756052,0.008946015,0.01838686,0.013855253,-0.025574923,-0.005225019,-0.012175434,-0.001644823,-0.0033921932,-0.027606333,-0.01776181,0.0037177396,-0.023608623,-0.0068494957,-0.01916817,0.028413687,0.0007483497,0.02997631,0.012025683,-0.00023378298,0.008171214,0.012325185,-0.015092329,0.004762743,0.0011215073,0.0072206184,-0.008998102,-0.0165638,-0.017996203,-0.012950234,0.004818086,-0.00019573476,0.002130701,0.019155148,-0.013054409,-0.036044493,0.02872621,-0.015118374,0.0034214924,0.014558434,0.008093082,0.015613204,0.019975524,0.0075396537,0.0040335194,-0.012129857,-0.006410008,-0.038388427,0.0035028788,0.013464598,-0.02233248,0.016967477,-0.020470355,-0.034325607,-0.007624296,0.011289948,-0.0033889376,-0.006364431,-0.025666075,-0.024637349,-0.027424026,-0.015079307,-0.046540108,0.016277319,-0.004053052,-0.030445097,-0.010339352,-0.0032326754,-0.007064356,-0.01565227,0.047946468,-0.036903936,-0.010117981,-0.020978209,-0.024168562,0.017449286,-0.0016928411,-0.01685028,-0.039273914,-0.011049043,-0.0052412967,-0.008718132,0.001639126,0.01664193,0.015509029,0.009538509,0.017787853,-0.013959428,-0.008184236,0.016759127,0.012175434,-0.024962895,-0.001984205,0.012754907,-0.041904327,0.009082744,0.024598284,0.0040497966,0.0031171064,0.017397197,0.0050524794,0.04667033,-0.007734982,-0.021316776,-0.019597892,-0.02674689,-0.009284582,-0.015482985,-0.019649979,-0.00067469483,-0.04044588,0.004046541,0.027397983,0.023725819,0.009909632,-0.0021632556,0.0019353732,-0.0022088322,0.017605547,-0.0032522082,-0.023387251,-0.03924787,-0.0066867224,-0.01074303,-0.0036884404,0.022579895,0.020834967,0.03151289,0.0030682746,0.010065894,-0.020131787,0.005589631,-0.006348154,-0.01783994,0.015509029,-0.02057453,0.009597107,-0.01685028,-0.019819263,-0.018347792,0.006292811,-0.011016489,-0.010697453,0.040888622,-0.002063964,-0.039352044,-0.026720846,-0.006299322,0.004023753,0.0055928864,0.026212994,-0.0018784025,-0.0011011605,-0.023895103,0.016055947,0.007533143,-0.011524341,-0.0028371366,0.039508305,0.0072206184,-0.0043297666,0.0103784185,0.013529707,-0.023204945,-0.041826196,0.01566529,0.007995419,0.016407536,-0.003441025,0.0034345142,-0.03776338,0.03151289,0.015600182,0.011322503,-0.0028924795,-0.015600182,-0.0008049134,0.015391832,-0.0067713642,0.023712797,0.0073573478,0.0022072045,-0.0076503395,-0.010293776,0.0003684778,-0.0043004677,0.015092329,0.02099123,-0.023478404,-0.0011670837,0.02218924,-0.0048701735,0.0022999851,0.005518011,0.0141026685,0.024455043,-0.014936067,-0.018191531,0.016134078,-0.016303362,-0.013054409,0.007949842,0.014154756,0.00040143935,-0.032059807,-0.022150176,0.01270933,0.017110717,-0.024546197,0.0016578449,0.013581795,-0.015626226,0.0029575888,-0.0046585687,-0.022697093,-0.007891244,-0.022436656,-0.03502879,-0.03586219,0.01937652,4.6059726e-05,-0.013054409,0.01713676,0.020913098,-0.02914291,0.011491787,-0.0072141076,0.015990838,-0.020275028,0.012136368,0.014688652,-0.020379202,0.030080484,0.0051175887,-0.012071259,-0.018699383,0.007917288,0.0064620953,-0.009473399,-0.022046,-0.0052347854,0.017006543,-0.022631984,-0.0053259386,-0.03666954,-0.0012850943,-0.0059379656,-0.021121448,0.025731185,-0.021499082,0.01838686,-0.016941434,0.030939927,-0.009121809,-0.015443919,-0.012032194,-0.016368471,0.015899684,-0.0034377696,-0.0066867224,-0.008060528,-0.0024415976,-0.020795902,0.006514183,0.0120126605,-0.0039651548,0.0110425325,0.012872104,-0.009753369,-0.0019955991,0.006719277,-0.01937652,-0.044326395,-0.008822306,-0.006605336,-0.0030796686,0.010541191,0.009994273,0.03578406,-0.028804343,-0.044769138,-0.006501161,-0.028908517,-0.012474936,-0.0043492992,0.015300679,0.00884184,0.0015089074,-0.0053487266,0.008040995,0.022215284,-0.00030438585,-0.01158294,-0.021590235,0.021941826,-0.0035289226,-0.00417676,0.005869601,-0.009792435,-0.0027411005,0.02695524,-0.006816941,-0.017462308,-0.0020721026,-0.0067583425,-0.00039106258,-1.759985e-05,-0.010782096,-0.000874092,0.0074810553,-0.0029413113,-0.023608623,0.012865593,0.000703994,-0.01278095,-0.008861372,0.02043129,0.016303362,0.0009188546,0.0051078224,-0.023152858,-0.009434334,-0.01993646,-0.015860619,-0.003253836,-0.0068690283,0.009121809,0.030366965,-0.004346044,0.0031464056,-0.0023960213,0.0048213415,-0.0021160513,-0.017514395,0.013894319,0.004857152,-0.005830535,-0.014623542,-0.016407536,0.016941434,0.011954063,0.000673881,-0.0070252907,0.0006584175,0.011921508,0.0086465115,-0.023634667,-0.01390734,-0.01763159,0.007272706,-0.02155117,-0.019636957,0.008783241,-0.023061704,-0.023751862,-0.002942939,-0.010938358,-0.0058500683,-0.0011003467,-0.005407325,-0.0039228336,0.006299322,0.20762046,-0.012963256,0.010580257,0.0035582217,0.009922653,-0.02001459,0.032528594,-0.0086465115,-0.0065988246,0.0053650043,-0.010241688,0.02212413,-0.018998886,0.0092064515,-0.016238254,-0.020795902,-0.034091216,0.007129465,-0.0147146955,-0.0259786,-0.0073313043,-0.021473039,-0.0015634365,-0.024702458,0.02415554,-0.0076828944,-0.011504808,-0.017787853,0.014506346,0.024311803,-0.0106323445,-0.02534053,0.0057133385,0.0116024725,-0.004092118,-0.002500196,0.0131325405,-0.022918465,0.025900468,-0.0048962175,0.0026548307,0.0036623967,0.0025083348,0.015639247,-0.009929164,0.015639247,-0.00800193,0.017227914,0.0058012363,0.014792827,-0.03195563,0.0016155238,0.023816973,0.01018309,-0.024845699,0.01783994,0.02963774,0.018868668,-0.034716263,0.0012631199,0.0065402263,0.011016489,0.0010002413,0.016576821,-0.012644221,0.0380759,0.013099986,0.010306798,-0.012670265,0.0030926904,0.024611305,-0.0077870693,-0.019636957,-0.008294921,-0.0034214924,-0.0075070993,0.023908125,0.0054659233,0.019181192,0.028622037,-0.02765842,0.008223301,-0.012071259,0.0050296914,-0.01312603,-0.01790505,0.0033124343,-0.0042516356,-0.023829995,-0.005504989,0.011465743,0.011478765,-0.011771756,0.007598252,0.013868275,0.019050973,-0.013399488,0.028595993,-0.010899292,0.004964582,-0.024051366,0.035705924,0.0052771065,0.023621645,-0.03659141,-0.019116083,-0.016902367,0.03286716,-0.00621468,-0.013386467,0.0059542432,-0.010215645,0.011862909,0.010502126,0.012813505,0.022423634,0.011153218,-0.015183482,0.0007113188,-0.026798977,0.0077545145,-0.019298388,0.01903795,0.00068079884,-0.017449286,-0.0034670688,-0.02113447,-0.019663,-0.0050069033,-0.039117653,0.043284643,-0.008333987,-0.01382921,-0.008197257,-0.0053031505,0.01355575,0.025692118,0.0018409647,-0.0031724493,-0.0031105955,0.007520121,-0.018347792,-0.015287657,-0.0002999096,0.008138659,-0.022202263,0.019741131,0.008360031,-0.008522804,0.001790505,-0.018907733,0.0075005884,0.008386075,-0.005833791,0.013113008,-0.014558434,-0.015574139,-0.023087747,-0.0057068276,-0.0022478977,-0.016016882,0.02823138,0.023087747,-0.017709723,-0.0224627,-0.0035126454,-0.16636722,0.022215284,0.014923045,-0.028778298,0.014206843,0.017618569,0.011973595,0.018985864,0.0022006934,0.019298388,-0.0013697364,-0.01291768,-0.024702458,0.009909632,-0.005296639,0.010690942,-0.0065337154,0.0096622165,0.011368079,0.0034833462,0.010163558,-0.01649869,0.018425925,0.0063709426,0.0050524794,-0.0058012363,-0.014480302,0.002063964,-0.01502722,0.0129307015,-0.019988546,0.011218328,0.04276377,0.016446602,-0.015196504,0.0026483196,0.0017953882,-0.0114397,-0.0068234517,0.026772933,0.041800153,0.006364431,-0.002106285,0.011368079,-0.0042093145,0.028205337,-0.004189782,-0.010502126,0.0061528264,-0.02583536,-0.0077414927,0.0065923138,0.021824628,-0.012891636,0.02541866,0.023543512,-0.003314062,0.010749541,0.0033759158,-0.02105634,-0.00593471,-0.011921508,0.011283437,-0.015912706,0.006650912,-0.006895072,-0.014610521,-0.0021990656,-0.020691726,0.01979322,-0.0012541674,-0.021212602,-0.0039618993,-0.011062065,0.01678517,-0.014141734,-0.029455435,0.0035907764,0.002326029,-0.0045674155,-0.009356203,-0.00095954794,-0.0067908973,-0.0013461342,-0.005462668,0.02345236,-0.009108787,-0.012839548,-0.0073703695,0.0051273555,0.030236747,-0.04260751,-0.02521031,-0.036903936,-0.0013567145,0.011888953,0.020965187,0.008470717,0.012735374,-0.012064748,0.0053975587,-0.0034345142,-0.003600543,-0.0041669933,0.037867554,-0.035471532,0.015118374,0.00076503394,0.018634275,0.00047570464,-0.0046032257,0.0043558106,0.012403317,0.009714304,-0.01677215,0.01741022,0.023895103,-0.03552362,0.031903543,-0.0007695102,0.037060197,0.015105352,-0.013868275,0.0045511383,-0.016902367,-0.017188849,-0.086413026,-0.009616639,0.025965579,0.033179685,-0.004030264,0.023647688,0.0072857277,-0.014428215,-0.037216462,0.020743815,-0.0059770313,0.0012476564,-0.00326523,-0.005264085,0.0054040696,-0.038440514,-0.019558826,-0.015053264,-0.004837619,0.01734511,0.018399881,-0.026343212,-0.0058110026,0.0016163377,0.019298388,0.021303754,-0.025718164,0.024793612,0.011732691,0.0073573478,-0.011081599,-0.007624296,0.01649869,-0.02647343,-0.015626226,-0.02428576,-0.00996823,-0.00701878,0.018412903,-0.02935126,-0.017592525,-0.0007064356,0.0019125849,-0.04508166,0.00477251,-0.022566874,-0.029741917,0.015144417,0.0031415224,-0.013725035,-0.022944508,0.012338207,-0.039768744,-0.019155148,0.036695585,-0.023673732,0.0014747251,-0.0010824417,0.025028005,0.0031431501,-0.011133686,-0.008555358,-0.022449678,0.041305322,0.034013085,0.0071229544,-0.0047008893,0.02562701,0.014311018,-0.004206059,-0.00927156,-0.027892813,-0.016589843,0.011888953,-0.021668365,0.00779358,-0.013021855,-0.011198795,0.011713158,0.012019171,-0.0047301888,-0.011049043,0.0062732785,-0.006706255,0.0013615977,-0.007201086,0.030028397,0.013080453,-0.011895464,-0.0053943032,-0.0038577244,0.03799777,0.007240151,-0.01945465,0.006243979,-0.00751361,-0.022853354,-0.006094228,0.022658028,-0.009147853,-0.0018377092,0.0023602112,-0.06505719,0.028986648,-0.0023781161,0.0013786888,-0.027424026,-0.0154308975,0.008809284,-0.0019663,-0.016550777,-0.0024074153,-0.0062244465,0.021108426,0.0017758554,-0.011595962,-0.021564191,-0.036643498,0.023686754,-0.013073942,0.0040758406,0.02422065,-0.0037047176,-0.0009961718,0.033674516,0.013073942,-0.011283437,0.023491425,0.0028908518,0.00028017335,-0.02169441,0.012976279,0.0055700983,-0.02450713,-0.00571985,0.03578406,-0.00571985,-0.0116024725,-0.0026450641,0.02506707,0.0061072498,0.030236747,0.0016684252,-0.030106528,0.0008028787,0.004547883,-0.009069722,0.004437197,-0.0283616,-0.00231789,0.035237137,0.011648049,0.03385682,0.0050655017,-0.025119158,0.0021600001,-0.01726698,-0.0040432857,0.004723678,0.005680784,-0.027970944,-0.020470355,0.021616278,0.0318775,-0.004108395,0.0021095404,0.019389542,0.012396806,-0.007871711,0.021733476,0.015066286,-0.034065172,-0.00077724195,0.014857936,-0.0075852303,0.01362086,0.006999247,0.0129893,-0.017670657,0.009069722,-0.016524734,0.0073833917,0.01179129,-0.0005066315,-0.023843016,0.007337815,0.003271741,0.021668365,-0.022944508,0.034507915,6.307461e-05,0.012084281,0.012676775,0.011140197,0.012494469,-0.008008441,-0.0011125547,0.024559218,-0.0066737006,-0.011452721,0.0033759158,-0.005462668,0.018139444,0.0066444012,-0.012188456,-0.03159102,-0.01341251,-0.0055700983,0.00037844764,-0.031825412,-0.021941826,0.0054236026,0.0011524342,0.024481086,0.012409828,0.0060746954,-0.008444672,-0.0068299626,0.011745713,-0.015743421,-0.032111894,0.032945294,-0.013738057,0.0032749965,0.0047074,0.004684612,0.008978569,0.009225984,-0.004626014,-0.009733836,-0.0003477242,-0.0318775,0.0050948006,-0.0027215676,-0.010423995,-0.0059867976,-0.0112443715,-0.023764884,0.0035289226,0.0152746355,-0.023400273,0.03940413,0.008483739,-0.008750686,0.014441237,0.015743421,0.013301824,-0.0003424341,0.0053682597,-0.023543512,-0.02113447,-0.011172751,-0.014975132,-0.012403317,-0.024415977,0.0027590054,0.017293023,-0.012728862,-0.0036396084,-0.0011573173,-0.00701878,0.006621613,0.0077414927,-0.024455043,0.010951379,-0.0003587114,-0.015443919,0.006165848,-0.0057393825,0.002628787,-0.013347401,-0.017644612,0.0037861043,-0.036825806,-0.007201086,0.021733476,-0.004414409,-0.012403317,0.0030389754,0.009505954,0.039221827,0.0066541675,0.018139444,-0.0027118013,0.001177664,-0.021954847,0.0133343795,0.015183482,-0.0019207236,-0.018972842]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('411eef0e-a5da-11ee-8347-8fc863b9f160', 'Health & Wellbeing', 'this article is about family', '[0.020429786,0.020282617,-0.0045655956,-0.017660327,-0.023453448,0.024456877,-0.006729655,-0.0061911484,-0.01664352,-0.029086024,-0.022436643,0.014208536,-0.019707318,0.010990878,-0.011051083,0.012355539,0.036310703,-0.024938522,0.014716939,-0.017299093,-0.015787262,0.009224845,-0.005612505,0.0026055672,-0.0137402695,0.01941298,0.010234962,-0.027373506,-0.0007249765,-0.00970649,0.012475951,-0.0068701347,0.007893631,-0.023453448,-0.00036332442,0.0013905835,-0.009485736,-0.019707318,0.025834918,-0.014583148,0.019934762,-0.0034317225,-0.012168232,0.019065125,-0.019573528,0.00057404424,0.028176248,-0.0037695433,-0.011077841,0.00260055,0.0060941507,0.031842105,-0.058707207,-0.010241652,0.0076661874,0.0013429207,-0.005257961,0.007793288,0.016563246,-0.0134258615,0.00312066,-0.00887699,-0.030745024,0.009619527,-0.030852055,-0.008890369,0.0027259784,0.0129977325,0.009719869,0.0121414745,0.045568995,0.01025503,-0.020001657,0.02357386,0.0064185923,-0.022423264,-0.005893465,-0.0034785492,0.01526548,0.0050539305,-0.008154522,-0.011419007,-0.009813522,0.020911433,0.029219814,-0.0010602885,-0.009492425,0.024082264,0.006766447,-0.003045403,-0.0050940677,-0.0069704773,0.0038799203,-0.010081103,-0.008422103,0.032377265,0.011914031,0.0059570153,0.0059402916,-0.018075077,-0.0134258615,0.021205772,-0.0131315235,-0.005893465,-0.019185537,-0.011010946,-0.018971471,-0.0021540248,0.02453715,-0.015412648,-0.043026976,-0.0051241703,0.004050503,-0.027855152,-0.0016564918,-0.015305616,0.002724306,-0.0017125165,-0.00040764248,-0.006127598,0.026584143,0.013399104,0.0064721084,-0.005903499,-0.0031056085,0.010020898,-0.044605702,-0.002838028,-0.014262051,-0.004341497,0.01359979,0.005809846,0.02523286,0.000691947,-0.008127764,0.015038036,0.005863362,-0.0055556446,-0.0216339,-0.009833591,0.009699801,0.032243475,-0.031039363,-0.025741264,0.002781167,0.02425619,0.021419836,0.014395842,-0.001106279,0.0039601945,-6.5170534e-05,-0.015145068,0.029460635,0.0052880635,0.018088456,0.01581402,-0.016670277,-0.0038464726,-0.024510393,-0.021740932,-0.00464587,-0.014743697,0.0026038948,0.010602886,0.00091395533,0.020603715,0.011505971,0.022677464,0.022289474,0.011392249,0.0013813854,0.03136046,-0.021045223,0.0044451845,-0.0025637576,0.013619858,-0.007973905,0.0025002072,-0.027534055,0.008749889,-0.042491816,0.0131315235,0.04768288,0.052980978,-0.0123220915,0.000960782,0.013653305,0.01372689,0.009880418,0.011278527,0.0052178237,0.0271862,0.015519681,-0.014770455,-0.6802972,-0.003217658,0.019225674,0.014890866,0.00790032,0.011378869,0.01843631,0.013332209,-0.0024483635,0.015158447,-0.014797213,0.012422434,0.004605733,0.0026206186,-0.011833757,-0.012803737,-0.0038464726,-0.040003315,0.016870964,-0.0044619082,0.0005761347,0.018195488,-0.01248264,-0.017566673,0.0022777808,0.024028748,0.0013253607,-0.008107696,0.0052044448,0.0018145316,-0.016964616,0.031146394,-0.0051776865,0.03441088,0.036096636,-0.01206789,-0.0055723684,0.0255272,0.00943891,0.029219814,-0.038585138,0.0022242647,0.009231535,-0.009673042,0.002807925,-0.005321511,0.024323085,0.004545527,0.022851393,0.005324856,0.0016514746,0.0025369995,-0.009766696,-0.002053682,-0.012676636,0.00050923956,0.022704223,-0.020857915,0.025487062,0.020135447,-0.011445764,0.008696373,-0.017687084,-0.0016606727,-0.008341828,0.012944217,-0.0023296245,0.014917624,-0.008575962,-0.009954003,0.0046090777,0.004772971,-0.009258293,0.005906844,0.026316563,0.030718265,0.010663091,-0.0039133676,0.011813688,0.016710415,-0.00059578515,-0.0039735734,-0.01901161,-0.010783503,0.034731977,-0.02384144,-0.0067329993,0.0191454,0.002714272,-0.0054854043,0.04048496,-0.0144226,-0.010770123,0.0040438133,0.0082481755,-0.009900486,-0.004712765,0.007686256,0.023199247,0.012114717,0.0014298843,-0.0076461188,0.016322423,0.0010636334,-0.0018713926,0.0065891747,0.004672628,0.023092214,0.012382297,-0.022021892,0.015171826,0.017432883,-0.015064794,0.0077732196,-0.017994802,-0.030878814,0.01455639,-0.007599292,0.008749889,-0.003632408,0.034437638,-0.007325022,0.0055255415,-0.00790032,0.015479544,0.018101836,-0.04548872,0.0027661156,-0.0045020455,-0.03425033,0.0078668725,-0.0022861427,0.021433214,0.00032924968,0.03037041,0.0006191985,-0.0028781649,0.0024316397,0.02591519,-0.0054452675,-0.017151924,-0.011124668,0.012134785,-0.008716442,-0.0054017855,-0.026624281,0.0064854873,-0.016255528,-0.0199749,0.0035722025,-0.013780407,0.00042792008,-0.02012207,0.0144226,0.0065390035,0.003063799,-0.0032477607,-0.021540247,-0.001102098,0.003645787,0.014114882,0.02554058,-0.0271862,-0.009024159,-0.009465667,0.008529135,-0.00672631,0.0029500772,0.02940712,-0.015894294,-0.007880252,-0.011960858,-0.016670277,-0.0023965198,-0.023894956,0.01386068,-0.0061175637,0.010703228,-0.0013328864,0.013419173,-0.016295666,-0.018342657,-0.030102829,-0.008515756,0.0038866098,-0.013887439,0.019439738,0.015827399,0.0027008927,0.02191486,-0.008803405,0.01705827,-0.005351614,0.022583812,-0.011659829,-0.02358724,-0.032564573,0.025687749,0.029728217,-0.0029350258,0.027828394,-0.008154522,0.032618087,-0.0024851558,0.027400265,-0.023333037,0.003936781,-0.0046893517,0.015318995,-0.013432551,0.0064821425,-0.010515922,-0.03149425,0.0025721195,0.0006697879,-0.007090889,-0.011358801,-0.0023262796,-0.026423594,-0.012382297,0.0048164525,-0.02190148,0.006602554,0.012596361,-0.014275431,0.0183159,0.0022794532,0.021232529,0.004425116,-0.016242148,-0.01526548,0.021674037,0.001776067,0.012669946,-0.0069437195,0.005174342,0.028310038,-0.030076072,0.020898053,-0.0037126823,0.010288478,0.030156346,-0.00887699,-0.008234796,0.017593432,-0.007753151,0.023787925,0.0008140307,-0.006502211,-0.021995135,-0.015626714,0.009579389,-0.026356699,0.032270234,0.010315237,-0.01387406,-0.010341994,-0.021112118,0.019894626,0.020590335,0.02857762,0.0032778636,-0.0040304344,0.0036123395,0.014516253,0.0023396588,-0.011546107,-0.021339562,-0.00859603,-0.013272003,-0.006385145,0.011780241,-0.0016932841,-0.016161874,0.0152521,0.025955329,-0.007713014,0.0055255415,0.018810924,0.024791352,-0.022409884,-0.020135447,0.0044953558,0.034865767,-0.022436643,-0.022169061,-0.011833757,0.013566342,-0.006144322,0.012924148,0.014449358,0.018021561,0.018703891,-0.00016901485,-0.0013638254,0.02538003,0.027560813,0.00087381824,0.015372512,-3.125259e-05,-0.00019315982,-0.01400785,0.010944051,-0.014636665,0.010756744,-0.0054151644,-0.018623617,-0.008997401,-0.008883679,-0.019546771,0.0024232778,-0.013298761,-0.0035621682,-0.00832176,-0.004742868,-0.01816873,-0.02511245,0.015613334,0.02523286,-0.019774213,0.0025420168,-0.019533392,-0.0134258615,0.026423594,0.13336222,-0.004050503,0.020416407,0.021433214,0.014957761,-0.010923983,-0.0080675585,-0.0018178765,0.024175916,-0.009044228,0.0065390035,-0.018235626,0.0049569327,-0.016870964,0.0037829222,0.0094188405,-0.015185205,0.0018412897,-0.0041274326,0.012328781,0.007639429,-0.032323748,0.013278693,0.039655462,0.017834254,-0.015974568,0.021259287,0.03037041,-0.00019901316,-0.0017927907,-0.0044485293,0.0024918453,-0.01026841,0.01359979,-0.01137218,0.009612837,0.004358221,0.00053098047,0.017004754,-0.009251603,0.018503206,0.015372512,0.011318664,-0.013251934,0.010602886,-0.012884011,-0.0070239934,0.02579478,-0.004823142,0.0051542735,0.015613334,-0.0014850729,0.004184293,-0.039494913,0.023547102,-0.004910106,-0.01526548,0.0166569,-0.00029371164,-0.041769348,-0.013539583,-0.024470255,0.002142318,-0.0011756828,0.008020732,-0.03066475,-0.014676802,-0.017794117,0.011452454,0.0028229766,0.01941298,-0.009017469,0.0028798373,0.012596361,0.013479378,0.0010878828,0.022931667,0.0016021394,-0.0076461188,0.0026089118,-0.013372346,0.0080675585,-0.01289739,-0.035722025,-0.008167901,-0.0066594146,-0.00776653,-0.0071778526,-0.023547102,0.015974568,0.0035287205,0.027614329,0.013753648,0.015332375,-0.0012601379,0.02190148,-0.009198086,-0.0007609326,-0.011619692,-0.00016284795,0.024911763,-0.0131315235,-0.011064462,-0.0084287925,0.011586244,0.0042043617,-0.004522114,0.015720366,-0.0077330824,-0.046371736,0.03144073,-0.0077732196,0.010750055,0.01205451,0.0018412897,0.016295666,0.006803239,0.005047241,-0.002843045,-0.013646616,-0.010616264,-0.0280157,0.0038665412,0.018329278,-0.024617424,0.010763434,0.0059436364,-0.034170058,-0.012489329,0.008669615,-0.0012225093,0.0021373008,-0.015011278,-0.024015369,-0.012957595,-0.0072447476,-0.022302851,0.025072312,-0.00019242815,-0.0191454,-0.0068701347,-0.004853245,0.0018279107,-0.012683325,0.03066475,-0.037916187,0.003508652,-0.017138544,-0.007405296,0.014716939,-0.016001327,-0.02717282,-0.028336797,-0.006766447,-0.0135931,-0.010857088,-0.012509398,0.001639768,0.010549369,0.012643188,0.027641088,-0.0054619913,-0.0019734078,0.007833425,0.009238224,-0.013419173,-0.006033945,0.006462074,-0.024149159,-0.0066761384,0.02385482,0.0038665412,0.017927907,0.0038498174,0.011766861,0.035160106,-0.0003112716,-0.03301946,-0.013412483,-0.020282617,-0.013793785,-0.0020637163,-0.027400265,0.0060138763,-0.020362891,-0.0067229653,0.029647943,0.018155351,0.0017978079,0.011666519,0.009037538,-0.013673374,0.028684651,-0.0042511886,-0.017272335,-0.038932994,-0.0029969038,-0.019560149,-0.0047361786,0.023279522,0.016603382,0.030557716,-0.0031089534,0.005170997,-0.00735178,0.022088787,-0.010703228,-0.02730661,0.013887439,-0.007779909,0.0013905835,-0.016951237,-0.011305285,-0.03136046,0.02040303,-0.005769709,-0.026329942,0.04546196,0.005729572,-0.03505307,-0.01539927,0.002710927,0.024751216,-0.00041684057,0.01830252,0.0020486647,0.0020503371,-0.040966608,0.0051810313,0.009204776,-0.012790358,0.011345422,0.032805394,0.0061777695,-0.002921647,0.012221749,0.0053984406,-0.024590667,-0.03689938,0.016148496,0.001476711,0.006910272,0.0011781913,-0.0041240877,-0.008007352,0.024456877,0.019560149,-0.0013613169,-0.0074788807,-0.022637328,-0.009920554,0.008281623,-0.023413312,0.019426359,-0.0018312555,-0.00672631,-0.006502211,-0.0003618611,-0.015345753,-0.018262383,0.005863362,0.026717933,-0.02607574,-0.004358221,0.03106612,-0.00037586727,-0.00067020603,-0.0027928737,0.00088134396,0.028952232,-0.016977996,-0.016750552,0.0112317,0.01192741,-0.0006827489,0.005589092,-0.0007199593,-0.01054268,-0.026249668,-0.016482972,0.0052178237,0.011519349,-0.006007187,0.006201183,-0.00019033768,-0.020282617,-0.0024918453,-0.017004754,-0.014676802,0.0057630194,-0.019479875,-0.03398275,-0.012690015,0.013298761,0.0022409884,-0.025500441,0.0017509812,0.023172488,-0.044043783,0.012823805,-0.02077764,0.0030587818,-0.011198252,-0.0015553129,0.0127636,-0.0152922375,0.032751877,0.008174591,-0.02065723,-0.023680892,0.009445599,0.017874392,-0.014489495,-0.014716939,-0.0039100233,0.01650973,-0.025058933,-0.003672545,-0.03730075,0.0023948473,-0.008208038,-0.0067631025,0.017807497,-0.00734509,0.024898384,-0.02370765,0.021286044,0.00038820106,-0.018650375,-0.0016799051,-0.021045223,0.02938036,0.0047896947,0.008555893,-0.030745024,-0.0017710498,-0.017352609,0.016028084,0.008656235,-0.011566176,0.019252433,-0.006823308,0.006388489,-0.019051746,0.00025357452,-0.027480539,-0.03689938,-0.015332375,-0.024349844,-0.019399602,0.010576127,0.026717933,0.0346517,-0.023373175,-0.040993363,0.011164805,-0.034972798,-0.007652808,0.01553306,0.02538003,-0.0055155074,0.00028723117,0.001234216,0.011900652,0.016964616,0.009318498,-0.015974568,-0.01456977,0.013927576,-0.0032126408,-0.010281788,-0.011211632,-0.012335471,0.011546107,0.0208044,-0.010214893,-0.014623285,-0.0009632905,-0.013412483,0.010475785,-0.009030849,0.01581402,-0.00943891,0.015720366,0.016121738,-0.010522611,0.0066527254,0.007699635,-0.026396837,-0.0063751102,0.0050438964,0.014208536,-0.0005932766,0.016188633,-0.0137402695,-0.006043979,-0.006632657,-0.016389318,0.010522611,0.005839949,0.011278527,0.026610902,0.0033447589,-0.0059469813,-0.008201349,-0.004602388,-0.011526039,-0.027935425,-0.0020302685,-0.004936864,0.0054419227,-0.023426691,-0.028283281,0.0043481863,0.005140894,-0.01053599,-0.0150915515,-0.0039167125,0.004177604,0.0069704773,-0.021272667,-0.02691862,-0.016830826,0.004900072,-0.01775398,-0.0047763158,0.0043281177,-0.019479875,-0.009064296,0.0074253646,-0.016750552,0.0044719423,0.009024159,-0.002473449,-0.0049770013,0.01025503,0.20154178,-0.022302851,0.00073584693,0.0042913253,0.011766861,-0.0046358355,0.035962846,-0.0051676524,-0.019908005,0.0061075296,-0.005063965,0.01886444,-0.010087793,0.007325022,-0.013573031,-0.021553626,-0.03689938,0.014128261,-0.030745024,-0.010321925,-0.0146634225,-0.03882596,-0.022664085,-0.017432883,0.027560813,0.00942553,-0.024925143,-0.003552134,0.008254865,0.017820874,0.00071745075,-0.024978658,0.0020001659,0.007097578,-0.012114717,-0.0049268296,0.01705827,-0.027346749,0.024604047,0.0018111869,-0.0067597576,0.023038698,0.004578975,-0.0006497194,-0.015640093,0.035748783,-0.017031511,0.022409884,0.0049736565,0.013713511,-0.033099733,0.0025135863,0.00929843,0.00519441,-0.039842766,0.012783668,0.014315568,0.013693443,-0.009144571,-0.0047227996,0.029594425,0.023252763,-0.017245576,0.02287815,-0.02026924,0.030049313,0.00031022637,0.010047656,-0.005839949,-0.008047489,0.0033129836,-0.009793454,-0.026477112,-0.0061677354,0.0022326265,-0.0012417417,0.026129255,0.013278693,0.022891529,0.031173153,-0.009840281,0.014890866,-0.017794117,0.012194991,-0.0016799051,-0.0288452,-0.00018647031,0.00047746432,-0.02538003,-0.0073852274,0.011592934,0.029995797,0.000775984,0.009485736,0.0068968926,0.02940712,-0.0053850617,0.023011941,-0.017539915,-0.013151592,-0.026824966,0.046344977,-0.012496019,0.019613666,-0.024068885,-0.00790032,-0.0015921053,0.03564175,-0.014757076,-0.012409056,0.001719206,-0.013967712,0.0020252515,0.008535825,0.008295001,0.017379368,-0.0017526536,-0.013780407,0.0018613583,-0.026503868,0.008408723,-0.012489329,0.009070986,0.011566176,-0.011439075,-0.004535493,-0.027774878,-0.015706988,-0.010000829,-0.03772888,0.024617424,-0.021861345,-0.017941287,-0.0063818,-0.016041463,0.010081103,0.0037260614,0.0026774795,-0.014997899,-0.005431888,-0.0027861842,-0.022155682,-0.016523108,-0.011479212,-0.006368421,-0.013358966,0.025848296,0.023252763,-0.010576127,-0.020857915,-0.029594425,0.0072046104,-0.0009331877,-0.016322423,0.029647943,-0.028925475,-0.02398861,-0.002031941,0.0072313687,-0.0043047047,-0.014783834,0.020857915,0.028791685,-0.019105263,-0.026891861,0.0080675585,-0.17317823,0.009024159,0.006910272,-0.032056168,0.005739606,0.00089054205,0.030316895,0.028497346,0.006753068,0.022784498,0.0043047047,-0.019800972,-0.024376603,0.010081103,0.010870466,0.008034111,-0.019894626,0.026610902,0.013532894,-0.0017049909,0.017151924,-0.006532314,0.016014704,0.0024165881,0.008569272,-0.0033129836,-0.007699635,0.0066627595,-0.014529632,0.0010352029,-0.017111786,0.007452123,0.04800398,0.017365988,-0.02191486,0.01693786,0.00011602132,-0.02026924,-0.0019817697,0.013158281,0.018944714,0.009873728,-0.0068902033,0.015131689,0.004174259,0.005906844,0.0021958342,-0.008790026,0.010944051,-0.027480539,-0.012910769,-0.0035153416,0.00436491,-0.0070708203,0.03371517,0.0067463787,-0.012496019,0.0053984406,0.009084365,-0.006575796,-0.0036156843,-0.01762019,0.010214893,-0.007512328,0.023333037,-0.016482972,-0.008221417,-0.008622788,-0.025286376,0.010067724,-0.031521007,-0.013265314,0.013887439,-0.005174342,0.012924148,-0.016576625,-0.026677797,-0.013432551,0.00021019719,0.014128261,-0.003729406,0.0026908584,-0.02410902,-0.019693939,-0.003341414,0.021379698,-0.0080408,-0.004007021,-0.009927244,-0.009532562,0.020496681,-0.043508623,-0.019720698,-0.030878814,0.015827399,0.023761166,0.006823308,0.0062480094,0.024992038,-0.02425619,0.007639429,-0.0033514483,-0.006144322,-0.0006886022,0.03435736,-0.023038698,0.028122732,0.010034276,0.03023662,-0.00735178,0.0070775095,0.0036591662,0.013940955,0.008783337,-0.010850398,0.019426359,0.015439407,-0.030343652,0.014195156,-0.011766861,0.04369593,0.027025651,-0.015011278,0.0055155074,-0.0062613883,-0.0062948363,-0.086214505,-0.008502377,0.023226006,0.020469924,-0.002904923,0.004525459,-0.010622954,-0.0025988775,-0.019520013,0.013833922,0.0068835136,-0.019319328,-0.008161211,-0.0076795663,0.020978328,-0.02218244,-0.011051083,-0.03384896,-0.009619527,0.0224634,0.005381717,-0.024082264,-0.00464587,-0.0045655956,0.0131315235,0.0027895288,-0.037916187,0.019881247,0.008542514,0.006963788,-0.0054419227,-0.00589681,0.023640756,-0.03494604,-0.0018061697,-0.013927576,-0.014275431,-0.010556059,0.016630141,-0.022128925,-0.010796881,-0.016442833,-0.011947478,-0.04201017,0.011552797,-0.024898384,-0.027560813,0.0037661984,0.020737505,-0.02012207,-0.009091054,-0.00197508,-0.02441674,-0.022797877,0.017580053,-0.029300088,0.0049335193,0.006084116,0.01054268,-0.0035822366,-0.012683325,-0.003940126,-0.011285217,0.040137105,0.032644846,-0.008027421,-0.0010845381,0.00631156,0.0016807413,0.0010460733,-0.019252433,-0.009806833,-0.007110957,0.013211797,-0.019479875,0.0105895065,-0.027360126,-0.0022811254,0.02079102,-0.0077732196,-0.007846804,-0.009204776,0.01911864,-0.0024634148,-0.0033297073,-0.0047896947,0.017981423,0.02207541,-0.013432551,0.006977167,0.0025252928,0.040270895,-0.0017743945,-0.01081695,0.011860515,-0.0021021808,-0.011566176,-0.0048331763,0.014609907,-0.0024667596,0.004562251,-0.012281954,-0.07363821,0.017432883,-0.008488998,-0.00050004147,-0.015506302,-0.010502542,0.011044393,-0.008228106,-0.007264816,0.0014599873,-0.012442503,0.037809152,0.010910603,0.0004051339,-0.012536156,-0.03895975,0.024858247,-0.0021540248,0.004662594,0.03427709,0.00038402012,0.0026523937,0.039468154,-0.0015126672,-0.02564761,0.019867867,-0.0066661043,0.009920554,-0.018249003,-0.00018751554,0.0009758334,-0.014890866,-0.011753483,0.032805394,0.0037227166,-0.0001582489,0.0039468156,0.012549535,0.024898384,0.024443498,-0.0060306,-0.017807497,-0.0020620439,-0.0024851558,0.0058600176,-0.00527134,-0.005431888,0.002622291,0.024162538,0.017847633,0.0416088,0.014061366,-0.020443166,-0.0025553957,-0.009679732,-0.00381637,0.006385145,0.015198584,-0.025580715,-0.01885106,0.021393077,0.019399602,0.007927079,0.014529632,0.01026172,0.006916961,-0.007104268,0.01913202,0.01470356,-0.03620367,-0.008388655,0.009927244,-0.0022727635,0.023921715,0.011044393,0.01565347,-0.013633237,-0.0008098497,-0.015599955,0.017874392,0.0097800745,0.01013462,-0.026878482,0.017566673,0.009933934,0.032350507,-0.032377265,0.022717603,-0.011071152,0.01731247,1.7742901e-05,0.013833922,0.014543012,0.017740602,0.008502377,0.018503206,0.0087431995,-0.013057939,0.012984354,0.008167901,0.019894626,0.008723131,-0.0047328337,-0.026490489,-0.018195488,-0.0049870354,0.00084873254,-0.024590667,-0.019212294,0.0048197974,-0.013499446,0.028069217,0.0032343818,0.011499281,-0.01565347,0.006876824,0.0051007573,-0.00956601,-0.03441088,0.037675362,-0.019827731,-0.010923983,0.010335305,-0.01165314,0.016429456,0.008087627,0.0023296245,-0.004415082,-0.0039200573,-0.023761166,-0.0019048401,-0.0066493805,-0.025875054,-0.0095727,-0.0028112698,-0.02538003,-0.0018128593,0.011345422,-0.018208867,0.036444493,-0.003953505,0.0009331877,0.018476447,0.011459144,0.014021229,-0.000100708596,0.01704489,-0.032618087,-0.015894294,-0.009064296,-0.018396173,-0.01733923,-0.019426359,-0.012134785,0.017687084,-0.0072313687,-0.0024266224,0.0062747677,0.008943885,0.0066895178,0.0033046217,-0.0043381522,-0.0010970809,-0.011245079,-0.013954334,0.011204942,-0.012562914,-0.0011363818,-0.01731247,-0.0063985237,0.015907673,-0.042545334,-0.014101503,0.03189562,-0.03368841,-0.0080408,0.011586244,0.0040939846,0.03748806,0.0051542735,0.010495854,-0.015158447,0.0039769183,-0.0008520773,0.0035855814,0.02731999,-0.012409056,-0.023413312]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41c2e8fc-a5da-11ee-8347-9b9a23373940', 'Science & Education', 'this article is about breakthroughs', '[0.0012325584,0.008259654,0.010526352,-0.030590316,-0.0009424952,0.018268095,-0.013694346,-0.007849362,-0.022801489,-0.021684956,0.018120121,0.039710913,-0.020420449,-0.0011283038,0.0058517097,0.0042172666,0.032661956,0.0014772203,-0.0047889855,-0.0116765145,-0.011138426,0.01945189,0.015537298,-0.0006297314,-0.009443449,0.009598149,0.02633942,-0.03524478,-0.014218981,0.006003047,0.016667284,0.0164655,-0.015618011,-0.029621758,-0.0164655,-0.017756911,-0.008690125,-0.012019546,0.0130284615,-0.0059021553,0.030455794,0.016909422,-0.010068976,0.002875409,-0.0103312945,-0.0103312945,0.023043629,-0.018052861,-0.01475707,0.014340051,0.012813226,0.016061934,-0.028626295,-0.00397849,-0.008676673,-0.024133258,-0.0016277169,0.014730166,0.002286875,-0.012187699,-0.010607065,0.006803453,-0.02975628,0.025747523,-0.020662589,0.0045266673,-0.019559508,0.008515246,-0.006423428,-0.013115901,0.018442973,0.0030334725,0.0028485046,0.0048125265,0.029890802,-0.008131859,-0.0016033348,0.0021103148,0.021321746,0.0006179607,-0.008326915,-0.0043652407,-0.030697934,-0.0036758152,0.018738924,0.0059694164,0.0013267238,0.008690125,-0.0014906726,-0.008569055,0.003332784,0.018617854,-0.010647421,0.006988421,-0.031370543,0.024980746,0.0007735019,0.021967452,0.01810667,-0.028007492,-0.012739239,0.0032924274,0.0065579503,-0.018241191,-0.031612683,-0.00017908249,0.023393387,0.018066313,0.022465184,-0.035217874,-0.026850604,0.0048831506,-0.0051454687,-0.024106354,0.008098228,0.004318158,0.014837783,0.004896603,0.026944768,-0.016425144,0.03451836,-0.0012350807,0.012497099,-0.010317842,0.0019589774,0.0024869766,-0.046571538,-0.0071565737,0.009880645,-0.018442973,0.013216793,-0.00353793,0.015174088,0.0043416996,-0.004180273,-0.0011140108,0.006265365,0.02214233,-0.019922717,-0.012261686,0.000165315,0.029460331,-0.025868593,-0.026164541,-0.014824331,0.019613316,0.013606906,0.024657894,0.0058819773,0.0222634,0.014474574,-0.004886514,0.029890802,0.014851236,0.021267937,0.010445638,0.0048158895,0.022734229,-0.01682871,-0.004123101,-0.0031528608,-0.02402564,0.021550434,-0.0004905851,0.0042979796,0.033980273,0.0034975735,0.010788669,0.018496783,-0.0022145694,-0.015577654,0.016667284,-0.020420449,0.016425144,0.006275454,-0.0028703643,0.013384945,-0.0031797653,-0.021725312,0.0037565285,0.000208299,-0.0073919874,0.018173931,0.016088838,-0.0038473308,0.0130755445,0.02787297,-0.0071700257,0.0053136214,0.009241666,0.0144073125,0.017353347,-0.0069547906,0.0011013994,-0.6870311,-0.030563412,-0.007728292,0.012914117,0.004963864,0.009537614,0.015685271,0.003396682,0.00015827361,0.019667124,6.0850212e-05,0.0005977824,-0.02469825,0.0036892674,-0.020998893,-0.017635843,-0.006262002,-0.039549485,0.029621758,-0.007492879,-0.029406521,0.024765512,-0.0072507393,0.013425302,0.0055355825,0.016936328,0.016600022,0.013869224,0.00707586,-0.0055120415,-0.0004170184,0.0116697885,0.0019303915,0.029594854,0.032581244,0.0073516304,0.0069615166,0.024308136,0.016667284,0.040356617,-0.01738025,-0.0077484706,0.0077551967,0.02274768,-0.012678704,0.0064604217,0.019559508,-0.013734702,0.020137953,-0.013869224,0.009954632,-0.0037430762,0.00058727287,0.016640378,0.0050008576,0.020205213,0.012053177,0.008347094,0.024012187,0.001031616,-0.014837783,0.009759575,-0.008616138,0.011925381,-0.014071007,0.009470353,-0.023891117,0.0046073804,0.019155942,-0.0068337205,0.0011905202,0.010586886,0.004899966,0.027429048,0.012053177,0.020581875,0.017393703,-0.02395838,-0.0075937705,0.022909107,0.0036623632,0.0031511793,-0.009719219,-0.01744751,0.050445773,-0.022371018,-0.01865821,-0.002769473,0.004644374,0.012577812,0.0071565737,-0.012611443,-0.0031579053,-0.006776549,0.012745965,0.002053143,0.004748629,-0.00034092934,0.0025811421,0.015510393,-0.011468005,-0.0051521948,0.021967452,0.0066285743,0.011346935,0.017743459,0.012147342,0.015644915,0.024240876,-0.025465026,-0.011030809,-8.980399e-05,-0.032715764,0.01572563,-0.01890035,-0.028330347,0.009362736,-0.010916465,0.0018648121,0.0032705676,0.007116217,-0.011299853,-0.005115201,-0.0130553655,-0.008064598,0.010122785,-0.016761448,-0.0066151223,-0.029433427,-0.022545896,0.0051656472,-0.016694188,0.0073314523,0.0018631305,0.023420291,0.0017084301,-0.0055154045,-0.010015167,-0.0017286085,0.007943528,-0.019007968,-0.003534567,0.01109807,0.022545896,-0.022774585,-0.021456268,-0.008986074,0.010364925,-0.01756858,-0.013001557,-0.01567182,-0.0071565737,-0.0035177518,0.029245095,0.0077350186,0.009349283,-0.0056667416,-0.0059122443,-0.008360546,-0.0040222094,0.00020504104,0.012725787,-0.018079765,0.0053068954,-0.014622548,0.012799774,-0.005286717,0.0161561,-0.014541835,-0.026420133,-0.010169867,-0.004308069,0.0077417446,0.004627559,0.012039725,0.0021288116,-0.027765352,0.017918339,0.009382914,-0.0002518085,-0.016142648,-0.020057239,-0.018913802,0.0051387427,0.0008693488,0.003981853,0.029729376,0.0031158673,0.0007365083,0.013775059,-0.0068808035,0.024926938,0.0028989504,-0.0044694953,-0.0042710756,-0.011266222,-0.008468164,-0.0017723282,0.027711544,0.021927096,0.04237445,0.011985916,0.035594538,-0.019976526,0.021106511,-0.023218507,0.009046609,-0.014985758,0.008172215,-0.009739397,0.022034714,0.0012073355,-0.017958695,-0.020514615,0.0062485496,0.0014234115,-0.018913802,-0.0068808035,-0.032769572,-0.019586412,-0.01694978,-0.012295316,0.007378535,0.00021197734,-0.0076004965,0.030644124,0.01542968,0.017662747,-0.0066958354,-0.03989924,0.0042811646,0.016196456,0.020487709,0.009618327,0.012819952,0.033442184,0.025545739,-0.011320031,0.033576705,0.010815574,-0.0047318134,0.0056398376,0.003201625,0.0039280443,0.011151879,-0.0034420833,0.022949463,-0.005037851,-0.013277328,0.011293127,-0.021429364,-0.00942327,-0.023514455,0.011225866,0.008373998,-0.010102606,0.013189888,0.011030809,0.019936169,0.016048482,-0.0012064948,0.009994989,0.0047923485,-0.0056398376,0.012645073,0.011024083,-0.007371809,-0.020353187,-0.012880487,-0.011508362,-0.019532602,-0.011299853,0.0129881045,-0.017824173,0.0028989504,0.010613791,-0.0017370161,0.006941338,0.0065310462,0.013479111,-0.01054653,-0.018564044,0.0047284504,0.027819162,-0.014044103,-0.022344114,-0.00082058454,0.00086850807,-0.02830344,-0.00028775109,0.016196456,0.01834881,-0.0002081939,-0.0039314074,-0.013553098,-0.034222413,0.028384155,0.014528383,0.0051488318,-0.004886514,-0.00053766783,-0.0103245685,0.006288906,0.0022145694,0.019989979,-0.016236812,-0.0064335177,-0.0158467,0.0029796637,-0.032581244,0.014716714,-0.01237603,-0.0013889403,-0.009080239,0.0007865337,0.00042416487,0.008165489,0.00264504,0.019438438,0.0040659294,0.0067563704,-0.0077484706,-0.020420449,0.026716081,0.113429,0.0026080464,-0.013458932,0.018066313,-0.009900823,-0.028680103,-0.017730007,-0.00075962924,0.009517436,-0.032285295,0.009988263,-0.0037430762,0.008730481,-0.0065007787,0.0078090057,0.009813384,-0.014837783,-0.0062451866,0.014541835,-0.010169867,0.010485995,-0.0213352,0.008293285,0.033146236,0.029298905,-0.025290146,0.029971516,0.01939808,-0.007768649,0.0075534135,-0.00039074454,-0.008454711,0.0042307186,-0.004567024,-0.026675725,0.015981222,0.001439386,-0.015712177,0.00823275,0.00997481,0.017084302,0.015362419,0.008481616,-0.020232119,-0.002191028,-0.006487326,0.006736192,0.029783184,-0.021308294,-0.012221329,0.0072238347,-0.0038977766,-0.032123867,-0.017460963,0.0089928,0.01006225,-0.00079199864,0.008945717,-0.0001584838,-0.038473308,-0.014528383,-0.03895759,0.0074794265,-0.006736192,-0.0044594062,-0.020797111,0.00054481433,-0.008300011,-0.025451574,0.025760975,-0.007768649,-0.023796953,-0.035836678,-1.4122189e-06,0.014205529,-0.013734702,0.023971831,-0.0021035888,-0.017514773,0.014649453,0.00080545084,-0.013344589,-0.014097912,-0.034356933,0.020232119,-0.009732671,-0.001482265,-0.010499447,-0.021456268,0.010997178,0.0066756574,0.018725472,0.0071767517,0.01579289,-0.0027862883,0.01610229,0.007788827,0.007856089,0.002737524,-0.026164541,0.013223519,-0.0028064665,-0.01542968,0.013653989,-0.0070355036,0.01859095,0.0063864347,0.0030906443,-0.000111821464,-0.013653989,0.02932581,-0.0028619568,0.01670764,-0.0024836136,0.0038237895,0.018120121,0.018133573,-0.003591739,0.0009870556,-0.012261686,0.01268543,-0.009369462,0.0045771133,-0.00022742635,-0.026366323,0.015833246,-0.009672136,-0.023985283,-0.02658156,-0.0065646763,-0.020770205,0.017003588,-0.009443449,-0.023151247,-0.010257307,-0.014286242,-0.02518253,0.014313147,-0.0048831506,-0.026675725,-0.001762239,-0.0144073125,0.011367114,-0.007492879,0.017756911,-0.032823384,-0.0020312832,-0.0088717295,0.0015251439,-0.013263875,-0.011689967,-0.011447827,-0.02555919,-0.02749631,-0.005750818,-0.021308294,-0.01006225,-0.0046107434,0.04256278,0.039549485,0.03726261,-0.028464869,-0.02433504,0.014918497,0.0018984426,-0.00066882686,0.0010879472,0.021308294,-0.03707428,-0.0030233832,0.02737524,-0.013277328,0.015174088,-0.001684048,0.018389165,0.01356655,0.011239318,-0.005404424,-0.010412008,-0.029379617,-0.010506173,-0.00077097956,0.023675883,0.0036018281,-0.0390383,0.0042710756,0.036966663,0.0130351875,-0.006413339,0.0020649135,0.028249633,-0.010048798,0.012490373,0.012174247,-0.018308453,-0.040464237,-0.020137953,-0.035944294,-0.00086178194,0.049315788,0.0044829478,-0.005606207,-0.0035412933,-0.0060972124,-0.008495068,0.00065117085,0.0033495992,-0.01542968,-0.010983726,-0.007768649,0.023447195,-0.025505383,-0.013674167,-0.037719987,0.03244672,0.003428631,-0.027577022,0.045145605,-0.009968084,-0.03317314,0.038607832,-0.005619659,0.017730007,0.0055860286,0.02792678,0.018375713,0.016250266,-0.03457217,0.0060164994,0.00029552815,-0.0164655,0.024967294,0.026285611,0.0047149984,0.0065545873,0.014044103,0.025465026,-0.015967768,-0.053674303,0.007069134,-0.0044224127,-0.0024483015,-0.02450992,-0.018281547,-0.023662431,0.031128405,0.012745965,0.012698882,-0.023016725,-0.018268095,-0.0060366774,0.00862959,-0.003067103,0.037531655,-0.0071767517,-0.008616138,-0.007069134,0.008851551,-0.009927728,-0.005051303,-0.018012503,0.028949147,-0.027765352,0.004825979,0.015981222,0.0072574653,0.004234082,-0.004896603,-0.0071632997,0.028088206,-0.0055355825,-0.025451574,-0.0044156867,0.01738025,0.000687744,-0.006409976,-0.007291096,-0.0051454687,-0.02140246,-0.004953775,0.021375556,0.013405124,-0.014595644,0.00284346,0.0020464167,-0.010136237,-0.008757386,-0.011757228,-0.00274425,-0.015241349,-0.012355851,-0.019788194,-5.5339274e-07,-0.018012503,-0.0037296242,-0.009456901,-0.011024083,0.038392596,-0.031935535,-0.0038473308,-0.015133732,-0.0059694164,0.0056532896,-0.0014923541,0.00792335,-0.023460647,0.02555919,-0.020756753,-0.0010005079,-0.012860309,-0.009282022,0.009571245,0.003236937,-0.014541835,-0.0013519467,-0.007291096,-0.020702945,-0.009100418,-0.044338472,0.0089188125,0.0044560432,-0.007634127,0.022371018,-0.02128139,0.003648911,-0.003793522,0.0089928,-0.002840097,-0.025882045,-0.00071506883,-0.020259023,0.017797269,-0.00017624492,-0.007640853,-0.004688094,-0.009033157,-0.02262661,-0.0045233043,0.0030486062,0.0014982395,0.010647421,-5.1286534e-05,0.005616296,-0.0088784555,-0.008723755,-0.012604717,-0.020608779,-0.0076946616,-0.0167749,-0.010015167,0.020702945,0.009140774,0.01512028,-0.015523845,-0.01225496,-0.00017803154,-0.029218191,-0.0033781852,0.012436564,0.025088364,0.022478636,0.0066924724,0.008360546,-0.0065175937,-0.003591739,0.0059727794,-0.015295158,0.0019186209,0.025478479,-0.023702787,-0.01634443,-0.005491863,-0.005770996,-0.0016647105,0.029810088,-0.018133573,0.0052463603,0.0072776433,-0.012631621,0.01768965,0.014097912,-0.014326599,-0.0022498814,0.017030492,0.01768965,-0.04237445,0.002782925,0.019586412,-0.0234741,-0.021536982,0.014824331,-0.0013981886,0.021913644,0.030025324,0.008589233,-0.011172057,0.0032756121,0.0014604051,-0.002885498,-0.0031394085,0.020649137,0.020259023,-0.0023928112,-0.003719535,-0.0041331905,0.004247534,0.010694504,-0.0061678365,0.0032823381,-0.0029409886,0.011938833,-0.020514615,-0.02445611,0.0031007335,0.019048324,-0.017851077,-0.0048831506,-0.016209908,0.0065579503,0.01744751,-0.010916465,-0.027792258,0.0065108677,-0.0042038145,-0.020084143,-0.008306737,-0.00048554057,-0.030886265,-0.002481932,-0.008723755,-0.01487814,-0.014582192,0.018093217,0.01256436,-0.029594854,0.000964355,0.19177465,-0.03615953,0.0057373657,0.0077551967,0.0064940522,0.006140932,0.014649453,0.00063477596,-0.006349441,0.0058584358,0.015819794,0.025882045,-0.022155784,-0.0070893127,-0.02116032,-0.0050882967,-0.02506146,0.0014318192,-0.013546372,0.011259496,0.0040121204,-0.012907391,-0.00994118,-0.023487551,0.0047452655,-0.013297506,-0.005219456,0.013680894,0.004836068,0.016963232,-0.003988579,-0.023675883,-0.012638347,0.015470037,-0.029783184,0.0036724522,0.004782259,-0.021671504,0.020514615,0.020770205,-0.0031679946,0.023877665,0.0025929126,-0.016559666,-0.013815415,0.040275905,-0.016478952,0.009685588,0.002063232,0.008259654,-0.029379617,0.0103514725,0.018523687,0.0068841665,-0.02749631,0.0035782869,0.012920843,0.035083354,0.014340051,0.0089255385,-0.01356655,0.01720537,-0.032366008,0.029594854,-0.0075534135,0.010835752,-0.018752376,0.0335498,0.004126464,-0.0068808035,-0.010842478,-0.007701388,-0.036966663,-0.01725918,-0.015483489,-0.027980588,0.03715499,0.017124658,0.017407155,0.027186908,-0.012503825,-0.0088650035,0.0069682426,-0.019371176,-0.007425618,-0.037343323,-0.011394018,0.0030217017,-0.011225866,0.014945401,0.002098544,0.0073314523,-0.014824331,0.00043131135,0.023326125,0.025613,-0.014743618,0.023918021,-0.008616138,-0.0026719444,-0.027765352,0.0591359,0.016694188,0.021025797,-0.014783975,0.0023642252,-0.023944927,0.026541203,0.00027324795,-0.014730166,0.022411374,0.012611443,0.0024583905,-0.0054615955,-0.009638506,0.024402302,0.010021893,-0.014071007,0.031424355,-0.029783184,0.0027913328,-0.01841607,-0.0076946616,0.008622864,0.003860783,-0.01137384,-0.0052396343,0.016088838,-0.00823275,-0.009100418,0.035029545,-0.01054653,-0.017043944,-0.024926938,-0.0018782642,0.001028253,0.0060232254,-0.0007789668,-0.023299221,-0.016963232,0.0036724522,-0.00417691,-0.015496941,0.0077619227,-0.010028619,-0.018066313,0.010021893,0.012302042,-0.021617696,0.00095006207,-0.019344272,0.007425618,-0.010734861,-0.012059903,0.001861449,-0.010055524,-0.020810563,-0.022949463,-0.014380408,-0.004334973,-0.00951071,0.024240876,0.020406997,-0.005353978,-0.012362577,0.00966541,-0.17423297,-0.0010517944,0.014555287,-0.016842162,0.009053335,0.0039583114,0.026850604,0.014514931,0.012934296,0.004980679,0.0058012637,-0.004627559,-0.026837151,0.0055927546,-0.0054885,0.0014931948,-0.023689335,0.024240876,0.0019488883,-0.0053976974,0.014743618,-0.016882518,0.014797427,-0.016371334,0.006396524,-0.007963706,-0.0044224127,0.012147342,-0.005986232,-0.023689335,-0.011918655,0.0006183811,0.03395337,0.0017874619,0.024523372,-0.0032621599,-0.009362736,-0.006013136,-0.013990294,0.018456427,0.022371018,0.01846988,0.0054380544,-0.0037565285,0.0017571944,-0.015133732,0.007566866,-0.01902142,0.031424355,-0.010903013,0.025599549,-0.029863898,0.0011728642,-0.004237445,0.032715764,0.01137384,-0.0158467,0.004442591,0.009201309,0.0024516645,-0.014084459,0.0011686604,0.025882045,-0.0117101455,-0.015416228,-0.009302201,-0.009201309,-0.0011039217,-0.031262927,0.008515246,-0.024738606,-0.01803941,0.0031780836,-0.016330978,-0.009416544,0.0102976635,-0.017824173,-0.010977,-0.007997337,0.0011072847,-0.010452364,0.013761607,-0.0071094907,0.0069077075,-0.00070455926,0.014582192,-0.010398556,0.01994962,-0.011932107,-3.4523826e-05,0.025411217,-0.036509287,-0.025195982,-0.02140246,0.014380408,0.022021262,-0.019223202,-0.017999051,-0.0016546213,-0.017541677,-0.006581492,0.010035345,-0.01137384,0.0068202685,0.033038616,-0.0047217244,0.011306579,0.018362261,0.03371123,0.0047923485,-0.016667284,-0.0044123237,-0.003911229,0.01670764,-0.019505698,0.005922334,0.0056398376,-0.009349283,0.015954316,0.00023877666,0.05421239,0.002017831,-0.02116032,0.016250266,-0.002312098,-0.01332441,-0.10600338,-0.035890486,0.02811511,0.021927096,-0.0030906443,0.008730481,0.00078275026,0.009968084,-0.038769256,0.031209119,0.002201117,-0.03938806,0.016142648,0.008219298,0.013606906,-0.011589075,-0.010068976,-0.014891592,-0.040571854,0.030267464,0.013129353,-0.015591106,0.00076929806,-0.0011047624,0.0015200992,0.024012187,-0.03158578,0.037128087,0.008521972,0.008434533,-0.0051555578,-0.0045266673,0.0040659294,-0.023272317,-0.00030393578,-0.0040894705,-0.01732644,-0.00437533,0.011555445,-0.035809774,-0.010129511,0.0023776775,0.0017555129,-0.026985126,0.0017185194,-0.028814625,-0.012423112,0.012537456,0.0055961176,-0.03061722,-0.014030651,0.0111317,-0.030482698,-0.008158763,0.010223676,-0.026164541,-0.004688094,-0.015026114,-0.0070355036,-0.015604559,0.00043341325,-0.006736192,-0.013559824,0.024294684,0.01846988,-0.026097279,-0.03968401,-0.00018223535,0.011394018,-0.0020111047,-0.00089289015,-0.010553256,-0.026245253,0.034141697,-0.028707007,0.008616138,-0.027065838,-0.008770838,0.012362577,0.00560957,-0.008051145,-0.008535424,0.0072641913,-0.00954434,0.019438438,0.004260986,0.008797742,0.0130419135,0.004267712,-0.0048091635,-0.007378535,0.022976369,-0.0056432006,-0.0128065,0.014622548,0.032769572,-0.00066294154,-0.012503825,0.023231959,0.0057171877,-0.0077551967,-0.014851236,-0.072695725,0.01332441,0.007143121,0.006483963,-0.0012560998,-0.012544182,0.008064598,-0.004960501,0.0053035324,-0.0044762217,-0.023541361,0.0070422296,-0.0057844487,-0.00978648,-0.016842162,-0.03322695,0.028411059,0.0074861525,-0.014232434,0.0076812096,0.014313147,-0.02286875,0.048078183,0.010654147,-0.016236812,0.025222886,-0.00477217,0.008986074,-0.013492563,-0.0012855264,-0.0078022797,-0.01487814,-0.001602494,0.0167749,-0.0102909375,0.0004821775,0.010196772,0.0237835,0.011084618,0.052167654,0.0050042206,-0.018550592,0.011945559,-0.007950254,0.0069749686,0.0047217244,-0.014138268,0.007573592,0.018483331,0.014783975,0.020474257,0.025021102,-0.008279833,-0.009678862,-0.013828868,0.015604559,-0.0006301518,0.020272475,-0.00353793,-0.021348651,0.024873128,0.037101183,0.009517436,0.005989595,0.000489324,0.009329105,-0.012739239,0.015981222,0.014649453,-0.012907391,0.0070960387,-0.008730481,0.009651958,0.018025955,-0.016600022,-0.014340051,-0.010068976,0.0053068954,-0.003786796,0.009712493,0.009100418,0.011885024,-0.018052861,0.021913644,-0.0011123293,0.00013220996,-0.01665383,0.011380566,-0.017084302,-0.0045300303,0.012732513,0.032661956,0.00990755,0.030267464,0.0108223,0.013633811,-0.023353029,-0.012604717,0.015779437,0.027361788,0.0015940864,-0.0028014218,0.0198151,-0.017582033,-0.036186434,0.01939808,-0.019048324,-0.029971516,-0.015106827,0.012456743,-0.0007188523,0.007371809,-0.009450175,0.002308735,-0.021510078,0.011911929,-0.0029191286,-0.005360704,-0.034599073,0.03715499,-0.0020346462,-0.0075466875,0.022101974,-0.010768491,0.011225866,-0.009443449,0.032957904,-0.016505856,-2.4671135e-05,-0.0067530074,-0.013694346,0.020608779,-0.01054653,-0.009988263,0.0013082271,-0.027038934,-0.012261686,-0.013788511,-0.011320031,0.052355986,0.022586254,-0.00101396,0.015940864,-0.00296453,0.017676199,0.015523845,0.011010631,-0.019048324,-0.011575623,0.025787879,-0.012073355,-0.026016567,-0.0050109467,-0.02140246,0.0052497233,0.02103925,0.018913802,-0.015443132,0.015322062,0.03659,-0.0030469247,0.0042912536,0.009799932,-0.012557634,-0.004563661,0.011293127,-0.014003746,0.0064940522,-0.011178783,-0.013869224,0.0007314637,-0.049288884,-0.024469562,0.02481932,-0.009551066,-0.0076879356,-0.011851394,-0.009921002,0.011172057,0.017635843,0.00038780188,-0.0237835,-0.0027812435,-0.023312673,0.0025979574,0.013216793,-0.018133573,-0.009134048]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41caa57e-a5da-11ee-8347-4b43716faa63', 'Culture', 'this article is about Entertainment', '[0.012338022,0.0026206574,0.028641358,-0.029927406,0.010127627,0.019639023,-0.019572042,-0.00046091757,-0.020951863,-0.029739859,0.002687639,0.012572458,0.016611451,0.0067785443,0.0014476412,0.022519235,0.0328746,-0.0008167576,0.014642191,-0.015593331,-0.027971542,0.033142526,-0.014548417,-0.006771846,-0.00048519843,0.021460924,0.014441246,-0.026832854,0.0018838593,-0.0041461647,0.01702674,0.0002306681,0.0030175238,-0.026792664,-0.011748583,-0.025399446,0.0015405782,-0.025225295,0.008988939,0.0014936911,-0.00096704776,0.0054154675,-0.014253697,-0.01417332,0.00052789925,0.017522402,0.03517877,-0.01749561,0.024595667,0.002845046,0.022345083,0.0154057825,-0.03992107,-0.013188689,-0.0053350893,-0.008265537,-0.018781658,0.004752349,0.017857311,-0.02162168,-0.011313203,-0.0075488333,-0.020925071,0.006483825,-0.02308188,0.009183186,-0.00536858,0.0013806595,0.008580351,-0.0037208314,0.024019623,0.005237966,-0.0022890982,0.011159145,0.0193577,-0.03809917,-0.011641413,0.0043772515,0.022385271,0.00927696,0.015606727,-0.020081103,-0.005408769,0.020134687,0.009886493,0.01874147,-0.01015442,0.012806893,0.011849056,0.0057838666,0.007173736,-0.0007087497,-0.0071134525,0.0026122849,-0.008781296,0.035446696,0.02333641,0.025479823,-0.013811619,-0.032740638,0.010321874,0.018018067,-0.018647695,-0.01183566,-0.012847083,0.03016854,-0.0025586996,0.0033775503,0.028587773,-0.005519289,-0.018795054,-0.0034830463,0.018674487,-0.031347416,-0.0020931768,0.002439807,0.0062594363,-0.0028768624,0.013891997,-0.010710368,0.018460145,0.028668152,-0.017120512,-0.0069995834,0.023135467,0.011185938,-0.027516067,-0.020925071,-0.019531853,0.0056532524,0.027971542,-0.0063733053,0.005592969,0.016102392,-0.005532685,0.025051141,0.009343942,0.032177992,-0.009290356,-0.0043672044,0.005234617,0.019880157,-0.035151977,-0.02706059,-0.007602419,-0.0031900017,0.013449918,0.015057477,0.011788772,0.023349807,0.019518455,-0.011574431,0.032177992,0.020442802,0.018419957,0.015968429,-0.0037342277,-0.012244248,0.011165843,-0.015861258,0.0059915096,-0.010723764,0.0037576712,-0.009518094,0.006534061,0.029632688,0.028748529,0.014802948,0.005388675,-0.0068019875,-0.025761148,0.01103188,-0.016330129,0.013717844,-0.0154057825,0.02312207,-0.005512591,0.020067707,-0.02187621,-0.012143775,-0.019585438,0.025144916,0.048601896,0.04653886,-0.0063565597,0.019129962,0.0043638553,-0.005197777,0.0015673708,-0.007019678,0.015204838,0.025399446,0.004119372,-0.0003949825,-0.67946196,-0.01103188,-0.011346693,0.018942414,0.00018168776,0.0060651894,0.011219428,0.011273013,-0.019639023,0.0127265155,-0.003590217,0.013577183,0.014521624,-0.0024130144,-0.0069192057,-0.0047791414,0.0049733883,-0.04101957,0.00057436776,0.00048226796,-0.012860479,0.025265483,-0.007970817,-0.015459368,-0.0056733466,0.010382158,-0.006118775,-0.0057939137,-0.008017705,0.0056197615,-0.027783994,0.020134687,0.00073763554,0.014936911,0.034107063,0.014722569,0.010013758,0.031508174,0.0104558375,0.044716958,-0.007535437,0.00013103288,0.0028182534,0.004591593,-0.004062438,-0.0038480966,0.018714676,-0.012257644,0.012137077,-0.0055896197,0.0024465052,0.023323014,0.014401058,0.013717844,0.011567733,0.013496805,0.012284437,-0.0054991944,0.029337969,0.011882546,-0.01994714,0.023148863,-0.016102392,0.0006564203,0.0053049475,0.014307283,0.0018637647,0.00774308,0.007897138,-0.023724904,-0.013704448,0.003546679,-0.042573545,-5.8294976e-05,0.0066244863,0.007917233,0.013851807,-0.03137421,-0.018540524,0.016531074,-0.016062202,-0.0069995834,-0.016303336,-0.008131574,0.026015677,-0.014816344,-0.0064034467,0.009149695,0.004437535,0.0018905574,0.014950307,0.011273013,-0.003042642,0.018674487,0.0060283495,0.026163038,-0.013449918,0.0008615516,0.014307283,0.01033527,-0.0050939554,-0.026926627,0.01855392,-0.007615815,0.0013563787,0.0015497882,-0.013603975,0.01402596,0.03973352,-0.010844331,0.013175293,0.018326182,-0.0054121185,-0.0047289054,-0.028560981,-0.035527073,0.018795054,0.00916979,0.00040628563,-0.011735187,-0.004631782,-0.010763953,0.0022840747,0.0071134525,-0.006279531,0.053638916,-0.016772209,0.011232825,-0.023403393,-0.008566954,0.0032385634,-0.002418038,0.026096055,-0.0073010013,0.02257282,0.015981825,0.021996778,-0.017817123,0.02618983,-0.02568077,-0.029579101,-0.022519235,-0.010449139,-0.005572874,-0.011132352,-0.024716234,-0.012559062,-0.006473778,-0.025466427,0.012378211,-0.01062999,-0.004872916,0.0036739442,0.0063096727,0.014334076,0.0028199279,-0.012391607,-0.005690092,-0.018125238,-0.0193577,-0.0014769456,0.0007652655,-0.026524737,-0.012659534,-0.006614439,0.010221401,-0.013811619,-0.020724127,-0.007629211,-0.010509423,0.0010465884,0.016397111,0.027221348,-0.00989989,0.0019525154,0.01329586,-0.0021065732,-0.0025335813,-0.00026122847,-0.00811148,-0.009819511,-0.010516121,-0.026953422,-0.008928656,0.02030884,0.0016527725,0.009745832,0.026725683,0.0034796973,0.00789044,-0.0027043845,0.012686327,-0.019772986,-0.0017917595,-0.017589385,0.0039619654,-0.00588099,-0.0052815042,0.020804504,0.007247416,0.03582179,0.0013505177,0.031401005,-0.0152986115,0.015419179,-0.022103949,0.0024866941,-0.002210395,0.016383715,-0.0071268487,0.03405348,-0.015901446,-0.02001412,0.0035667736,-0.0032084216,-0.0048662177,-0.006115426,-0.015378989,-0.016638245,-0.0007560555,-0.003503141,-0.017107116,0.00029367273,0.01724108,-0.020081103,0.027100781,0.008587049,0.013905393,0.005043719,-0.039170876,-0.011373486,0.019330908,0.0010624966,0.015499556,0.011681601,-0.0011587827,0.0237383,-0.015352197,0.025841525,-0.013905393,-0.011192636,0.043189775,0.014950307,-0.00960517,0.02140734,-0.020724127,0.012974348,0.012532269,-0.009223375,-0.020737523,-0.021246582,0.008419595,-0.026551532,0.005170984,-0.0065608537,0.0019190246,-0.010341968,-0.010328572,0.010656782,0.017843915,-0.012887272,-0.014079546,0.01574069,0.006088633,0.0050939554,0.004598291,-0.0022187675,-0.01888883,-0.010830935,-0.015660312,-0.03228516,-0.019022793,0.016008617,-0.0058675935,-0.006091982,0.017870707,-0.0049800863,0.0069526965,0.012284437,0.010261591,-0.009102808,-0.02925759,0.0075019463,0.028105505,-0.017951086,-0.026873043,-0.013784826,-0.025560202,-0.03389272,0.0036571987,-0.0089152595,0.025158312,0.0193577,0.0059077824,0.00011721791,0.021742247,0.033919513,0.0006823757,0.013470012,0.016959757,0.012699723,-0.0069192057,-0.009364036,-0.0028031825,0.01000706,-0.005167635,-0.010141023,-0.0129274605,0.008694219,-0.027971542,-0.00031292994,0.00080043083,-0.015512953,0.023215843,-0.004119372,-0.006162313,-0.023001503,0.028587773,0.029230798,-0.020174876,0.011326599,-0.002943844,-0.03938522,0.0034696502,0.13749996,-0.018995998,0.0024749725,0.020724127,-0.011500752,-0.032740638,-0.009404225,-0.026765872,-0.0016812397,-0.028989663,-0.006607741,-0.004826029,-0.0015238328,0.008091385,0.03600934,0.01088452,-0.011842358,0.008854976,-0.0017582686,-0.0044944696,0.021594888,-0.018178822,-0.0006229295,0.024367929,0.019170152,-0.036464818,0.02282735,0.007776571,-4.3008245e-07,-0.021487717,-0.021581491,-0.015325405,-0.008935354,-0.009819511,0.010214703,0.017549196,0.0150976665,0.016316732,0.01552635,-0.0035198864,0.019304115,0.0056130635,0.0026407521,-0.012552364,0.008747805,-0.034241024,-0.007957421,0.044020347,-0.00080126815,-0.027288329,0.0123112295,-0.008834881,-0.032847807,-0.007575626,0.04243958,0.006446985,-0.01267293,0.0244751,-0.0041763065,-0.024233965,0.008587049,-0.03992107,0.0005345974,0.0036806422,0.00967885,-0.021085827,0.0031246946,-0.010616593,0.003466301,0.012297833,-0.008305726,-0.018835243,-0.009611868,0.003079482,0.01015442,-0.014709173,0.036250476,-0.010288383,-0.007247416,0.019049585,-0.010804142,-0.0055092415,-0.013657561,-0.05642535,-0.001419174,-0.007609117,-0.014226905,0.021862814,-0.042198446,0.00460164,0.013181991,0.016906172,-0.0072809067,0.012612647,0.020992054,0.015955033,0.0033557813,-0.005884339,0.014293887,-0.009826209,0.00048771023,-0.015941635,0.0039619654,0.008118178,0.013202085,-0.007917233,0.014843136,-0.005800612,-0.0039251256,0.0031213455,0.0015757435,0.0017055206,-0.0074885497,0.0052681076,0.00573363,-0.0019156756,-0.016919568,0.013590579,-0.017776933,-0.00040900678,0.011159145,-0.033651587,0.00515089,0.025185104,-0.0049131047,0.007729684,-0.019451475,-0.027127573,-0.0070799617,0.0006677234,0.0060551423,0.026698891,-0.031079492,-0.014159923,-0.00964536,-0.015419179,-0.008834881,0.0059010843,-0.02056337,-0.019424682,-0.019706005,0.004440884,0.0072742086,-0.017870707,0.017468818,-0.037027463,0.005325042,-0.004953294,-0.017669762,0.002019497,-0.035848584,-0.01322218,-0.011715093,0.019371096,-0.010194609,-0.026524737,-0.0038380492,-0.01724108,0.022947917,0.010074042,0.03890295,-0.014508228,0.006252738,0.007542135,-0.0045045167,0.004229892,-0.0009938404,-0.0076827966,-0.025265483,-0.0017683159,0.016169373,-0.0015874654,0.007428266,0.008118178,-0.0021266676,0.03458933,0.009853003,0.02312207,-0.010596499,-0.0017214287,-0.008613842,-0.00039665704,-0.030624015,-0.005532685,-0.009558283,-0.014119734,0.019036189,0.022304893,-0.005968066,-0.011239523,0.017709952,-0.018473543,0.0025520013,-0.0103553645,-0.008962146,-0.027757201,-0.012224154,-0.021353753,0.003426112,0.013503503,0.011728489,0.02242546,-0.016571263,0.0067617986,0.010603197,0.026270207,-0.001601699,-0.034750085,-0.006369956,-0.016785605,-0.021233186,-0.019022793,-0.01304133,-0.043002225,0.017709952,0.019920345,-0.019304115,0.028802115,0.01186915,-0.03742935,0.029150419,-0.0010959874,0.039438803,-0.00040440177,0.035018012,0.0146823805,0.010650084,-0.019746194,0.015606727,0.014079546,-0.02673908,0.02213074,0.01614258,0.013784826,0.013878601,0.010549611,0.016892776,-0.0346965,-0.030704394,0.015767483,0.016155977,0.012987744,-0.027167762,-0.009484603,-0.02246565,0.015378989,0.017267872,0.012981046,-0.018352976,-0.022787161,0.008412897,0.017254476,0.003951918,0.00019163034,-0.0028065317,-0.004032296,-0.00047180208,0.009055921,-0.018138634,-0.008379406,-0.00039121477,0.018687883,-0.03225837,-0.004072485,0.027261537,0.001298607,0.006440287,-0.0079909125,-0.0062326435,0.027274933,-0.0017247777,-0.017669762,0.019880157,0.003791162,0.014923514,-0.010897917,-0.007428266,-0.021139413,-0.025158312,-0.013128405,0.0056699975,-0.0038782381,-0.00463848,0.012605948,-0.004464328,-0.0034361593,0.011045276,-0.008868372,0.0021199696,0.0005065488,0.0016427253,-0.025560202,-0.0150976665,0.00927696,-0.013516899,-0.017013341,0.027489275,0.021032242,-0.04230562,0.021434132,-0.027127573,-0.0065675518,-0.011842358,0.01523163,0.010208005,-0.02600228,0.036571987,-0.007059867,-0.013248973,-0.020148084,-0.0024565523,0.016758813,-0.01910317,-0.0011353391,-0.026163038,-0.00050780474,-0.01373124,-0.017187495,-0.02765003,0.02352396,0.0071469434,-0.01113905,0.0244751,8.131992e-05,0.009980268,-0.012880574,0.018419957,-0.026096055,-0.011741885,0.0065608537,-0.008459784,0.039251253,-0.017147306,-0.015874654,-0.008627238,-0.00061204494,-0.024836801,0.020429406,-0.0073143975,0.017937688,0.017991275,0.002377849,0.002578794,0.009826209,-0.0045045167,-0.0073478883,-0.014642191,-0.016397111,-0.028909285,-0.00304934,0.009069317,0.037188217,0.0088080885,-0.0077229855,-0.023242638,-0.0038146055,-0.03547349,-0.011219428,0.012103586,0.020469597,0.011989717,-0.003422763,0.011929434,-0.008687521,0.005532685,0.0109582,-0.028239468,-0.023845471,0.0038949836,-0.026055867,-0.0012433471,0.025479823,0.0014668984,-0.0019809827,0.0031297181,0.0033407104,0.0045614513,0.029311175,-0.0038447473,-0.0028232771,-0.0058240555,0.0057068374,-0.008942052,0.006932602,0.01986676,-0.022452254,0.0052714567,-0.0018570665,-0.018138634,-0.022787161,0.0014593629,0.016892776,0.0038413983,0.021889606,0.006483825,-0.025908507,-0.00423659,0.0031682325,0.011601224,-0.0016737042,-0.004243288,0.0310527,-0.0045045167,-0.02388566,-0.0152986115,-0.008975543,0.0013262369,-0.011487355,0.0022890982,0.007629211,0.0061522657,-0.019371096,-0.0037576712,-0.0066311844,0.015432575,-0.010114231,0.0005572037,-0.005931226,0.008613842,0.017227683,-0.025506618,-0.008024403,-0.004400695,0.0016351899,-0.024783215,-0.005351835,-0.002659172,-0.034535743,-0.011641413,-0.008520068,-0.014816344,0.008741107,-0.011273013,0.004032296,-0.041662592,0.018205617,0.2030884,-0.022813953,0.0013270741,0.014441246,-0.00478584,0.018245805,0.02399283,0.009256866,-0.0045212624,0.007367983,-0.0014560139,0.01300114,-0.002838348,-0.00019445614,-0.007019678,-0.03649161,-0.02458227,-0.025653977,-0.024274154,-0.017375043,0.0078033637,-0.028882492,-0.021903003,-0.006858922,0.016062202,-0.007039773,0.008975543,0.014615399,0.018875433,0.020094499,-0.00708666,-0.027730407,0.008198556,-0.021300169,-0.029391553,0.010020456,-0.002560374,-0.009477905,0.011775376,-0.004641829,0.007843552,0.020844692,0.0027964844,-0.006899111,-0.008640635,0.026819458,-0.013744637,-0.002773041,-0.0023359854,0.012297833,-0.02096526,0.0075488333,0.018821847,0.037938412,0.00431027,-0.0018034813,0.013215482,0.020657144,-0.02699361,0.008198556,0.011875848,0.028721737,-0.041260704,0.0031833034,-0.015620124,0.0208179,-0.0073076994,0.004035645,0.010114231,-0.028614566,0.0070732636,-0.02115281,-0.013932185,-0.0005015252,-0.0056164125,-0.013717844,0.020107895,0.004996832,0.03370517,0.03386593,-0.004149514,-0.015700502,-0.002114946,0.0054657036,0.020107895,-0.020174876,0.015553142,-0.0029321222,-0.006694817,-0.020040913,0.008386104,-0.011152446,-0.003509839,0.0027629936,0.022787161,0.0122040585,0.022358479,-0.0007665214,-0.014749362,-0.0074751535,-0.013168595,0.02498416,0.018058255,0.013784826,-0.02432774,0.0072675105,-0.0233766,0.020590164,-0.005124097,-0.013603975,0.002779739,-0.014655587,0.007877043,-0.013262369,0.003225167,0.03006137,0.015566538,-0.018728072,0.03367838,-0.04193052,-0.02312207,-0.014668984,0.00354333,-0.01008074,0.00072465785,-0.009196582,0.0012760006,0.014856532,-0.00664793,-0.024408117,0.029337969,-0.006112077,-0.008928656,0.0028768624,-0.00037886502,0.01728127,0.020389218,0.0021852767,0.00059236906,-0.0031799544,0.016129185,-0.0038347002,-0.0067885914,-0.006644581,-0.011011785,-0.0237383,0.009149695,0.0073010013,-0.013878601,-0.007729684,-0.008975543,-0.021983381,-0.009980268,-0.013865204,0.030409675,-0.025144916,-0.02030884,-0.012887272,-0.01267293,0.034321405,-0.0031966998,0.0067684967,0.03166893,0.010804142,0.0038949836,0.0016067226,-0.17361647,0.016584659,0.0015280192,-0.022586217,0.006369956,0.0042868266,0.017120512,0.014936911,0.016370319,0.030543638,0.012471985,0.005033672,-0.045306396,-0.00935064,0.01895581,-0.0090157315,-0.027757201,0.017977878,0.016356923,0.0072809067,0.03600934,-0.0007204715,0.012177266,0.018393165,-0.001654447,0.00066688616,0.014307283,-0.0004424976,-0.007769873,-0.004313619,-0.015901446,-0.0018486938,-0.004059089,0.008098083,0.0072809067,0.02454208,-0.016504282,0.0108711235,0.003707435,0.009457811,0.017442025,0.015995221,0.00063381396,0.0023945945,0.022947917,0.014749362,0.013282464,-0.0023326364,0.035071597,-0.011306505,-0.007870345,-0.029391553,0.01654447,-0.016745415,0.019531853,0.022090552,-0.015727295,0.010609895,-0.0038347002,0.0058508483,-0.0027931354,-0.017843915,0.026176434,-0.014012564,-0.01709372,-0.013590579,-0.018165426,0.00023297059,-0.02479661,0.0050705117,-0.0015732318,-0.0024532033,0.006051793,-0.023497166,0.017375043,-0.0010432394,-0.02428755,-0.002538605,0.018433353,0.014186716,0.004842774,0.007213925,-0.023189051,-0.010120929,0.008386104,0.025024349,-0.01910317,0.022947917,-0.022197723,0.006366607,0.027623238,-0.03649161,-0.01986676,-0.020523181,0.022921124,0.014963703,-0.0074751535,-0.0051441914,0.006041746,-0.03357121,-0.0045246114,-0.0108711235,0.008613842,-0.005355184,0.024970764,0.0024314343,0.0059881606,0.025720958,0.027569652,0.014896722,-0.02608266,0.0034562538,0.013637466,0.0052513625,-0.0043203174,0.008299028,0.006614439,-0.03611651,0.010670179,0.014240301,0.03951918,0.00964536,-0.022144137,-0.0038413983,0.0012785125,-0.01190934,-0.075394556,-0.010636688,0.014936911,0.014066149,-0.0028617915,0.015660312,-0.009859701,0.026203226,-0.013202085,0.023389997,0.001391544,-0.024300948,-0.019196944,-0.020067707,0.031990442,-0.004434186,0.010650084,-0.0116949985,0.0037978601,0.01768316,-0.006366607,-0.0064268904,-0.022626406,-0.01734825,0.0004755698,0.01340303,-0.02246565,0.020067707,0.0051274463,-0.0036705951,-0.013891997,-0.01578088,0.0047088107,-0.026270207,0.0045748474,0.0011487355,-0.022880936,-0.01402596,0.016865982,-0.034535743,-0.013456616,-0.0016502606,-0.021541303,-0.025319068,0.0123112295,-0.006480476,-0.035955757,0.0069259037,0.015070874,-0.02392585,-0.018982602,-0.016075598,-0.014535021,-0.0019860063,0.018607507,-0.013825015,0.024930574,-0.01040895,-0.007006282,0.01296765,-0.013985771,-0.013878601,-0.007294303,0.029847028,0.01373124,-0.014521624,-0.015151252,0.0017055206,-0.015057477,-0.020884883,-0.025962092,0.0025888411,-0.030543638,0.015445971,-0.014535021,-0.015164648,-0.024220569,-0.0015447646,-0.0012232526,-0.0011612945,-0.0049767373,-0.02261301,0.020576766,-0.009163091,0.031025905,0.013711146,0.03611651,0.009410923,-0.011125654,-0.010442441,-0.0113868825,0.02001412,0.0011679927,-0.016906172,0.001793434,0.015178044,-0.0045279604,0.0004307758,0.0007803364,0.013188689,0.0050939554,-0.008258839,-0.086808234,0.003144789,0.0067383554,0.0076426077,-0.0026608466,-0.004645178,0.007220623,-0.0015857909,-0.0002509719,0.01914336,-0.029016456,-0.0038882855,0.0059915096,0.00046008028,-0.0038514456,-0.039438803,0.00030958088,-0.0058709425,-0.00927696,0.012773403,-0.007749778,0.008091385,0.03740256,0.005971415,-0.032660257,0.0117954705,-0.0061824075,0.011487355,-0.040858813,-0.016263148,0.020067707,-0.025252087,0.005680045,0.015847862,0.012880574,-0.015981825,0.0066211373,0.027194554,0.016919568,0.037348974,-0.007615815,-0.025305672,-0.0004366367,-0.0021048987,-0.004839425,0.007093358,-0.017884104,0.00781676,0.04064447,0.018540524,0.03630406,0.018393165,-0.0034997917,0.01296765,-0.014347472,-0.017964482,0.016356923,0.009511396,-0.0043538082,0.0010968248,0.033973098,0.008540162,0.019826572,-0.017040135,-0.01760278,0.008747805,-0.0244751,-0.004621735,-0.0039787106,-0.02608266,-0.0056298086,-0.00038033025,0.0054690526,0.014722569,0.01574069,0.013891997,-0.008238744,-0.022813953,-0.0042164954,0.005231268,0.0049097557,0.016919568,-0.016343525,0.01628994,-0.004256685,0.02312207,-0.02564058,-0.00595467,-0.007568928,0.00055301737,-0.009256866,0.020938467,0.01146726,0.017040135,6.991211e-05,-0.003623708,-0.019478267,-0.00686562,0.0005170147,0.008138272,0.007903836,0.015164648,-0.0029890568,-0.033973098,-0.027408896,0.015245026,-0.033973098,-0.031856477,-0.013483409,0.014923514,-0.019826572,0.012445193,-0.004059089,-0.0014426175,-0.011112258,-0.0065608537,0.010623291,-0.00090676424,-0.020523181,0.009846305,-0.005318344,0.020951863,0.022479046,-0.007615815,0.008640635,-0.002114946,0.0071871323,-0.012331324,-0.011949529,-0.016370319,0.008278933,0.010763953,-0.016276544,-0.0055092415,-0.0076760985,-0.008205254,0.0083995005,0.010750556,-0.01654447,0.051602673,-0.013248973,0.010033853,0.014092942,-0.00074977597,0.017656365,-0.0078033637,0.005911132,-0.035795,-0.007401474,-0.0039653145,-0.0075019463,-0.016048806,-0.027368708,-0.022947917,-0.0015129483,-0.023323014,0.0034596028,0.007294303,0.0018604157,0.018714676,0.006838828,0.018835243,-0.009705643,-0.016517678,-0.004584895,0.02600228,0.010650084,-0.006661326,-0.024233965,-0.004464328,-0.0060283495,-0.035339523,-0.023256034,0.01143377,-0.022291496,-0.014910118,-0.00046552255,-0.007059867,0.04182335,0.002421387,0.010368762,-0.026765872,-0.009156393,0.0019994027,0.0042868266,0.007897138,0.00032821015,-0.014521624]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41d30aac-a5da-11ee-8347-07c03bbb152d', 'Culture', 'this article is about Books', '[0.019130943,0.0098258015,0.011861718,-0.016006978,0.008063566,0.023549885,-0.021253636,-0.003975044,-0.017181803,-0.029877914,-0.011287657,0.013190071,-0.00046016727,0.013590579,-0.0044156034,0.030385224,0.031506646,0.007542905,0.00091950013,-0.018783836,-0.037861377,0.032280963,-0.003242448,-0.00584742,0.005436899,0.017275255,0.021854399,-0.041999962,0.0019074205,-0.006221228,0.016300686,-0.008657653,0.0042887754,-0.022815619,-0.014271443,-0.025926232,-0.0056304783,-0.011561338,-0.0037714525,-0.0088378815,0.010139533,0.005300059,-0.014071189,-0.023830239,-0.0015269376,0.008517475,0.042881083,-0.012522557,0.0027418125,-0.004332164,0.020732976,0.012509207,-0.03698026,-0.008617602,-0.00322576,-0.0014843836,-0.003295849,0.008924658,0.010019381,-0.027421463,-0.007976789,-0.0055804146,-0.026954204,0.0033826258,-0.018583583,-0.003728064,1.3053674e-06,0.021533992,0.0047460226,-0.014685302,0.00109806,0.013937687,0.0028819905,0.018690383,0.024431001,-0.025899531,-0.02189445,-0.004836137,0.014658601,-0.0042887754,0.011634764,-0.021066733,-0.008791155,0.0045758067,0.0049129007,0.010787021,0.009879203,0.018249825,0.002770182,-0.011534637,0.002831927,-0.0020709613,-0.0008026852,0.0016712875,-0.01611378,0.019624904,0.022602014,0.02966431,-0.0068286653,-0.029450705,0.016207233,0.0020459294,-0.015005709,-0.0103598125,-0.018116321,0.02819578,-0.005663854,0.0031089452,0.036526352,-0.010960575,-0.013390325,-0.0005849089,0.026433542,-0.031453244,0.014485047,-0.02336298,-0.01711505,-0.017729165,0.013356949,-0.011247606,0.018570231,0.030865835,0.0044289534,0.0028169078,0.018783836,0.009358542,-0.037807975,-0.015019058,-0.023136025,0.0002886997,0.014351545,0.012582634,0.0035144596,0.0007250868,0.00018294048,0.024551155,-0.0003387632,0.031506646,-0.011327708,-0.017755864,-0.0022929097,0.025525725,-0.037781276,-0.034256805,-0.0054268865,0.004682609,0.0103598125,0.020305768,0.009492045,0.018823886,0.010913849,-0.004408928,0.009545446,0.016954849,0.017969469,0.007456128,-0.013697381,-0.006715188,-0.0041352473,-0.018169723,0.006281304,0.0034710714,0.01512586,-0.009124912,0.027875373,0.02380354,0.03503112,0.016781295,0.0041252347,-0.0014485047,-0.027848672,0.0035177972,-0.011467885,0.010266361,0.0013116645,0.028275881,0.0011397797,0.020773027,-0.007342651,3.1028958e-05,-0.027608367,0.03313538,0.043895703,0.043415092,-0.0044656666,0.011814993,-0.001334193,-0.004952952,0.010673544,0.0027067682,0.011467885,0.018890638,0.0108404225,0.003991732,-0.6860973,-0.025552426,-0.0292371,0.010266361,0.0028185768,-0.0017922743,0.020052113,0.030358523,-0.011634764,0.009999355,-0.0021827698,0.006171164,0.012943091,0.0051231678,-0.00045265772,-0.007255874,0.0038281912,-0.025405573,0.011487911,-0.005346785,0.003310868,0.021787647,-0.00877113,-0.0054202112,-0.001357556,0.012028597,0.0002893255,-0.0054435744,-0.0008594239,0.0020309105,-0.028676389,0.017635712,0.0046892837,0.026073085,0.026406843,0.015326115,0.0027551628,0.036446247,0.025405573,0.04517733,-0.007255874,-0.002770182,-0.015820075,0.007629682,-0.0033308933,-0.012455806,0.037540972,-0.007930063,0.0060142986,0.011087403,0.0039249808,0.014752053,0.012602659,0.0045924946,0.020145563,0.0016095424,0.0123890545,-0.006745226,0.029637609,0.01190177,-0.017809266,0.017675763,-0.0077097835,-0.020893179,0.00055653957,-8.858898e-06,-0.0060142986,0.0056838794,0.0073226253,-0.018156374,0.0032124098,0.0053901733,-0.023069274,-0.010753646,0.0018390003,0.013303548,0.027608367,-0.019584853,-0.013623955,0.011341058,0.0070422697,0.0013734094,-0.01338365,-0.004679271,0.041999962,-0.010192934,0.0005302562,-0.0007522045,-0.0012974797,0.0070823203,0.0014384921,0.007869987,-0.009024786,0.013684032,0.010232985,0.02133374,-0.010907174,-0.008804506,0.019317847,0.0088378815,-0.0066584493,-0.020399218,-0.00032374414,-0.007643032,0.00056613504,-0.0007601312,-0.016687842,0.013069918,0.035271425,-0.013523828,0.018396677,0.012729486,-0.007976789,0.0017772552,-0.012802913,-0.030892534,0.026420193,0.0132634975,0.008237119,-0.0048628375,-0.007816586,-0.0071891225,-0.0031139515,-0.00033250527,-0.0033592628,0.046432253,-0.03254797,-0.0062479284,-0.025125217,-0.015379516,0.0050464035,-0.0026033034,0.028382683,-0.003914968,0.02388364,0.0066117235,0.020666225,-0.016621092,0.03161345,-0.0122488765,-0.02381689,0.0020075475,-0.01656769,-0.010293062,-0.0026166537,-0.018650332,-0.017876018,-0.016300686,-0.024711357,0.024778109,-0.0013266836,-0.017408758,-0.013670681,-0.011334383,-0.010847098,-0.0017422108,-0.014084539,0.004679271,-0.018249825,-0.003698026,-0.0065950355,0.0020692926,-0.015446267,-0.0013492121,-0.020519372,0.0088378815,-0.0008911308,-0.0038415415,-0.0067952895,-0.0194914,0.007402727,0.00093952555,0.024163997,-0.016233934,0.0045824815,0.013343599,-0.014712002,0.0067485636,0.011347733,-0.007169097,-0.021173535,-0.00849745,-0.021160185,0.0031673526,0.018770486,-0.00461252,0.011975196,0.009505395,-0.0021143497,0.016354086,-0.006745226,0.006431495,-0.01606038,-0.0070556197,-0.018356627,0.008484099,-0.015860125,-0.0055303513,0.018143022,0.0020242354,0.019197695,0.004966302,0.023162726,-0.008123642,0.019478051,-0.036419548,0.0031289705,-0.002074299,0.007943413,0.012742837,0.031293042,-0.014404946,-0.021800999,-0.012649385,0.0010963912,-0.018049572,0.00042324542,-0.005894146,-0.021293687,0.0076029813,-0.0027902073,-0.018156374,0.01094055,0.004906226,-0.030225022,0.04034453,0.014057838,0.0046759336,0.0025248707,-0.035298124,-0.012415756,0.00035920582,-0.0019324522,0.012302278,0.0097457,-1.486261e-05,0.018303227,-0.021787647,0.029984716,-6.0962775e-05,-0.013183396,0.045631237,0.0005640491,-0.021320388,0.015246013,-0.010520016,0.004302126,0.017702464,0.0019374585,-0.019825157,-0.010753646,0.017622363,-0.020385869,0.0046725958,-0.0054268865,0.0077631846,0.0054402365,-0.0048862,-0.00034543834,0.02041257,-0.012055297,-0.010353138,0.016661143,0.0024163995,0.008984734,0.0024881575,0.0014543455,-0.020252366,-0.03356259,-0.014965657,-0.030011417,-0.018062921,0.01217545,-0.012475831,0.000595756,0.018516831,-0.001083041,0.011080728,0.010479965,0.013857584,-0.017729165,-0.016260633,0.0014560143,0.03017162,-0.020492671,-0.020746326,-0.031106139,-0.014324844,-0.03153335,0.0057439557,0.00340432,0.019237746,0.011000626,0.0028653026,0.0038548918,0.029263802,0.025912883,-0.001817306,0.0023379668,-0.00095120707,-0.005757306,-0.026647147,0.0019591528,0.008230444,0.008163692,-0.003265811,-0.01656769,-0.0048928754,0.009545446,-0.023977093,-0.0009186657,-7.3530806e-05,-0.01607373,0.019865207,0.0025332146,-0.0008694366,-0.017462159,0.0340432,0.024631256,-0.012829614,0.018583583,-0.006538297,-0.027635068,0.016354086,0.12858984,-0.019117592,-0.005660516,0.029343903,0.0037480895,-0.039249808,-0.01898409,-0.021106783,0.0023496482,-0.023176076,-0.014832155,-0.013490452,-4.608713e-06,-0.009665598,0.023910342,0.01853018,-0.015780024,-0.010960575,-0.004151935,-0.009164963,0.02091988,-0.00948537,-0.0068320027,0.013543854,0.0129831415,-0.045577835,0.030438626,-0.004702634,-0.0030822447,-0.013557203,-0.020853128,0.000655415,0.003968369,-0.01607373,0.0031256329,0.027715169,0.016087081,0.0194914,0.012008572,-0.0009044811,0.031106139,0.0055670645,0.0065483097,-0.007249199,0.004866175,-0.030438626,-0.00995263,0.05158546,-0.00021047542,-0.029851213,0.0170216,-0.00031560884,-0.035725333,-0.014191342,0.031239642,0.010933874,-0.0074361027,0.042453874,0.0065115965,-0.019437999,0.013083269,-0.03017162,-0.008884608,-0.0050998046,0.008170368,-0.02436425,0.0013692376,-0.00036671534,-0.010092807,0.0050831167,-0.017048301,-0.014792104,-0.0017839303,-0.0020976618,0.013190071,-0.004472342,0.045471035,-0.0121353995,-0.00973235,0.016220583,-0.024631256,-0.0146719515,0.0007004722,-0.059969433,-7.43652e-05,-0.0013492121,-0.021600744,0.004956289,-0.014271443,0.0076029813,0.005176569,0.02094658,-0.023523184,0.00207263,0.029263802,0.015192612,0.0078232605,0.008250469,0.02090653,-0.01845008,0.0026900803,0.00473601,0.0013266836,-0.012142074,0.00034418676,0.00803019,-0.00026262493,-0.00048019268,-0.011294332,0.0064949086,0.006605048,-0.00439224,-0.00194914,0.02485821,-0.011180854,0.011875069,-0.02292242,0.018783836,0.0007309275,-0.025952933,0.0078232605,-0.04277428,-0.0062379157,0.019584853,-0.010032731,0.016407488,-0.022989172,-0.023990443,-0.00056822103,-0.003874917,0.007876662,0.034764115,-0.029343903,-0.0070222444,-0.022134755,-0.011714865,-0.0118550435,0.0025432273,-0.028302582,-0.007890012,-0.013069918,-2.108144e-05,0.013470427,-0.011935146,0.013857584,-0.03308198,0.0092317145,-0.015900176,-0.010520016,0.020999981,-0.023923691,-0.0022795594,-0.0032124098,0.014111239,-0.02824918,-0.025846131,-0.009779076,-0.019878559,0.01750221,0.0027017617,0.039356608,-0.0088645825,0.007015569,0.0027418125,-0.015699923,-0.00779656,0.0035011093,-0.01045994,-0.024631256,-0.015900176,0.018516831,-0.0058707832,0.021493942,-0.0035211348,0.0055270134,0.034924317,0.0062712915,0.016701194,-0.008644302,-0.010399864,-0.0038949426,0.0033375686,-0.018436728,0.0077698594,-0.017622363,-0.019224394,0.038555592,0.0015027402,-0.0037113763,-0.01070692,0.030331824,-0.01994531,0.003302524,-0.0016562684,-0.00878448,-0.024911612,0.011227581,-0.028970094,0.0049996777,0.032441165,0.013684032,0.021720896,-0.010479965,-4.1328487e-05,0.012709461,-0.006705175,0.017689113,-0.022655416,-0.008751105,-0.018570231,-0.0015803387,-0.015045759,-0.02093323,-0.009258416,0.014712002,0.025926232,-0.019130943,0.038849298,-0.00011983957,-0.01698155,0.0292371,-0.005877458,0.0340432,0.0076096565,0.017595662,0.008363947,-0.0034543835,-0.013870935,0.027421463,0.021547344,-0.027635068,0.021680845,0.02242846,0.012629359,-0.0008097776,0.005313409,0.014872205,-0.02872979,-0.017889367,0.0086977035,0.020319117,0.00046392204,-0.026353441,-0.007356001,-0.024471052,0.014565149,0.011768267,0.011534637,-0.022121405,-0.020332467,0.006071037,0.0066317488,-0.0053100716,0.010973926,-0.006585023,-0.009785751,0.003961694,0.0026033034,-0.014471698,-0.008671003,-0.005263346,0.020759676,-0.017782565,0.017729165,0.014538448,-0.0035278099,-0.0040751714,-0.004786073,-0.007396052,0.02768847,-0.006928792,-0.018757135,0.012395729,0.015459618,-0.003457721,-0.014591849,-0.010419889,-0.014792104,-0.009718999,-0.013724082,0.0029821175,0.0009829139,-0.010780347,0.018677033,-0.0025782718,-0.005950885,0.0047460226,-0.010993951,-0.00031331426,0.0073359758,-0.017849317,-0.017729165,-0.012762862,0.0194914,-0.012722812,-0.021640794,0.02133374,0.03844879,-0.047526978,0.0195448,-0.019090893,-0.003938331,-0.015072459,0.012061973,-0.00973235,-0.018396677,0.032254264,-0.003744752,-0.015900176,-0.014858855,0.0101328585,0.004385565,-0.021080082,-0.001740542,-0.01607373,0.006361406,-0.0043655396,-0.0035478354,-0.037621073,0.017208504,0.0066117235,-0.0043054633,0.020813078,-0.025485674,0.011394459,-0.0034093263,0.007983464,-0.0108404225,-0.014404946,-0.0032207537,0.004368877,0.03708706,-0.02531212,-0.014298144,-0.008671003,-0.0022612028,-0.02439095,-0.0029253787,0.014952308,0.01652764,0.01654099,0.0040551457,-0.004338839,0.0010813723,-0.0063680806,0.004715984,-0.0058908085,-0.0024197372,-0.03756767,-0.00558709,0.0039116303,0.029183699,0.00827717,-0.015446267,-0.029343903,-0.002089318,-0.027007604,-0.009298466,0.0218811,0.024123946,0.014832155,0.00077807065,0.022668766,-0.0038482165,-0.0054903002,0.015873477,-0.020706275,-0.015913527,0.00043012915,-0.006655112,0.009545446,0.021320388,-0.006995544,-0.004715984,0.009572146,-0.0018757136,0.003791478,0.02242846,0.0043622022,-0.0030204996,-0.0017522235,-0.002768513,-0.01238238,0.0024230748,0.013283523,-0.026660498,0.003474409,0.0021176874,-0.009451994,-0.0135171525,-0.0029604232,0.0066117235,-0.0035912239,0.027715169,-0.004138585,-0.022828968,-0.0036245994,0.02481816,0.013570554,-0.018623633,-0.008317221,0.030839134,-0.013543854,-0.022108054,-0.009919254,0.0057139173,-0.013884285,-0.0052700206,0.0076230066,-0.0011030664,0.020666225,-0.012469156,-0.008116967,-0.007996814,0.008210419,-0.016807996,1.0592869e-05,-0.009138263,0.014057838,0.03665985,-0.026807351,-0.0033642692,-0.0034677337,0.008243795,-0.019251095,-0.0017922743,-0.00547695,-0.024204047,-0.011861718,-0.014538448,-0.010993951,0.00878448,-0.005453587,-0.0007509529,-0.04333499,-0.0022762218,0.19416639,-0.016888097,-0.001748886,-0.0006353896,-0.012989817,0.017876018,0.02238841,0.013670681,-0.0016412494,-0.0013208428,-0.0003189464,0.0050630914,-0.010540041,0.010046082,-0.012716136,-0.033268884,-0.02819578,-0.03615254,-0.018890638,-0.01798282,0.010586767,-0.022441812,-0.0145785,-0.007476154,0.013684032,0.0035177972,0.004952952,0.008564201,0.008737754,0.024938311,-0.0040751714,-0.016861396,-0.0032941801,-0.045017123,-0.024270799,0.0061478014,0.012709461,-0.0062679537,0.009445319,-0.012188801,-0.01169484,0.026486944,-0.0040651583,-0.0130098425,-0.02146724,0.027341362,-0.01505911,-0.001787268,-0.00033584284,0.009151613,-0.001887395,0.026113136,0.012075323,0.033001877,0.0061845146,-0.0066985,0.012282252,0.016367435,-0.028088978,-0.008010165,0.0008481596,0.03649965,-0.028676389,-0.009612197,0.0016662811,0.029130299,-0.024257448,-0.0109806005,4.698671e-05,-0.02776857,0.005370148,-0.022508562,-0.010192934,0.0085842265,0.0015336127,-0.012429105,0.03313538,0.00584742,0.022441812,0.037621073,-0.014752053,-0.010660194,0.00037130452,-0.0031339768,0.02678065,-0.041279048,0.0030822447,-0.018917339,-0.004866175,-0.0071423966,0.013430376,-0.009678949,0.007930063,0.0073760264,0.033509187,0.015419567,0.0013642311,0.011227581,-0.030919235,-0.0013600591,-0.017235205,0.03500442,0.02046597,0.023162726,-0.020265717,0.005446912,-0.044723418,0.025752679,0.006004286,-0.006057687,-0.010306411,-0.0075028543,-0.004662583,-0.005376823,-0.006234578,0.024057195,1.4927797e-05,-0.017742515,0.028863292,-0.04042463,-0.019104242,-0.0042353747,-0.0013734094,0.0055336887,0.0010563404,0.00013245975,-0.0044122655,0.017275255,-0.0003921643,-0.024871562,0.037300665,-0.0024197372,-0.0073026,-0.005013028,-0.0050497414,0.012742837,0.014311494,-0.015886826,-0.008604252,-0.005917509,0.0018940702,-0.0034610587,-0.003968369,-0.0132634975,0.009999355,-0.009385243,0.017675763,0.0010713595,-0.014898906,-0.017248554,-0.004408928,-0.01651429,-0.025258718,-0.024217397,0.023509832,-0.022121405,-0.024631256,-0.0077698594,-0.020052113,0.016260633,-0.007582956,0.0023613297,0.03601904,0.014511748,0.007402727,0.0014935619,-0.17291275,0.017181803,0.00756293,-0.026206588,0.018770486,0.009812452,0.0194113,0.023229478,0.02333628,0.03449711,0.0008886276,0.01950475,-0.030144919,-0.005797357,0.0060443366,-0.014271443,-0.02966431,0.004956289,0.009538771,0.011721541,0.02042592,-0.0056805415,0.01895739,0.010893824,-0.006705175,0.004665921,0.016260633,0.0071957977,-0.010166233,-0.0002018186,-0.012989817,0.005059754,-0.013176721,0.011915119,0.008944684,0.026446894,-0.018556882,0.011307682,-0.0018924014,0.010920525,0.010146208,0.026526995,0.0087244045,-0.0048695127,0.0194113,0.008924658,0.016273985,-0.011114104,0.0119685205,-0.015032409,-0.008417348,-0.014004437,0.0023780176,-0.01166814,0.02581943,0.009138263,-0.018783836,0.022521913,-0.0036913508,0.0016053704,-0.0028352644,-0.019825157,0.014551799,0.00097206683,-0.007649707,-0.012896365,-0.008110291,-0.0032774922,-0.015686572,0.010553392,0.0029921301,-0.0076230066,0.010600118,-0.013710732,-0.006605048,-0.0055136634,-0.018463429,-0.008564201,0.018556882,0.006948818,0.009492045,0.0036579752,-0.023122676,-0.01165479,0.009144938,0.030945936,-0.01752891,0.015005709,-0.021026682,0.0015811732,0.014992358,-0.042507272,-0.017422108,-0.023977093,0.023256177,0.025832782,-0.012208826,-0.008797831,0.007836611,-0.026794,-0.0036946884,-0.013570554,-0.009051486,-0.018757135,0.03794148,0.0003615004,0.00728925,0.018249825,0.035698634,0.020145563,-0.03345579,0.010793697,0.0059575597,0.0046859463,0.0010955569,0.014858855,0.012202151,-0.029984716,0.014378245,0.009545446,0.047740582,0.021186884,-0.017555611,0.0041419226,0.008717729,-0.012736161,-0.07727139,-0.0036245994,0.0053267595,0.017075,0.0038081657,0.009064836,-0.024270799,0.01168149,0.00045849849,0.023683386,0.009725675,-0.018650332,-0.019558152,-0.008383973,0.027154459,0.018837238,-0.0043622022,-0.013764133,-0.0019691654,0.0063013295,-0.0052333074,-0.010299737,-0.02576603,-0.013450401,0.0038014906,0.006581685,-0.038235184,0.027394762,0.022268258,-0.009859177,-0.02774187,-0.023416381,0.004302126,-0.021614093,0.010299737,0.0057139173,-0.012315628,-0.008103617,0.012041948,-0.022615364,-0.013670681,-0.000997933,-0.012529233,-0.02577938,0.009752375,-0.0014918932,-0.03361599,0.0010538372,0.011961846,-0.022455161,-0.002274553,-0.005797357,-0.00874443,-0.004619195,0.026113136,-0.02097328,-0.0031690213,-0.017876018,-0.0076764077,0.020399218,-0.019651603,-0.0007250868,-0.004315476,0.03844879,0.02536552,-0.021827698,-0.005777331,-0.0016479245,-0.0005828229,-0.013750782,-0.017809266,0.0021627445,-0.026647147,0.01756896,0.0013650656,-0.0062479284,-0.027581668,0.00754958,-0.004479017,-0.0035912239,-0.008417348,-0.023416381,0.018516831,-0.0112342555,0.013156695,0.007863311,0.026500294,0.020025412,-0.0035311475,-0.0040951967,-0.00280022,0.021600744,0.004232037,-0.010907174,0.0008494112,0.014364895,0.0049496144,-0.0034093263,0.0009762388,-0.0102196345,-0.0154062165,0.0029370603,-0.084800944,0.004338839,-0.0077231335,-0.001253257,0.004902888,-0.017395407,-0.0084707495,0.0028869968,-0.010239661,0.027221208,-0.03017162,0.0026483606,-0.00995263,-0.007910037,0.004819449,-0.03657975,0.0014835492,-0.005143193,0.0069688433,0.023029223,-0.0040751714,0.01165479,0.041626155,0.004525743,-0.0438156,0.0069354675,-0.021013333,0.00801684,-0.040691637,0.011154154,0.010032731,-0.028676389,0.021694196,0.0219078,0.0077565094,-0.012282252,0.00901811,0.025058465,0.012429105,0.0486217,-0.0008602583,-0.016247284,0.008791155,-0.010660194,8.578594e-05,0.01854353,-0.014111239,0.01022631,0.044643316,0.00901811,0.037247267,0.018102972,0.005263346,-0.010293062,-0.022668766,-0.0066951625,0.025699278,0.007903363,0.001659606,0.0054435744,0.041172247,0.015472968,0.021587394,-0.015259364,-0.009532096,-0.0020642863,-0.0043355017,0.004509055,-0.0050998046,-0.027101057,-0.017876018,-0.0030522065,0.008817856,0.00830387,0.008377297,-0.0071957977,-0.02240176,-0.0039316555,-0.0045157303,-6.398745e-05,0.0035678607,0.010373163,-0.010066107,0.0077431593,-0.0035211348,0.015272714,-0.0070756455,-0.010920525,-0.00064665393,0.0024180685,-0.011154154,0.019531451,0.01800952,0.017168453,0.0035711983,-0.009932604,-0.022188155,0.0058908085,0.00560044,0.0074694785,0.00317069,0.0040351204,0.0023563234,-0.033909697,-0.029103598,0.013190071,-0.023202777,-0.04175966,-0.029263802,0.011167505,-0.019624904,0.017662413,0.005864108,0.008397322,-0.020118864,-0.0034510458,0.0071423966,0.019104242,-0.028329281,0.022054654,-0.009605522,0.017315306,0.014324844,-0.012916391,0.007356001,-0.0121086985,0.018623633,-0.006297992,-0.0049329265,-0.003172359,0.008938009,0.008143667,-0.029877914,0.0035478354,-0.0038815923,-0.014057838,0.009178313,0.01711505,-0.020586124,0.048354693,-0.0059842602,0.0006683481,0.011254281,-0.014725353,0.02041257,-0.008944684,-0.002631673,-0.017275255,-0.017288605,-0.0004564125,-0.00025574118,-0.009698974,-0.028169079,-0.03214746,0.010466615,-0.026967553,-0.0018273188,0.014631901,0.008397322,0.020038761,0.0025098515,0.016754594,0.0029504106,-0.01756896,-0.0008072744,0.03246787,0.00037651946,-0.0011739897,-0.020546071,0.00680864,-0.0024130621,-0.025979634,-0.020639524,0.014805454,-0.030598829,-0.017448809,0.00035920582,0.0039817193,0.025205318,0.008557525,0.0044289534,-0.024097245,0.0019324522,-0.0045924946,-0.0013450402,0.0032841675,-0.0121086985,-0.019558152]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41d8591c-a5da-11ee-8347-bb478f6bd591', 'Culture', 'this article is about Sports', '[0.011172283,0.016434928,0.027373761,-0.007530452,-0.006049708,0.019956699,-0.013766921,2.3888963e-06,-0.009197957,-0.045596253,0.00014538558,-0.0030131815,0.007843943,0.0062064533,0.0019159631,0.0062331334,0.03364358,-0.009591488,0.010345201,-0.005202615,-0.019756598,0.035724625,-0.0066199945,-0.0104119005,-0.0115057845,0.02051698,0.015100924,-0.029561527,0.009004527,-0.008737726,0.023892011,-0.003705196,-0.0044789184,-0.017808953,-0.016088087,-0.02402541,0.005686192,-0.014807444,0.012046056,-0.0038352613,0.015821287,0.008631006,-0.014740744,-0.02331839,0.0022944869,0.023011569,0.042981606,-0.014767423,0.018195814,0.0061397534,0.013980362,0.01342675,-0.042954925,-0.012346206,-0.003928642,-0.014513963,-0.0049558245,0.01680845,0.01990334,-0.012566317,-0.008150764,-0.0008637676,-0.024052091,0.014700724,-0.014847464,-0.0004368863,0.0022628042,0.015074245,-0.009157937,0.0010430244,0.012432917,0.010665362,0.0025646226,0.0013131602,0.019863319,-0.02702692,-0.017382072,-0.010972182,0.024265531,-0.0033666925,0.011419074,-0.018009054,-0.005149255,0.0011247321,0.008817766,0.001421548,0.009938329,0.0102118,0.017875653,0.006660015,0.012839788,0.012879808,-0.0024779122,-0.004745719,-0.03057537,0.026386598,0.014380562,0.009731559,-0.001101387,-0.028227523,0.011905985,0.01676843,-0.017488793,-0.01668839,-0.024559014,0.017221991,-0.009211297,0.0070302007,0.026519999,-0.019970039,-0.029561527,0.0072903316,0.013186629,-0.038606074,0.004335513,-0.012259496,0.009911649,-0.01006506,0.012139436,-0.012466267,0.019396417,0.017995713,0.0022411267,0.0005669517,0.016074747,0.00502586,-0.034977585,-0.00035246887,-0.017462112,0.0041487524,0.021917684,0.0037785661,-0.012059396,0.027907362,-0.0015849634,0.007883963,-0.0028380933,0.019276356,-0.014727403,-0.0075971526,-0.004789074,0.01019179,-0.03356354,-0.023144968,-0.006726715,-0.0018742755,0.013173289,0.0200234,0.0063231788,0.01707525,0.022451287,-0.014100422,0.022011066,0.02702692,0.011425744,0.0061097383,-0.007150261,0.0054994314,3.165654e-05,-0.006506604,0.0048824544,-0.0127864275,0.01354014,-0.014073742,-0.0075704725,0.024345571,0.039032955,0.02374527,0.0018209154,-0.005769567,-0.0087510655,0.009491438,-0.01716863,0.011525794,-0.002549615,0.027667241,-0.01326667,0.028387604,-0.020690402,-0.008150764,-0.025492815,0.019169636,0.061791062,0.04431561,0.002377862,0.02043694,0.009464758,-0.01342675,0.0015165957,0.005416056,0.01979662,0.0271203,-0.002011011,0.00012287428,-0.6872788,-0.014820784,-0.012112756,0.008817766,0.01990334,0.004739049,0.015727907,0.0076705227,-0.010832112,0.00677007,-0.018969536,0.012706388,-0.0077172127,0.0029147987,-0.006473254,-0.010638681,0.026026417,-0.02007676,0.0037852363,-0.004045367,-0.0007424566,0.0021911014,-0.006479924,-0.005202615,-0.0055994815,-0.00023574352,-0.01352013,-0.0028214185,0.0016458273,0.018115774,-0.029027926,0.0119793555,-0.005312671,0.007803923,0.032069456,0.010785422,0.002906461,0.02701358,0.008590985,0.043061648,0.012179456,-0.005722877,-0.01699521,0.0071302513,-0.007497102,0.0029214686,0.009298008,-0.019409757,0.018155795,-0.014620683,-0.007757233,0.008297505,0.008757736,0.012066065,0.01013843,9.390137e-05,0.007410392,-0.0024328898,0.017995713,0.015807947,-0.02343845,0.042394646,-0.001842593,-0.01687515,0.017795613,0.0013323365,-0.022931527,0.00023845321,0.017488793,-0.018636035,-0.016261509,0.010438581,-0.024879174,0.00673005,0.0045456183,0.01012509,0.016741749,-0.0337503,-0.021450784,0.010945503,-0.0089444965,-0.011192293,-0.008631006,-0.022811467,0.03753887,-0.013900321,0.0022544668,0.012419577,0.00066408387,-0.0036451658,0.022117786,0.024759114,-0.00050483714,0.025239354,0.011045553,0.030815491,-0.02369191,-0.0062498087,0.028574364,0.0025145975,-0.0068000853,-0.0103652105,0.006039703,-0.009864959,0.0055627963,-0.0017075251,-0.019196317,0.02339843,0.030201849,-0.010765412,0.012619677,0.019022897,-0.005776237,0.0013390065,-0.00169752,-0.029828329,0.008884466,0.011485774,0.014687384,-0.01024515,-0.0025746275,-0.009017867,0.013306689,0.005636167,-0.009671529,0.053600278,-0.02722702,-0.006043038,-0.015461106,-0.026186498,0.006353194,0.0048324293,0.03692523,-0.006476589,0.041274082,0.013740241,0.019876659,0.0001657083,0.024905853,-0.011405733,-0.021717584,-0.011492444,-0.013106589,-0.004435563,-0.0073303515,-0.03017517,-0.027907362,-0.0076705227,-0.011525794,0.020930521,-0.00037310424,-0.01659501,0.0011122258,-0.0058729523,-0.007136921,-0.003031524,-0.017568832,-0.012913158,-0.02716032,-0.009458088,-0.016354889,-0.00041437498,-0.022304546,-0.02370525,-0.010778752,0.009871629,-0.026413279,-0.021077262,-0.007123581,-0.018035734,0.007483762,0.014487283,0.012019375,-0.0012331199,-0.0076505127,0.0069835107,-0.021143962,-0.0032899873,-0.0017392077,-0.0049424847,-0.02025018,-0.015767926,-0.035911385,-0.0024228846,0.0153010255,-0.0033433475,0.015741246,0.025652897,0.00094630907,0.01668839,-0.01040523,0.004405548,-0.021717584,-0.0022044415,-0.015327705,0.011145603,-0.020757101,0.0018259179,0.009124587,0.0036918558,0.035217702,0.0009596491,0.028494325,-0.0031815993,0.0269869,-0.023265028,0.0016441599,0.0010155105,0.019463118,-0.012633017,0.024865834,-0.0076104924,-0.021157302,0.0014573993,-0.0133267,-0.009965009,0.012059396,-0.009611499,-0.010438581,-0.0023228345,0.007797253,-0.017969033,0.013393399,0.010972182,-0.017235331,0.032603055,-0.008077394,0.019743258,0.0037952412,-0.035431147,0.005149255,0.010992193,-0.00031640907,0.0075171124,0.015194305,0.0033700275,0.024559014,-0.021730924,0.04122072,-0.0048857895,0.0031882694,0.029294727,0.0055294465,-0.014727403,0.029214686,-0.024545673,0.025479475,0.007817263,-0.004739049,-0.017408751,-0.020890502,0.01707525,-0.023985391,0.012239486,-0.009864959,-0.005639502,-0.0021043913,-0.009704879,-0.0055761365,0.011799265,-0.0012189461,0.0009904979,0.028387604,0.010912152,0.0029364761,0.001619981,-0.008497605,-0.019263018,-0.01656833,-0.011639184,-0.031909373,-0.0064432393,0.008544295,-0.008864456,-0.008604325,0.02343845,0.0031032267,-0.00078706234,0.0065766396,0.012299516,-0.018529315,-0.01660835,-0.007757233,0.028387604,-0.01970324,-0.023465129,-0.022011066,-0.011392394,-0.036124825,0.011612505,-0.0021494138,0.015314366,0.008224134,0.00495249,0.0020060085,0.038045794,0.026119797,0.0005527779,0.009171277,-0.0045389486,0.005822927,-0.011739234,0.00029556526,-0.010378551,0.029188007,0.0027297055,-0.007076891,-0.024625713,0.003978667,-0.042794846,0.00012297848,-0.011279004,-0.013253329,0.03743215,-0.001434888,-0.010525291,-0.018115774,0.029241366,0.02321167,-0.02343845,0.004415553,0.009684869,-0.03479082,0.0023661896,0.12667702,-0.011772585,-0.00020739593,0.02654668,-0.004382203,-0.028040763,-0.0068701203,-0.027827322,-0.0031599218,-0.015047564,-0.016154788,0.0075371224,-0.010478601,0.00014830372,0.031829335,0.022117786,-0.017822294,0.0005890461,-0.0053026658,0.016528308,0.025866337,-0.026613379,-0.011652525,0.020637041,0.005075885,-0.041514203,0.02734708,0.0034817504,0.003698526,-0.020637041,-0.008684366,-0.0019576508,0.00016143532,-0.012839788,-0.005306001,0.014207142,0.014914164,0.008357535,0.012079406,-0.007443742,0.023091609,0.008964507,0.0109855225,-0.005639502,0.0027330406,-0.026786799,0.0081374245,0.027587201,0.0013731903,-0.03721871,0.009531458,-0.017622191,-0.027693922,-0.017382072,0.022678068,0.0119793555,-0.007430402,0.027960723,0.012906488,-0.03356354,0.003761891,-0.021237344,0.00062906626,0.0020326886,0.0018225829,-0.014100422,-0.00040332775,-0.0055728015,-0.00074454094,-0.0007683029,-0.010031709,-0.022344567,-0.0073303515,0.005816257,0.01671507,-0.0045889737,0.03316334,-0.013953681,-0.014180462,0.02007676,-0.011632514,-0.00340171,-0.015474446,-0.05287992,-0.0012572987,-0.013286679,-0.0052393004,0.015367726,-0.03041529,0.0032382945,0.004702364,0.007877293,-0.014887484,0.015261006,0.01658167,0.0059863427,0.01702189,-0.017141951,0.017822294,-0.016341548,0.0035818005,-0.022651387,0.007136921,0.012999868,0.017982373,0.0019493132,0.020730421,0.0061097383,0.01003838,-0.0005544454,0.0056995316,-0.0028914534,0.016314868,0.0039186366,-0.004752389,-0.0033433475,-0.010932162,0.016234828,-0.0038285914,-0.012552978,0.011999366,-0.02688018,-0.0013982028,0.023385089,-0.0051726005,0.0008212462,-0.010772082,-0.035084303,-0.0068968004,-0.008224134,0.012379557,0.026159817,-0.035804667,-0.012032716,-0.02382531,-0.019182976,-0.0063465238,0.005432731,-0.002216114,-0.016114768,-0.014780764,-0.004378868,0.011785924,-0.008524286,0.020743761,-0.03364358,-0.0063098385,-0.01363352,-0.024772454,0.0026796805,-0.029641569,0.0031382444,-0.004038697,0.0061564283,-0.012886479,-0.00249959,-0.010972182,-0.017622191,0.025906356,0.009151267,0.039539877,-0.015901327,-0.00090795645,0.014767423,-0.0072436417,-0.004665679,-0.004515603,-0.013820281,-0.018502634,-0.0005744554,0.029668247,0.0072836615,0.023291709,-0.010571981,-0.014233822,0.01658167,0.008344195,0.021103943,-0.014060401,-0.018075753,-0.0017425426,0.008030704,-0.015154284,0.005769567,-0.016061408,-0.02021016,0.034977585,-0.00061197433,-0.0076171625,-0.014367223,0.009197957,-0.02001006,4.051516e-05,-0.01025849,-0.014087082,-0.03276314,-0.015474446,-0.02011678,0.004622324,0.019836638,0.007163601,0.027667241,-0.012586327,0.002883116,0.006429899,0.022598026,-0.022317886,-0.024105452,-0.011185623,-0.021597523,-0.004645669,-0.011265663,-0.015501126,-0.035671264,0.021797625,0.028094124,-0.027613882,0.0340171,0.00675673,-0.035351105,0.028974567,0.00022511317,0.035084303,-0.0039153015,0.027187001,0.0029364761,0.0037852363,-0.01739541,0.013193299,0.0268535,-0.021530824,0.019676559,0.012159446,0.008117414,0.007397052,0.010632011,0.019596517,-0.02700024,-0.02361187,0.015154284,0.018289194,0.01012509,-0.025105955,-0.01008507,-0.023785291,0.018102434,0.018129114,0.004729044,-0.0106053315,-0.028947886,0.008631006,0.033243377,-0.013206639,0.007977343,-0.0027563856,0.0013023213,-0.00681676,0.008590985,-0.015541146,-3.1786814e-05,-0.0032766473,0.02053032,-0.013740241,-0.007817263,0.013153279,0.015034225,0.0035017603,-0.002863106,0.004132077,0.026479978,0.002664673,-0.010612002,0.017622191,0.022944868,0.004318838,-0.008217464,-0.003721871,-0.021797625,-0.015634526,-0.014140442,0.010872132,-0.006126413,-0.011092243,0.012126096,-0.0020326886,-0.0006824264,-0.006149758,-0.0135268,-0.009338028,-0.01040523,-0.01998338,-0.027200341,0.004642334,0.0017141951,-0.0049725,-0.028307565,0.017929014,0.031055612,-0.044475693,0.013159949,-0.036444988,0.0055461214,-0.008557635,0.017582173,0.0024295547,-0.015007544,0.042234566,-0.0076104924,-0.016234828,-0.0126930475,0.0153010255,0.009724889,-0.022971548,0.00093296904,-0.00053985475,-0.00046231574,-0.006016358,-0.019609857,-0.04007348,0.011392394,0.0053693657,-0.011892646,0.007023531,-0.02700024,0.010285171,-0.0046256585,0.008057384,-0.015607846,-0.016074747,-0.008077394,-0.0024062097,0.024892515,-0.018782776,-0.003958657,-0.0025996403,-0.004358858,-0.022931527,0.010938833,0.00013694384,0.019636538,0.017368732,-0.0009771578,-0.0025045925,0.0058996323,-0.012039386,-0.01341341,-0.0039353115,-0.002351182,-0.026666738,0.0002127111,0.0034350601,0.034710784,0.014393902,-0.02401207,-0.015701227,0.0035851356,-0.031749293,-0.0006390713,0.027693922,0.0119326655,-0.00021104359,0.014687384,0.014674043,-0.0051459204,-0.017155292,0.008110744,-0.01728869,-0.028467644,0.009271327,-0.018809456,-0.011445754,0.0269202,0.00074829283,0.006379874,0.007683863,-0.00669003,0.011025542,0.037992433,-0.0010722057,-5.747681e-05,-0.008210794,0.0033616899,-0.013053229,0.015928008,0.010765412,-0.027667241,-0.002641328,0.008844446,-0.021850985,-0.013860301,0.008884466,-0.0022628042,-0.0017475452,0.031349093,-0.0014724069,-0.021877665,-0.004345518,0.006413224,0.019049576,0.00083542,-0.009251317,0.037965752,-0.00506588,-0.014380562,-0.014393902,0.0015199308,0.00054318976,-0.0053960457,5.797185e-06,0.0115057845,0.017835632,-0.01698187,-0.005082555,-0.0017525477,0.0014048729,-0.005999683,-0.009298008,-0.003982002,0.0044755833,0.012372887,-0.029935049,-0.013280009,-0.0045956434,0.0070035206,-0.017048571,-0.0056561767,-0.0008037374,-0.02985501,-0.021717584,-0.013953681,-0.018756095,0.012853128,-0.014860804,0.0027697256,-0.03745883,0.01698187,0.20266189,-0.01360684,-0.008090734,0.0139270015,-0.011325694,0.0015299357,0.035057623,0.009658189,-0.013066568,-0.0019993384,0.009091237,0.012046056,-0.008604325,0.00086043257,-0.002879781,-0.016314868,-0.025386095,-0.027827322,-0.03097557,-0.017221991,0.0014173792,-0.014060401,-0.0062631485,0.0009796591,0.011525794,0.01013176,0.019129617,0.009024537,0.010465261,0.012673037,-0.0042021126,-0.028387604,0.0026896854,-0.017582173,-0.021850985,0.011659195,0.016168129,-0.00512591,0.009945,-0.0024295547,0.0093246875,0.007857284,0.028280884,-0.009177947,-0.011939336,0.03036193,-0.01007173,0.0034033775,0.005309336,0.014914164,-0.019503137,0.00689013,0.011105583,0.028467644,0.006680025,-0.013993701,0.015274345,0.017755592,-0.012993199,0.01035187,-0.0072303014,0.035938065,-0.023785291,0.012352876,-0.022758108,0.029214686,-0.008270824,0.0076104924,-0.0016883487,-0.011872635,0.0036251557,-0.023771951,-0.01331336,-0.0023278368,-0.008831106,-0.007850613,0.027613882,0.010445251,0.018596016,0.02413213,-0.01361351,-0.0017275352,-0.0006499101,0.0069768406,0.022531327,-0.018569335,0.009784919,-0.010498611,-0.015754586,-0.0040687122,0.020850481,-0.022344567,0.0025079274,0.0056561767,0.024665734,0.0042054476,0.02713364,0.0110322125,-0.014914164,-0.0086576855,-0.014860804,0.041674282,0.008290835,0.024612373,-0.012486277,0.0029898363,-0.039433155,0.03017517,-0.008764406,-0.006029698,-0.011599164,-0.022704747,0.0058062524,-0.0062731537,-0.0038219213,0.012186126,0.01010508,-0.018662715,0.029054606,-0.032896537,-0.012506287,-0.0044489033,0.0072303014,-0.012206136,-0.0022311215,-0.014033722,-0.015981367,0.017755592,-0.014460603,-0.025973057,0.028974567,-0.006103068,-0.014033722,0.0038319263,-0.011279004,0.015287685,0.015060904,-0.0068834606,-0.0066033197,-0.00495249,0.0011097245,-0.014900824,-0.0013831954,-0.00336836,-0.0048390995,-0.01667505,-0.0020393585,0.01716863,-0.015834628,-0.007063551,-0.002718033,-0.02345179,-0.018249175,-0.013913661,0.0272537,-0.029428126,-0.015567826,0.0010672031,-0.023024907,0.024438953,-0.0035851356,0.015327705,0.024612373,0.007850613,0.007450412,-0.0031315743,-0.17288691,0.02334507,0.015421086,-0.023571849,0.018435935,0.011865965,0.02070374,0.019823298,0.02001006,0.022984888,0.01013843,0.021717584,-0.034817502,0.005122575,0.013740241,-0.01688849,-0.028440963,0.0087043755,0.018862816,0.007737223,0.018822795,-0.007977343,0.015140945,0.014967524,-0.016621688,-0.0033867026,0.016528308,-0.0039186366,-0.019863319,-0.008757736,-0.010865462,-0.0019159631,-0.009531458,0.0016216486,0.0021527489,0.015394405,-0.024398932,0.021517484,-0.0024779122,0.015661206,0.0100117,0.006686695,-0.018169133,-0.0063231788,0.011038883,0.0076638525,0.0014223817,-0.005049205,0.030201849,-0.008711046,-0.003179932,-0.010765412,0.009778249,-0.009044547,0.0270536,0.009217967,-0.015661206,0.0022628042,0.005736217,0.019596517,-0.008157434,-0.017408751,0.014647364,-0.0049391496,-0.020890502,-0.009137927,-0.015928008,-0.0045055985,-0.02374527,0.0037852363,0.009538128,-0.017235331,0.007350362,-0.013900321,0.017355392,0.00092880026,-0.01678177,-0.00043021629,0.014847464,0.0073303515,-0.0048057493,0.010718722,-0.022611367,-0.019663218,0.009658189,0.04330177,-0.027854003,0.022357905,-0.012859798,-0.009211297,0.01008507,-0.04060708,-0.027093621,-0.013353379,0.016141448,0.011512454,-0.012399566,-0.009478098,-0.0037685612,-0.021730924,0.0012322861,-0.012479607,-0.0027580531,0.0031949393,0.03276314,0.0011347372,0.023985391,0.028360924,0.01711527,0.014007041,-0.033456817,0.01718197,0.0010972182,0.025586195,-0.007797253,0.01668839,0.014954184,-0.035030942,9.452669e-05,0.0005569467,0.048771184,-0.0027030255,-0.009237978,0.004182102,0.017141951,-0.0036118156,-0.07817263,-0.010578651,0.022304546,0.028254203,0.01007173,0.012512957,-0.02726704,0.031535853,-0.0034850852,0.029374767,0.004675684,-0.023024907,-0.015994707,-0.0072236313,0.024332233,0.002984834,0.009778249,-0.026319899,-0.001192266,0.018049074,0.00041645937,-0.004332178,-0.036418308,-0.012659698,0.008150764,0.003008179,-0.029428126,0.0344173,0.016101427,-0.0052926606,-0.010845453,-0.02017014,0.004372198,-0.032042775,0.018289194,0.0011580822,-0.019623198,-0.008144094,0.01656833,-0.01698187,-0.015274345,-0.0018442605,-0.009031206,-0.038152512,0.011992696,-0.015341045,-0.031402454,0.0072036213,0.022224506,-0.02322501,-0.012906488,-0.012913158,-0.00041041465,-0.0069768406,0.022011066,-0.0038652765,0.015941348,0.0012689712,-0.01728869,0.009965009,-0.015140945,0.009544798,0.00013402571,0.029935049,0.03022853,-0.013860301,-0.025172655,0.0032816497,-0.0069701704,-0.014687384,-0.01679511,0.007497102,-0.033083297,0.020050079,-0.0031399117,-0.009744898,-0.023024907,-0.0035284404,0.0033383449,-0.009117917,-0.012779757,-0.018062413,0.0102118,-0.014594004,0.0140203815,0.02011678,0.023024907,0.01009841,-0.0008462588,0.00084876,0.00057653984,0.024825813,0.017582173,-0.030948892,-0.0031115643,0.015034225,0.0062131234,-0.0059096375,-0.0041154022,0.0048557743,0.0039619915,-0.011625844,-0.08206792,0.0041154022,0.009131257,0.004288823,-0.0016516637,-0.015554486,-0.0021911014,-0.0018259179,-0.002024351,0.024265531,-0.029294727,-0.005466081,0.011492444,-0.0052326303,-0.0062831584,-0.032309577,0.0032583047,-0.00042458845,0.002156084,0.004739049,-6.951411e-05,0.012252826,0.032496337,0.009471428,-0.031108972,0.009304677,-0.015407746,0.021090603,-0.031562533,-0.010625342,0.019076256,-0.015727907,0.0031148992,0.013713561,0.0009488103,-0.015154284,0.0052859904,0.018435935,0.01720865,0.03711199,-0.016635029,-0.008497605,-0.007123581,0.005392711,-0.008804426,0.010545301,-0.034283902,0.01005172,0.031509172,0.034924224,0.023078268,0.01006506,0.0036651758,-0.015180965,-0.0062831584,-0.029881688,0.0136401905,0.02696022,-0.0034984252,0.003955322,0.027960723,0.019329717,0.016341548,-0.01337339,-0.0064665843,0.012146106,-0.026386598,0.0052759857,-0.0029281387,-0.012486277,-0.006276489,0.008110744,0.0044722483,0.014127102,0.006433234,0.012639687,-0.0046356637,-0.020690402,0.003061539,-0.002381197,-0.0038519364,0.00057320483,-0.02070374,0.025532836,0.00248625,0.010525291,-0.024092112,0.008744396,-0.018702736,-0.005402716,-0.01656833,0.016221488,0.009498108,0.014007041,0.0045789685,-0.0058962973,-0.021917684,-0.0086576855,0.0033083297,0.008884466,0.010818772,0.009711549,0.0029248036,-0.04066044,-0.0200901,0.01017178,-0.03999344,-0.03300326,-0.018262515,0.0053693657,-0.009558138,0.011279004,-0.009911649,0.006413224,0.00680342,-0.0048891245,0.010672032,0.003738546,-0.023198329,-0.0035651256,0.00031849343,0.02674678,0.007410392,0.0009379715,-0.0012247823,0.0019443107,-0.006423229,-0.0266534,-0.008304175,-0.012459597,0.018596016,0.012126096,-0.015794607,-0.0059196427,-0.0046323286,-0.01719531,0.010958842,0.0058295974,-0.012212806,0.051946115,-0.008697705,0.01336672,0.018929517,0.019756598,0.009064557,-0.015367726,-0.00077288854,-0.032576375,-0.023144968,-0.009104577,-0.013079909,-0.028974567,-0.021157302,-0.03046865,0.0041254074,-0.019876659,-0.005432731,0.006276489,-0.008210794,0.026586698,0.011379054,0.014607343,0.00683677,-0.0020393585,-0.0029564863,0.016434928,-0.0052159554,-0.0068267654,-0.012592997,0.0072369715,-0.0024095445,-0.038285915,-0.021477463,0.0036518357,-0.018862816,-0.0037819012,0.0024645722,0.005439401,0.045756336,0.010872132,0.0038152514,-0.025732936,-0.0036685108,-0.0016675049,0.0026830155,0.004318838,-0.004372198,-0.009217967]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41dffdca-a5da-11ee-8347-bfe8b58510ea', 'Culture', 'this article is about Movies', '[0.011863009,-0.004632128,0.014931256,-0.036316413,0.01214735,0.017721774,-0.0143757975,-0.010137119,-0.011472865,-0.03417393,0.0034319407,0.009700688,0.026860392,0.0024086405,0.0026599194,0.014137744,0.032586906,0.0008844356,0.022800254,-0.016452154,-0.023686342,0.0242947,-0.014164194,-0.012213477,0.009006364,0.021173554,0.0077235196,-0.032190148,0.000428166,-0.00980649,0.014719653,-0.013496322,0.0021656272,-0.021887714,-0.003666688,-0.026595887,0.0021094203,-0.023474738,0.001317561,-0.004324642,0.0026863697,-0.0015374301,-0.024638556,-0.032666255,-0.00081913616,0.013006989,0.03615771,-0.0061629456,0.011843171,0.00027504293,0.01671666,0.018660763,-0.050864138,-0.01770855,-0.008867499,-0.0031624772,-0.017999504,0.00968085,0.025101438,-0.025775924,-0.0068109804,-0.007068872,-0.031793393,0.013013601,-0.024955962,0.0054752347,-0.001998659,0.008860887,0.012054774,-0.000696803,0.022972181,0.010328885,0.008199627,0.015248661,0.019546853,-0.024916286,-0.014878356,-0.0058257026,0.014851905,0.012048162,0.01905752,-0.014970932,-0.00036906588,0.015962822,0.008960077,0.017748225,-0.0027194328,0.012226702,0.005227262,0.0015399097,0.006434062,-0.0014564256,-0.002931036,0.0028351534,0.0007034156,0.025894951,0.027045544,0.019784907,-0.013350844,-0.026900066,0.006989521,0.020644546,-0.011314163,-0.014891581,-0.008576545,0.0210413,-0.0018498756,0.0022433253,0.03864405,-0.011995261,-0.0133706825,-0.0031591707,0.021702562,-0.040125273,-0.00037753826,-0.014428698,0.009515535,-0.006586152,0.019295573,-0.010937245,0.024228575,0.041130386,0.0074457903,-0.0012506085,0.035337746,0.0077102943,-0.015182535,-0.018515287,-0.01415097,0.001767218,0.028883848,0.0024995636,0.0038815977,0.010910794,-0.006969683,0.02548497,-8.614465e-06,0.036871873,-0.017351469,-0.0178408,0.013926141,0.022773802,-0.039173055,-0.01938815,-0.018502062,-0.010302435,0.015208986,0.018647538,0.019546853,0.017510172,0.01870044,-0.006354711,0.022853155,0.018184656,0.022668,0.014746103,-0.0031591707,-0.022244794,5.4192344e-05,-0.006771305,0.009859391,-0.009462634,0.010474362,-0.0016473646,0.009588273,0.023448288,0.03213725,0.0013613695,0.0012704462,-0.0020019654,-0.023897946,0.019533627,-0.007399502,0.017523397,-0.012749097,0.027402624,0.0021871182,0.020340364,-0.019626204,-0.018144982,-0.010295822,0.032348853,0.055440057,0.048219096,-0.0049330015,0.021451283,0.0030285718,-0.016015723,0.010203246,0.0014646915,0.00017936683,0.016729884,0.006533251,-0.0030599819,-0.6805161,-0.007895447,-0.01608185,0.01214735,0.0045759208,0.00874186,0.013952591,0.018158207,-0.018793017,0.007386277,-0.010090832,0.012643296,0.014878356,-0.008318654,-0.012140738,6.0701623e-05,0.012887962,-0.03933176,-0.00074102473,-0.011962198,-0.016981164,0.025220465,-0.01715309,-0.004228759,-0.0013142547,0.0058455407,-0.0056107934,-0.006113351,-0.0088873375,0.00980649,-0.02713812,0.012180414,0.001734155,0.018991394,0.03031217,0.014468374,0.0049991272,0.03163469,0.015737994,0.041580044,-0.0022185282,0.004903245,-0.0064638187,0.005766189,-0.010857893,-0.0008860887,0.012173801,-0.025617221,0.014997383,0.009244418,0.0059678736,0.028090335,0.015539615,0.018025955,0.015037058,0.011704306,0.015685093,-0.0018812853,0.035787404,0.015367688,-0.023726018,0.025961077,-0.0087815365,-0.001148113,0.0041758586,0.021729011,-0.0023640054,-0.006047225,0.012623458,-0.021424832,-0.003931192,0.0049263886,-0.03607836,-0.012107675,-0.0066423593,0.011995261,0.027058769,-0.016941488,-0.011962198,0.011962198,0.001362196,-0.0051975055,-0.012180414,-0.0022201813,0.02060487,-0.0076375557,-0.0047346232,0.0063712425,0.009647787,0.007068872,0.0046122903,0.007022584,-0.0065068007,0.014666752,0.007399502,0.023897946,-0.01016357,-0.009753589,0.026860392,0.0028087029,-0.0138996905,-0.025471745,0.0073598265,-0.0023226766,0.0038683724,-0.0059546484,-0.01356906,0.018290458,0.030417971,-0.00476438,0.01710019,0.015235436,-0.006982908,-0.0076243305,-0.022932505,-0.03486164,0.025987528,0.01806563,0.0092047425,-0.008847662,-0.021755463,-0.016637309,-0.00654317,0.011175298,0.0006703526,0.04829845,-0.028196137,0.007485466,-0.019070745,-0.002701248,-0.009330382,-0.0015109796,0.0134764835,-0.0061464137,0.007611105,0.020194888,0.017774675,-0.012127513,0.024744358,-0.015156085,-0.02909545,-0.0051181545,-0.014521275,-0.003534436,-0.007849159,-0.015949598,-0.030179918,-0.015156085,-0.01715309,0.01608185,-0.0094163455,-0.0038220843,0.00265496,-0.0017242361,0.0017027451,-0.0015440427,-0.011142235,-0.0012968966,-0.005042109,-0.010672741,-0.0006116657,-0.0065167197,-0.014521275,-0.0025987527,-0.0006798582,0.01585702,0.0026433878,-0.019282348,-0.0071614482,-0.006883719,-0.0014010451,0.0008811293,0.019520402,-0.004542858,0.00757143,0.023130883,-0.006672116,0.010957082,0.0032104184,-0.012299441,-0.0065068007,-0.00792851,-0.018197881,0.00410312,0.023567315,0.0037526519,0.018290458,0.0057761082,-0.008807986,0.012570557,0.0014969279,0.0006021601,-0.021887714,-0.008278978,-0.021887714,0.0036203999,-0.0023871495,-0.006728323,0.025736248,0.006265441,0.039702065,0.0011142235,0.027984533,-0.01270281,0.01671666,-0.023699567,0.0069961334,-0.00557773,0.0035840305,-0.00085219915,0.033301067,-0.01839626,-0.016650533,0.003040144,0.0055116042,-0.009026202,-0.008761698,-0.0025326267,-0.02101485,0.0092047425,-0.011962198,-0.01806563,0.005346289,0.00952876,-0.029254153,0.022548974,0.004185777,0.010328885,0.008801374,-0.03282496,-0.013337619,0.010811605,-0.012663133,0.0176821,0.013304556,-0.003964255,0.018660763,-0.010302435,0.025326267,-0.007584655,-0.012934251,0.046896577,0.014137744,-0.019626204,0.022072867,-0.020551968,0.016280226,0.01275571,-0.012821836,-0.023382163,-0.016822461,0.018092081,-0.010904182,0.012398629,-0.012993764,0.0044932636,0.0024780727,-0.0056074867,0.019507177,0.014296447,-0.02004941,-0.015420589,0.01260362,0.0060207746,0.008364942,0.0042419843,0.0037129764,-0.020340364,-0.005984405,-0.021662885,-0.035126146,-0.018964944,0.014283221,-0.008847662,-0.0143757975,0.01649183,-0.0018399566,0.021120653,0.011856396,0.014124519,-0.006420837,-0.025868502,0.0080277,0.024387278,-0.023025082,-0.03097343,-0.024797259,-0.029121902,-0.04195035,0.006890332,-0.0120812245,0.026688464,0.0075383666,0.008497194,-0.0064175306,0.024096323,0.019322025,0.00370967,0.012947476,0.0067250165,0.00050669065,-0.009429571,-0.0045693084,-0.010871119,0.012140738,-0.0035906432,0.0011125704,-0.011578667,0.009594887,-0.021080976,-0.0032980354,0.0047610737,-0.022548974,0.02967736,0.006837431,-0.01100337,-0.022482848,0.028883848,0.02980961,-0.01657118,0.00820624,-0.003491454,-0.033301067,0.00034902143,0.12823159,-0.01034211,0.0064076115,0.025088213,-0.015552841,-0.032216597,-0.018568188,-0.025048537,0.0011927482,-0.024598882,-0.0030434502,-0.0099982545,0.0073201507,0.0043643177,0.036580916,0.016835686,-0.01872689,0.016809236,-0.006070369,-0.008655896,0.02024779,-0.024836935,0.0116051175,0.013178917,0.012034937,-0.045256652,0.03938466,-1.1488105e-05,0.0016556303,-0.01161173,-0.015976047,-0.014693202,-0.0135822855,-0.016147975,0.007254025,0.02073712,0.015724769,0.019824581,0.021662885,-0.0022912668,0.01580412,0.0037262014,-0.0036038684,-0.0143228965,0.0058885226,-0.0354171,-0.009945354,0.043801878,0.0138996905,-0.030735375,0.015539615,-0.0043874616,-0.034650035,-0.008404618,0.042267755,0.005346289,-0.009211355,0.030841177,0.0015233783,-0.0117109185,0.01191591,-0.036501564,-0.0021771993,-0.0032236436,0.0072738626,-0.019732006,0.002952527,-0.013555835,0.0010191674,0.002765721,-0.01423032,-0.022178669,-0.011162073,-0.0033707742,0.007650781,-0.0136351865,0.030021215,-0.01994361,-0.008589771,0.015989272,-0.032375302,-0.007842546,-0.0080806,-0.05549296,-0.0012621805,-0.0060869004,-0.019877482,0.0137409875,-0.028963199,0.0042552096,0.010004868,0.016240552,-0.018462386,0.006219153,0.023633441,0.016333127,0.013661637,-0.00035604733,0.00998503,-0.019401375,0.0022185282,-0.01585702,0.0064803506,-0.0021309112,-0.009165067,-0.017721774,0.0070887096,0.0047346232,-0.0010538835,0.0005690971,-0.0055281357,-0.008212852,-0.006675422,0.004635434,0.008530257,0.016862135,-0.017946603,0.02904255,-0.0133706825,-0.008193014,0.016068624,-0.034755837,-0.0007868997,0.024559205,-0.005683532,0.007439178,-0.012127513,-0.024307927,0.004608984,0.0044866507,0.0017854027,0.026926517,-0.029915413,-0.011525766,-0.020313915,-0.023382163,-0.010884344,0.0016333128,-0.025233692,-0.01288135,-0.015711544,-0.0021276048,0.008748473,-0.014098069,0.020261014,-0.03367137,0.0053529018,-0.019017845,-0.017893702,0.007022584,-0.030232819,-0.005981099,-0.01115546,0.0070887096,-0.011472865,-0.029359955,-0.005696757,-0.020089086,0.01585702,0.008649284,0.04335222,-0.009237805,0.018859142,0.006520026,-0.01423032,0.009422959,0.0070093586,-0.004698254,-0.03107923,0.009951967,0.022469623,-0.0003641064,0.014521275,0.005167749,0.003577418,0.025961077,0.01720599,0.031158583,-0.006400999,-0.008060763,-0.010156957,0.010930632,-0.030047666,-0.009965192,-0.0047114794,-0.013979042,0.024678232,0.0063844677,-0.0065134135,-0.0111819105,0.031475987,-0.009575048,-0.0030236125,-0.018449161,-0.0059248917,-0.023606991,-0.0010861199,-0.026529761,0.012960701,0.019176546,0.002031722,0.0242947,-0.019017845,-0.0021358705,0.009158455,0.027958084,0.0036402377,-0.03166114,-0.0021937308,-0.016505055,-0.0053330637,-0.02164966,-0.014084843,-0.033168815,0.015433814,0.017496945,-0.01356906,0.028354838,0.0038650662,-0.0353642,0.041871,0.00037547183,0.030841177,0.0012142392,0.028804496,0.0069564576,-0.006625828,-0.016253777,0.032692708,0.0060141617,-0.021742238,0.02451953,0.012597008,0.021028075,0.006136495,-0.00612327,0.012464755,-0.035787404,-0.030867629,0.01260362,0.02426825,0.013311169,-0.0323224,-0.012120901,-0.023686342,0.020274239,0.019044295,0.013992267,-0.02319701,-0.031185033,0.000922458,0.0045395517,0.0074524027,-0.003908048,-0.0042419843,-0.015552841,0.008278978,-0.007868997,-0.0056008743,-0.013178917,-5.5742174e-05,0.024969187,-0.028196137,-0.0022251408,0.023448288,0.0072738626,-0.0015473489,-0.009561823,-0.010335498,0.027508426,0.00036203998,-0.009092328,0.012458143,0.010057768,0.008325267,-0.006311729,-0.017880477,-0.02782583,-0.01522221,-0.011545604,0.013026827,0.0007695416,0.00072490657,0.010884344,-0.010659515,0.0061464137,0.0052933884,-0.006215846,0.0028301938,-0.009581661,-0.0002729765,-0.02137193,-0.011658018,0.009277482,-0.015566066,-0.016002499,0.03107923,0.028698694,-0.042426456,0.01641248,-0.016544731,-0.0063381796,-0.01842271,0.012636683,0.0037691833,-0.017906927,0.03409458,-0.014627077,-0.011479477,-0.0077433577,-0.0034319407,0.008602995,-0.019083971,-0.007035809,-0.018634314,0.017893702,-0.01710019,-0.010110669,-0.018740116,0.0177879,-0.0039378046,-0.0012894574,0.016253777,-0.0076772314,0.008391392,-0.0140054915,0.015182535,-0.017272118,-0.0073267636,0.0021143795,0.0028252343,0.02980961,-0.018303683,-0.009918904,-0.016306678,-0.005167749,-0.022469623,0.024334377,-0.0021011545,0.01997006,0.018462386,0.0010654556,0.0059877117,0.014851905,-0.0025160953,-0.0070424215,-0.008417843,-0.012134125,-0.026926517,-0.006477044,0.0057033696,0.030841177,0.01270281,-0.0028797884,-0.022535749,-0.010613227,-0.033777174,-0.007207737,0.008424455,0.021490958,0.01486513,-0.0065795393,0.008807986,-0.011049659,-0.0011373676,0.014084843,-0.021517409,-0.010553714,0.0068242056,-0.023977296,0.004235372,0.026675237,0.003260013,-0.0020879293,0.00040336876,0.0078822225,0.009284094,0.03412103,-0.0110761095,-0.007082097,-0.0061827833,0.0011084374,-0.009608111,0.0044072997,0.0143757975,-0.017325018,0.010507425,0.0062059276,0.0019226142,-0.021583535,-0.004777605,0.010355336,0.0018482223,0.015089959,-0.008946851,-0.030708926,-0.0073135383,0.001866407,0.007842546,0.0032236436,-0.0040766695,0.028513541,-0.0056901444,-0.017298568,-0.008550095,-0.0052900817,-0.0024102936,-0.001196881,-0.0005314879,0.018356584,0.018303683,-0.0143757975,0.00019796478,-0.018898819,0.009502309,-0.020829698,0.0022532444,-0.005233875,0.009323769,0.01776145,-0.03224305,-0.0011266222,-0.013159079,-6.829578e-05,-0.024731133,-0.0065034945,-0.0025723022,-0.026794266,0.00078855286,-0.013403745,-0.011221587,0.0036038684,-0.0073135383,-0.006748161,-0.043987032,0.019639429,0.19446342,-0.011320775,0.0012142392,0.007015971,-0.007564817,0.022720901,0.026225582,0.015380913,-0.0075383666,0.01036856,0.0078822225,0.01224654,0.0062753595,0.006969683,-0.0047511547,-0.038591146,-0.016941488,-0.02611978,-0.0290161,-0.026159456,0.003914661,-0.021451283,-0.023950847,-0.011347226,0.013509546,-0.004952839,0.018356584,0.010652903,0.013099565,0.014984157,-0.009918904,-0.03679252,0.0070027458,-0.03314236,-0.031290833,0.01100337,-0.0028368065,-0.009740364,0.007287088,-0.010897568,0.0023226766,0.03044442,0.0055149104,-0.008860887,0.0011183564,0.020697447,-0.013231818,0.006797755,0.0010406583,0.016253777,-0.011386901,0.024651783,0.0115522165,0.03351267,-0.0054058023,-0.0044502816,0.0074920785,0.011208361,-0.014587401,0.0067382418,0.013304556,0.03684542,-0.037586033,-0.0009745323,-0.008431068,0.032613356,-0.016610857,0.0021309112,0.00757143,-0.03610481,0.005134686,-0.024426954,-0.017377919,-0.0025342798,0.0077235196,-0.008126888,0.008497194,0.010355336,0.025643673,0.03036507,-0.017496945,-0.025114665,-0.00051123684,-0.001975515,0.017668873,-0.027296823,0.0054620095,-0.010613227,-0.0027491895,-0.0193088,0.0030335314,-0.019348474,-0.0064505935,0.013952591,0.019176546,0.004093201,0.01684891,0.0087286355,-0.027429074,-0.014666752,-0.02192739,0.02322346,0.028592894,0.012206865,-0.021358706,0.004959452,-0.038564697,0.024665007,0.0021755463,-0.012967314,0.00036865257,-0.012656521,0.005124767,-0.010871119,-0.006718404,0.024056647,0.010752091,-0.0241889,0.0386705,-0.04776944,-0.015129634,0.0034054902,-0.0030533692,-0.010838055,0.0068175932,-0.009892453,-0.005544667,0.020909049,0.0019622897,-0.020816473,0.032084346,-0.006539864,-0.00835833,0.0036699944,-0.0050751725,0.016147975,0.021980291,-0.0021028076,0.0029211172,-0.0021590148,0.015275111,-0.0074920785,-0.008874113,-0.004896632,-0.0011902684,-0.021755463,0.011095947,0.006434062,-0.027931632,-0.0042188405,-0.0025094827,-0.036898322,-0.014455149,-0.014957706,0.03158179,-0.025365943,-0.026278483,-0.003491454,-0.020181663,0.03467649,0.014693202,0.001955677,0.033618473,0.015618967,0.0052206498,-0.0023226766,-0.17044644,0.018964944,0.001701092,-0.024665007,0.016346354,0.004423831,0.011849783,0.018158207,0.021067752,0.023263136,0.0007468108,0.010943857,-0.040812984,0.0036203999,0.011644793,-0.012544107,-0.026688464,0.019705554,0.0039411113,0.005280163,0.032613356,-0.0034650036,0.011016596,0.0032252967,0.0028335,-7.2480325e-05,0.014799004,0.01356906,-0.013463259,-0.005673613,-0.023064757,0.005951342,-0.0050123525,0.01641248,0.0073598265,0.02843419,-0.017721774,0.0016746416,0.0016870402,0.0015134594,0.024281476,0.015949598,0.01486513,-0.0092576435,0.027455525,0.018859142,0.01657118,-0.00856332,0.035972558,-0.008179789,-0.008173177,-0.032692708,0.006715098,-0.018409485,0.016200876,0.0242947,-0.02167611,0.01260362,-0.009694075,0.0018184657,-0.009859391,-0.008649284,0.010851281,-0.008087213,-0.0193088,-0.014719653,-0.010996758,0.00030397307,-0.01994361,0.0022796947,-0.003874985,-0.0010356988,0.0043411735,-0.020459391,0.0071945116,-0.0075383666,-0.025141114,0.0013373989,0.017906927,0.01577767,-0.004377543,0.0070027458,-0.02655621,-0.00853687,0.014031942,0.028989648,-0.026265256,0.014984157,-0.019903934,-0.0045726146,0.016690208,-0.032190148,-0.028539993,-0.017192766,0.015923146,0.010064381,-0.011803496,-0.010659515,0.01522221,-0.034623586,-0.008834437,-0.006903557,-0.00024817925,-0.00025293205,0.018819466,0.017536622,0.015724769,0.025749475,0.014785779,0.014494824,-0.032031447,0.0030765133,0.010229696,0.0027756398,-0.00669526,0.0055182166,0.012630071,-0.025974302,0.011644793,0.015063508,0.03621061,0.0055380547,-0.019480728,-0.015407364,0.00500574,-0.008966689,-0.071257405,0.0029045856,0.013172304,0.013450033,-0.011360451,0.014984157,-0.0193088,0.027349724,-0.012074612,0.021557083,0.0092576435,-0.03031217,-0.015698317,-0.008120276,0.021385156,0.008874113,0.00015353637,-0.013496322,-0.00838478,0.010804992,-0.014759328,-0.010566939,-0.019983284,-0.014217095,0.00057736284,0.019282348,-0.026159456,0.016452154,0.011029821,-0.0026599194,-0.021451283,-0.02032714,0.0069961334,-0.03094698,0.005085091,0.00040233554,-0.013754213,-0.022601875,0.025590772,-0.02619913,-0.018237557,0.0069167824,-0.022271246,-0.015579292,0.0070490343,-0.007935123,-0.022800254,0.003567499,0.0048569567,-0.031978544,-0.017496945,-0.010785155,-0.019216223,-0.0026103249,0.028249038,-0.010209858,0.0160554,-0.019784907,-0.004807362,0.013350844,-0.015354463,-0.012636683,-0.012471369,0.037903436,0.018925268,-0.031502437,-0.0021557084,-0.006930007,-0.0145345,-0.010864506,-0.028963199,0.0037063637,-0.030550223,0.014931256,-0.014071618,-0.013383907,-0.038353093,0.001442374,0.0007232534,-0.0090460405,-0.002788865,-0.018197881,0.024717908,-0.026357833,0.00856332,0.01707374,0.03441198,0.012801998,-0.018806241,-0.013443421,-0.0028930136,0.014560951,-0.005938117,-0.015394138,0.00093568326,0.0137409875,0.00038249773,0.007339989,0.0047015604,0.005303307,-0.0062720533,-0.004982596,-0.083530396,0.004632128,-0.0068440437,0.006169558,0.00012006006,-0.009290706,0.005898441,-0.005266938,0.0021656272,0.020697447,-0.02647686,-0.0035608865,0.0008398005,0.005766189,-0.010302435,-0.02843419,-0.002997162,-0.011347226,-0.010064381,0.0132648805,-0.015711544,0.0045825336,0.019202998,0.013033439,-0.029571557,0.009317157,-0.0025970996,0.012504431,-0.041818097,-0.0046056774,0.019269124,-0.016835686,0.016425705,0.017166317,0.0044271373,-0.02477081,0.007835934,0.026013978,0.023752468,0.03748023,-0.005319839,-0.030153466,0.01227299,-0.0036071746,-0.009965192,0.0044271373,-0.021464508,0.0040799757,0.03740088,0.019824581,0.035893206,0.016028948,-0.00090509997,0.004622209,-0.009667625,-0.01911042,0.026609112,0.002096195,-0.013278105,0.00874186,0.042214856,0.013860014,0.016928263,-0.016584408,-0.008688959,0.010699191,-0.0063679363,0.008457518,-0.008001249,-0.027693579,-0.0062819724,-0.0028285407,0.009687463,0.019771682,0.016729884,0.01061984,-0.009383283,-0.017973054,0.004718092,-0.00042568627,0.009839552,0.01583057,-0.021424832,0.009932129,0.008497194,0.02645041,-0.016729884,-0.004136183,-0.008325267,-0.004741236,-0.016743109,0.024969187,0.029968314,0.018290458,0.005114848,-0.0019936997,-0.022668,-0.013608736,-0.0026665318,0.01052065,0.0014250159,0.006771305,-0.00823269,-0.034650035,-0.024453403,0.020922273,-0.027534876,-0.030259268,-0.0131061785,0.016703434,-0.004820587,0.00874186,-0.0030285718,-0.0007538367,-0.010302435,-0.0075582047,0.01227299,0.0033889588,-0.020075861,0.018819466,-0.007994636,0.028116785,0.027984533,-0.009548598,0.0178408,0.0012043202,0.0066390526,-0.018171431,-0.0162141,-0.0046122903,0.017946603,0.020115536,-0.016306678,0.005237181,-0.0012249846,-0.011691081,0.008503807,0.021900939,-0.01577767,0.049303565,-0.014666752,0.01522221,0.0130003765,-0.009442796,0.018224332,-0.0033608552,0.005303307,-0.028010983,-0.009694075,-0.0004013023,-0.0017110109,-0.0075912676,-0.023673117,-0.023527639,0.0020218033,-0.024691457,-0.004589146,0.009892453,-0.005686838,0.016544731,0.0062059276,0.01842271,-0.0045792274,-0.010732254,0.0012101063,0.030206367,0.010070994,-0.008278978,-0.019930383,-0.00083938724,-0.024995638,-0.02680749,-0.015447039,0.022853155,-0.019533627,-0.017920153,0.000319678,-0.0026235501,0.033380415,0.003217031,0.008199627,-0.02426825,-0.003534436,0.0074986913,0.0032881165,0.009932129,-0.008073987,-0.019851033]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41f18cca-a5da-11ee-8347-fb0a3d5c09e0', 'Culture', 'this article is about Music', '[0.014573387,0.011190745,0.020100325,-0.023176638,0.009176802,0.024336774,-0.021351706,0.0005413694,-0.015146937,-0.02101279,-0.010486842,-0.0005894368,-0.005181504,0.0059538414,-0.010643265,0.018249322,0.033291977,0.00064239244,0.013048265,0.0022371714,-0.02659187,0.027608616,-0.010649783,-0.0070976824,-0.0048197764,0.028651435,0.007462669,-0.029772464,0.0025402405,0.0053085973,0.026344199,0.006139593,-0.012142316,-0.013387181,-0.012142316,-0.033656962,-0.0022339125,-0.030424226,0.0063579334,0.00049778284,0.0006990142,0.003063279,-0.011959824,-0.021742763,0.0031626727,0.020282818,0.034830134,-0.0042201555,0.022277208,0.004063733,0.03350054,0.015668346,-0.04314661,-0.006687073,0.0042560026,-0.010734512,-0.01360878,0.016007261,0.010089268,-0.015981192,-0.021403847,-0.0003120308,-0.02828645,0.0056638075,-0.020647803,0.00044686397,-0.0077103386,0.015681382,0.007879796,0.008283889,0.016685095,0.0150817605,-0.0010599272,0.0071628587,0.016385283,-0.01360878,-0.017115258,-0.009600447,0.017232575,0.00694126,0.017284716,-0.02205561,-0.0017532384,0.015433712,0.00047823,0.0045916596,-0.0038975338,0.009424471,0.031545255,-0.018158074,0.001590298,0.014051978,0.0046829064,-0.0010077863,-0.00012139058,0.033761244,0.032118805,0.010858347,-0.010454254,-0.023020215,0.00028453462,0.017076151,-0.008042737,-0.008890027,-0.028599294,0.012976571,-0.0061037466,0.009841599,0.021599377,-0.0120054465,-0.0039887805,0.0043700607,0.010402113,-0.037098262,0.009294119,0.0103043495,0.0030909788,-0.0067587667,0.031910244,-0.016724199,0.020426204,0.039444607,-0.0025549051,-0.015225149,0.024388915,0.016541706,-0.032535933,-0.022863792,-0.028807858,0.0077494443,0.027165418,0.00077478145,-0.0013271493,0.023971789,0.011418861,0.009398401,0.0060157585,0.031519186,-0.011210297,-0.011399308,-0.0007267141,0.018927153,-0.039992087,-0.02123439,-0.009378848,0.015316395,0.0070194714,0.022029538,0.008107913,0.022942005,0.017375961,-0.023411272,0.03172775,0.012200975,0.010617195,0.01532943,-0.010128373,-0.0046307654,0.003568394,0.0012676761,-0.0017483502,-0.004620989,0.018731626,0.0010004538,0.011262438,0.025914038,0.023685012,0.007039024,-0.004093062,0.0031349729,-0.021442953,0.00058414123,-0.011953305,0.009763387,-0.008714051,0.033604823,-0.0072932113,0.026552763,-0.02156027,-0.007723374,-0.025262276,0.031284552,0.04588401,0.044684768,-0.011783848,0.028859999,-0.0058495593,0.0027373983,5.198816e-05,0.0084989695,0.008440311,0.013817344,0.0032539193,0.0077494443,-0.67741483,-0.0056605483,-0.019670162,0.021169214,0.0044580484,0.0066479673,0.019657126,0.019200893,-0.01418233,0.022524877,-0.006071158,0.01951374,0.011809918,0.0005731428,-0.002123113,-0.0053248913,0.0048882114,-0.04314661,0.005331409,-0.008785745,-0.0074757044,0.011373238,-0.00409958,0.0057778656,-0.00833603,-0.0012473086,0.005699654,0.0032311075,0.0017076151,-0.0060353116,-0.026135636,0.017037045,-0.008322994,0.009268048,0.03131062,0.0096851755,0.012103211,0.029198915,0.011536178,0.031988453,-0.001978096,-0.007182412,-0.0018819614,0.0020204606,-0.0017108739,-0.01445607,0.026344199,-0.014338753,0.019344281,-0.009059485,0.0071498235,0.017037045,0.024258563,0.021077966,0.00909859,-0.0008872103,0.015264254,0.00015550622,0.016437424,0.015316395,-0.02210775,0.018640378,-0.010317384,-0.00036132027,-0.0058137127,0.0010289685,-0.003314207,0.0034054539,0.02213382,-0.017258644,-0.018457886,0.0043798373,-0.03120634,-0.017780054,0.006211287,0.008557629,0.011660013,-0.03055458,-0.015472818,0.015446748,-0.014638563,-0.011581802,-0.018731626,-0.024845148,0.041139185,-0.015264254,-0.0060678995,0.0060450877,0.007058577,-0.0078081028,0.0027015514,0.021455988,0.0016082214,0.007130271,0.007045542,0.024910323,-0.01560317,-0.0038779809,0.014312683,0.021899186,-0.008375135,-0.025040677,0.0058691124,-0.0051847626,0.004093062,-0.0122465985,-0.011536178,0.017662736,0.04145203,-0.022981111,0.0048979875,0.018627344,0.0018982553,-0.0045232247,-0.02295504,-0.03355268,0.02836466,0.009587412,0.0042951084,-0.023293955,-0.0063351216,-0.005585596,0.003842134,-0.0011389533,-0.012611585,0.05714645,-0.031962384,0.00042894052,-0.020817261,-0.009971951,-0.0017320561,0.0034315242,0.032170948,-0.0053151147,0.038818914,0.013400217,0.02120832,-0.011940271,0.028625365,-0.026774362,-0.032118805,-0.019409457,-0.009659105,-0.0031757078,-0.002062825,-0.015251219,-0.013230759,-0.022277208,-0.015811734,0.008727087,-0.0041875676,-0.007325799,-0.00065461296,-0.0013817344,0.0073844576,-0.00038046576,-0.015863875,-0.006856531,-0.026930785,-0.008583698,-0.0041060974,0.0036303115,-0.028625365,-0.022433631,-0.015120867,0.016189756,-0.010903969,-0.024779972,0.0012693055,-0.0070716124,-0.0063188276,0.021104038,0.026357235,-0.020817261,0.00737794,0.008883509,-0.0069477777,-0.0012937465,-0.0014721663,-0.020778157,-0.012142316,-0.008420759,-0.033187695,0.0023756707,0.018275393,-0.0030323204,0.01292443,0.011151639,-0.0034804065,0.01642439,-0.012494268,-0.0009320189,-0.020321924,-0.00017831787,-0.026435446,0.0007295655,-0.016645988,-0.008596734,0.011086463,0.020673875,0.019161789,0.004722012,0.03631615,-0.019956937,0.020439241,-0.024766937,-0.0049012466,-0.0067457315,0.016515637,0.008329512,0.029616043,-0.030346015,-0.018431814,-0.010369525,0.0051195864,-0.0035814294,-0.0061591463,-0.01956588,-0.020921543,0.004894729,-0.0042103794,-0.014038943,0.011145121,0.015577099,-0.017910406,0.02631813,0.009339742,0.029616043,-7.3730516e-05,-0.03339626,-0.012031517,0.009320189,0.0009849746,0.009939362,0.0063253455,-0.013080853,0.025144959,-0.021742763,0.01388252,-0.010447737,-0.0060907113,0.04825642,0.0018118969,-0.0071498235,0.022902898,-0.028495012,0.009502683,0.021742763,-0.009945881,-0.016606882,-0.029120704,-0.00063791155,-0.022550948,-0.0026885162,0.0031089024,-0.011223333,-0.005614925,-0.012552926,-0.003328872,0.010415149,-0.008655393,-0.0033956773,0.012305257,-0.0010688888,0.0076907855,0.014221435,-0.0053085973,-0.010258726,-0.015251219,0.0055660433,-0.04478905,-0.009567859,0.023685012,-0.01585084,0.0025369816,0.011392791,0.004823035,0.0068434956,0.010284796,0.00022282096,-0.012122763,-0.022342384,0.005038116,0.031414904,-0.02320271,-0.020869402,-0.012227045,-0.011966341,-0.046692193,-0.0049273167,0.006465474,0.024988536,0.016111543,0.0028758976,-0.0011511737,0.025340486,0.031675607,0.0049827164,0.006263428,0.011008251,0.0068109077,-0.010076232,-0.0011242885,-0.012064105,0.020712981,-0.0065110973,-0.012891842,-0.024284633,0.002853086,-0.01300916,-0.0038128048,0.0069151893,-0.011529661,0.012696314,0.0036074999,0.00021956215,-0.016997939,0.0350387,0.029016422,-0.004265779,0.010173997,-0.008309959,-0.03738504,0.0027618394,0.118672736,-0.021429919,0.0066381907,0.029850677,-0.016241897,-0.039601028,-0.017740948,-0.022003468,-0.0027211043,-0.016711164,-0.007716856,-0.000863584,-0.008837886,-0.0027699864,0.03793252,0.0054128794,-0.017441137,0.0069347424,-0.010558536,-0.003317466,0.020830298,-0.018796802,-0.005484573,0.027061136,0.008733604,-0.043459456,0.022798616,-0.0018575202,0.006589309,-0.017349891,-0.00822523,-0.0017613855,-0.005774607,-0.015290325,0.007671233,0.023033252,0.027478265,0.011308062,0.0029280386,-0.004269038,0.018210215,0.0011495444,0.0077755144,-0.017753983,0.011796883,-0.028703576,-0.008805297,0.045545094,-0.004412425,-0.028886069,0.0033956773,-0.009815528,-0.029329266,-0.018822871,0.03284878,0.008244783,-0.0005210019,0.02773897,0.0042429673,-0.01779309,0.018848943,-0.031075988,0.0025418699,-0.0022273948,0.008681463,-0.011959824,0.0008159239,-0.0029345562,-0.006732696,0.012403022,-0.0044580484,-0.016880622,-0.014260542,0.010486842,0.017402032,-0.011627425,0.03636829,-0.011992412,-0.006276463,0.02375019,-0.014742845,-0.008264336,-0.008355582,-0.038897127,-0.008290406,-0.012911395,-0.0037345933,0.021169214,-0.027686829,0.016111543,0.0031463786,0.015694417,0.0067001083,0.004353767,0.014025907,0.014612493,0.011523143,-0.0130613,0.016659023,-0.012077141,5.6723617e-05,-0.023111463,-0.001194353,0.008479417,0.008753157,0.0033467952,0.020308888,0.0026852572,-0.0040181098,0.0019764667,-0.008903062,0.0023870764,-0.009137697,0.0064100744,0.01475588,-0.0031903726,-0.017714877,0.020334959,-0.013791273,0.0021866597,0.016372249,-0.030476367,0.0009515718,0.023645908,-0.011835989,0.012207493,-0.023020215,-0.032197017,-0.011881612,0.0019487669,0.013211206,0.033161625,-0.022081679,-0.005992947,-0.0035455825,-0.01502962,-0.013517533,0.009261531,-0.023385203,-0.016528672,-0.022198996,0.008375135,0.001459131,-0.026187778,0.0058169714,-0.033604823,0.000926316,-0.006344898,-0.034856204,0.018040758,-0.028703576,0.0033761244,-0.012611585,0.011079946,-0.0143778585,-0.01959195,-0.008603252,-0.012011964,0.0036628996,0.0071889292,0.04030493,0.0013768461,0.0013361111,0.01259855,-0.002607046,-0.013452358,0.006019017,-0.0062894984,-0.028886069,0.0046633533,0.012976571,0.0018314498,0.00069453334,0.0022909415,-0.005706172,0.03913176,0.0069151893,0.016815446,-0.012559444,-0.0024815819,-0.0036009823,-0.003979004,-0.0226813,0.0014941632,-0.0089812735,-0.010617195,0.028130027,0.0011601355,0.0041419445,-0.0056409957,0.024806043,-0.017662736,0.007443116,-0.008766192,-0.009848116,-0.030919565,0.007130271,-0.029981028,-0.0036466056,0.008003631,-0.007619092,0.034751922,-0.021064932,0.009131178,0.011177709,0.019226965,-0.002199695,-0.03576867,-0.012011964,-0.014443034,-0.009998022,-0.012904878,-0.018327532,-0.034986556,0.013895555,0.027113277,-0.020478345,0.029120704,0.005569302,-0.03446515,0.025757615,-0.0027194747,0.033839457,-0.010219621,0.027947532,0.0032262194,0.014834092,-0.022029538,0.025483875,0.011529661,-0.03449122,0.030319944,0.020087289,0.008466382,0.02472783,0.0096851755,0.0238284,-0.028859999,-0.017167397,0.012917913,0.008570664,0.0070194714,-0.028625365,-0.015681382,-0.020673875,0.018575203,0.015694417,0.017988617,-0.010011056,-0.020439241,0.009717763,0.019670162,-0.009717763,0.00262334,-0.00937233,0.0103043495,-0.0034804065,0.0041223913,-0.02358073,-0.0073062466,-0.008753157,0.026500622,-0.026148671,0.0068109077,0.023215745,-0.010506395,0.0013434434,0.0031952607,0.0012090176,0.028729647,-0.004060474,-0.015055691,0.026331164,0.0077624796,0.0009751981,0.0018852201,-0.010695406,-0.02006122,-0.012194457,-0.007723374,-0.007364905,-0.010825759,-0.009952398,0.021768834,0.0014281723,-0.016606882,7.726938e-06,0.0017727913,0.00010468919,-0.0039007924,-0.00032751015,-0.029407479,-0.006348157,0.00653065,-0.024349809,-0.017219538,0.017688807,0.020374063,-0.038792845,0.035534035,-0.017858265,-0.010310867,-0.002522317,0.02899035,0.010714959,-0.026565798,0.022251137,-0.0072932113,-0.017193468,-0.009320189,-0.0068630483,0.022225067,-0.025653332,0.0025940107,-0.012122763,0.0064719915,-0.017310785,0.0060907113,-0.035820812,0.019070541,-0.0054259147,-0.016632954,0.019904796,-0.015420677,0.0054747965,-0.0034869239,0.015524959,-0.021612411,-0.01532943,-0.0030567613,-0.005259715,0.04082634,-0.01675027,-0.017740948,0.0034054539,0.0034608536,-0.03232737,0.008831368,0.0045004133,0.010310867,0.012859254,0.0064948034,0.0030877201,0.0036759349,-0.005448726,-0.005960359,-0.015264254,-0.0065241326,-0.028755717,-0.0030697966,-0.0021573305,0.03396981,0.005347703,-0.009659105,-0.03511691,-0.0001087627,-0.031962384,-0.0151860425,0.00852504,0.020830298,-0.0036596407,-0.006191734,0.0015340836,-0.0056931367,-0.00036335704,0.019735338,-0.021873116,-0.024597479,0.006227581,-0.016437424,-0.0032197018,0.011855542,0.0017255385,-0.0024180352,0.004285332,0.007006436,0.008714051,0.04137382,-0.0109235225,0.0029312973,0.0021931774,-0.0027797627,-0.008485935,0.01724561,0.014065013,-0.019657126,0.010376043,-0.006993401,-0.010499878,-0.028859999,0.0077755144,0.011907683,0.0015014955,0.029094633,-0.0015528217,-0.027139349,-0.0010118597,0.0049794577,0.008160054,-0.00964607,-0.007501775,0.02358073,-0.008616287,-0.023867507,-0.011145121,-0.0016554742,-0.007495257,-0.008160054,-0.008948686,0.0013132994,0.0095092,0.000763783,0.0011650237,-0.0066544847,0.012689796,-0.017506314,-0.00085706636,-0.00623084,-0.0058495593,0.021716693,-0.03065886,-0.017962547,-0.013582709,-0.0017141327,-0.022629159,-0.0037508875,0.0010802947,-0.027504334,-0.0106563,-0.00489147,-0.0030909788,0.008420759,-0.001196797,-0.0012546409,-0.03629008,0.00833603,0.19427706,-0.017128292,-0.011809918,-0.0051912805,-0.0011120681,0.0069151893,0.026826503,0.019996043,0.003317466,0.012442127,0.002385447,0.023359131,-0.0018249322,0.005194539,-0.0059473235,-0.029668184,-0.025783684,-0.04246878,-0.02836466,-0.020556558,0.0031414903,-0.022159891,-0.01814504,-0.007918902,0.01964409,-0.00026335238,0.0032359958,0.015577099,0.01164046,0.021025825,-0.012468197,-0.02300718,0.011998929,-0.01877073,-0.022889864,0.009300636,-0.0005719207,-0.013869485,0.020882439,-0.010460772,0.006019017,0.014286612,0.0025646815,-0.0036335704,0.0018917377,0.03339626,-0.014091084,-0.0021035601,0.003451077,0.014677669,-0.003959451,0.012754972,0.010421666,0.032092735,0.007716856,-0.010838794,0.01924,0.020361029,-0.023685012,0.019083576,0.008329512,0.021899186,-0.026422411,-0.014390894,-0.008805297,0.02218596,-0.008785745,-0.009900257,0.0053607384,-0.036055446,0.011849024,-0.018640378,-0.0106302295,-0.0011145121,0.006071158,-0.021899186,0.03282271,0.014951409,0.03748932,0.03352661,-0.0043407315,-0.015811734,-0.011086463,0.004321179,0.022563983,-0.024832113,0.0178713,-0.017480243,-0.0027064397,-0.009294119,0.010141409,-0.011164675,0.0012448644,0.009066002,0.014260542,0.01702401,0.017310785,-0.005979912,-0.013080853,-0.0013809197,-0.012142316,0.026331164,0.020673875,0.032614145,-0.014599457,-0.0024603996,-0.031284552,0.014638563,-0.010363008,-0.027478265,0.004366802,-0.006214546,-0.0010542242,-0.016176721,0.010864864,0.022811653,0.014651598,-0.020947615,0.026826503,-0.038349647,-0.025457803,-0.013139511,0.00077478145,-0.0055432315,-0.005539973,-0.012233563,-0.009131178,0.018510027,-0.011985894,-0.029094633,0.041217398,0.000702273,0.012292222,0.014925338,-0.005334668,0.018184146,0.023411272,-0.0047969646,-0.011347167,-0.0043765786,0.009066002,0.0012236822,-0.0026608163,-0.0005356665,-0.007619092,-0.010323902,0.017415067,0.0028025743,-0.022485772,-0.0017467208,-0.0038486517,-0.021820975,-0.008231748,-0.009711246,0.035377614,-0.019904796,-0.023111463,-0.006263428,-0.0059375474,0.024988536,-0.010389078,-0.0036661583,0.0213126,0.0073388345,0.0067001083,-0.0038779809,-0.16685094,0.008003631,0.008701016,-0.014742845,0.009730799,0.01161439,0.00882485,0.024610514,0.011145121,0.03394374,0.0059375474,0.011125568,-0.02347645,-0.0178713,0.010851829,-0.030528508,-0.038714632,0.017010976,0.022642193,0.011875095,0.016567778,-0.0009303895,0.010441219,0.0065697557,-0.0040148506,0.001612295,0.004161497,0.0031056434,-0.016632954,-0.0034608536,-0.01751935,0.0046470594,-0.003757405,0.0051032924,0.0042103794,0.024414986,-0.010786653,0.009255013,-0.00069005246,0.021351706,0.0130547825,0.020999756,-0.004777412,0.008329512,0.026357235,0.013185135,0.023072356,-0.016307073,0.02467569,-0.014338753,-0.013647886,-0.013804308,0.007866762,-0.013452358,0.023463413,0.015707452,-0.010017574,0.008629322,-0.0027488042,0.009365813,-0.008231748,-0.02273344,0.027243631,-0.0043863547,-0.01532943,-0.00020163872,-0.015459782,0.0026005283,-0.029981028,0.0048653996,0.0061363345,-0.0047350475,0.0087401215,-0.023958752,0.011327615,0.0046763886,-0.036550786,0.00027373983,0.0121097285,0.009033415,0.0055073844,0.0118164355,-0.02948569,-0.015199078,0.008603252,0.032144878,-0.0065762736,0.013726097,-0.011946788,0.011575284,0.028130027,-0.030267803,-0.03449122,-0.0143778585,0.030711,0.0037345933,-0.014495175,-0.008779228,-0.009554824,-0.026578834,0.0014175812,-0.008081842,-0.0021214837,-0.001604148,0.027113277,0.0018640378,0.0101153385,0.024636585,0.029355338,0.01983962,-0.023463413,0.020035148,0.014547316,0.013295935,0.0034119715,0.00060369406,0.023945717,-0.038975336,0.019383388,0.020765122,0.04697897,0.011881612,-0.015381571,0.0036466056,0.006960813,-0.00907252,-0.07675143,-0.009854633,0.027973603,0.009887222,-0.0011862059,0.014690704,-0.014716774,0.02719149,-0.009137697,0.02375019,0.0077429265,-0.026226882,-0.022198996,-0.020647803,0.025562085,-0.0066610025,0.0057322425,-0.020269783,-0.013452358,0.015368536,-0.0011617648,-0.0058169714,-0.023515554,-0.013211206,0.020843333,0.012917913,-0.040878482,0.026904715,0.012403022,-0.020165501,-0.018927153,-0.015498889,-0.0009548306,-0.023815366,-0.00022098789,0.005927771,-0.018353604,-0.010799688,0.026800433,-0.02066084,-0.015811734,0.012572479,-0.013934661,-0.02779111,0.030267803,-0.018001653,-0.026200812,-0.0038225811,0.010076232,-0.021130107,-0.01647653,-0.011959824,-0.004787188,-0.005735501,0.034882274,-0.030711,0.015368536,-0.0064785094,-0.02664401,0.009137697,-0.008160054,-0.006732696,0.0012456791,0.039236043,0.004164756,-0.025940107,-0.012148834,-0.005992947,-0.0130547825,-0.017740948,-0.009535271,0.0073909755,-0.023424309,0.019096611,-0.009228943,-0.0018347086,-0.028781788,-0.011809918,0.0054617613,0.0011902794,-0.0049664224,-0.019735338,0.012526856,-0.005843042,0.029616043,0.008538076,0.034413006,0.022081679,0.005996206,-0.011360203,0.00037659594,0.023137532,-0.00051000336,-0.023267886,0.006481768,0.0022159892,-0.00568336,-0.00582023,-0.009522235,0.009424471,0.0067783194,-0.008681463,-0.08092271,-0.0019601728,0.0052173506,-0.00045012278,0.012696314,-0.008512005,-0.01049336,0.012331327,-0.012200975,0.009189837,-0.02617474,-0.008896545,-0.004924058,0.0008888397,-0.008368618,-0.028703576,0.0024766936,0.0028270155,-0.008616287,-0.002975291,0.0005079666,0.00822523,0.0315974,-0.0004957461,-0.023698049,-0.0005869927,-0.022420594,0.016893659,-0.03636829,-0.014625528,0.021820975,-0.023241814,0.02644848,0.025171028,0.0024343291,-0.029928887,0.021351706,0.03063279,0.0121097285,0.026474552,-0.0009532012,-0.033813387,0.0028677506,-0.0005601075,-0.0022208772,0.0010697036,-0.024480162,0.014260542,0.035481896,0.009463577,0.049142815,0.0089812735,-0.0039138277,-0.0039855214,-0.030893495,-0.00016507896,-0.002211101,0.012546409,-0.0056279604,0.009463577,0.029251056,0.02945962,0.024701761,-0.017375961,-0.014834092,0.0089812735,-0.012820149,0.0030763142,-0.0076060565,-0.035534035,-0.014990514,-0.012996124,0.0091702845,0.005142398,0.009750352,-0.0012171646,-0.010858347,-0.01418233,0.007958008,0.005298821,0.017167397,0.025640298,-0.01177733,0.020856367,0.0025369816,0.02617474,-0.020217642,0.004803482,-0.010917005,-0.0010672595,-0.011607872,0.018992329,0.022915933,0.017636666,-0.0044319783,0.0006073602,-0.033761244,-0.013543604,0.008994308,0.0089291325,0.011712154,0.015785662,-0.008466382,-0.037984658,-0.013778238,0.021521164,-0.026878644,-0.023685012,-0.018184146,0.02322878,-0.02472783,0.016346179,-0.009717763,0.00031141978,-0.008857438,-0.011106016,0.018718591,0.018275393,-0.024362845,0.008922615,0.002134519,0.01560317,0.027921462,-0.010806206,0.0012318292,-0.00086439867,0.00061306317,-0.0036009823,-0.004793706,-0.019409457,0.014403929,0.012715867,-0.013504498,-0.0012847849,-0.010082751,-0.024141246,0.024232492,9.591841e-06,-0.023567695,0.059805635,-0.016254932,0.0020774899,0.011536178,-0.0013898814,0.026578834,-0.0045232247,-0.0010485213,-0.027113277,-0.014560352,0.009189837,-0.018340569,-0.016867587,-0.026252953,-0.029824605,0.018132005,-0.024832113,0.01292443,0.00694126,-0.0033044307,0.019200893,0.0046796477,0.008909579,-0.008544593,-0.013315488,-0.007716856,0.017675772,0.0065176147,-0.0083620995,-0.018379673,-0.0021442953,-0.011738225,-0.046874687,-0.02432374,-0.0034119715,-0.023971789,-0.012474715,-0.014351788,-0.0039985566,0.040669918,-0.0022876828,-0.0038193224,-0.024258563,-0.0020937838,0.009020379,0.0022241361,0.0050544105,-0.009294119,-0.0078081028]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('41f8620c-a5da-11ee-8347-8f6316bc449e', 'Culture', 'this article is about Actors', '[0.009658341,-0.00096447574,0.021612406,-0.023106664,0.0017999018,0.037139107,-0.020675099,0.020281158,-0.026502706,-0.033797402,0.007973905,0.005352161,0.018732563,0.0007590152,0.002784754,0.009244024,0.030211182,0.011539748,0.01862389,-0.014018858,-0.0174149,0.023161002,-0.014793156,0.0071384786,0.0025334468,0.018678227,0.020552842,-0.030184014,0.004706913,-0.018216366,0.0028611647,-0.014765987,0.007912776,-0.034259263,-0.0095224995,-0.00968551,0.0018440504,-0.019588366,0.0104462225,0.017971851,0.0061264583,-0.0032568036,-0.020539258,-0.035889365,0.011003174,0.006401538,0.026380448,-0.026597794,-0.005019349,0.0043129725,0.026394032,0.018705396,-0.03955709,-0.013855848,-0.00040710045,-0.0008999509,-0.017469237,0.0025300507,0.0076275086,-0.024981279,-0.011648421,-0.010833371,-0.028934272,0.0032381252,-0.03694893,-0.0019968722,-0.0022447833,0.006533983,0.009936817,0.013441531,0.013489076,0.0062215477,0.005698557,0.005036329,0.029830826,-0.022943655,-0.020403415,-0.006924528,0.013624918,0.0012412531,0.017700167,-0.011777471,-0.011560124,0.0187869,-0.0023806249,0.009923233,-0.011845392,0.0085987765,0.00063930475,-0.00091013906,0.011091471,0.012307254,0.012972877,0.0021242239,0.002966442,0.021666743,0.036541402,0.018841237,-0.02048492,-0.03529166,0.008408598,-0.0008320301,-0.019452523,-0.01086054,-0.0061366465,0.020050228,-0.0053385766,0.0103986785,0.029368965,-0.009488539,-0.013937353,-0.00035255152,0.020593595,-0.044067033,-0.010554896,-0.008612361,0.006680013,-0.003455472,0.018406544,-0.017211137,0.028037716,0.036405563,-0.010025114,-0.008496895,0.03040136,0.0067852903,-0.024288487,-0.032411817,-0.022902902,0.004608428,0.019887218,-0.0018253721,0.015336522,0.018678227,0.014630145,0.025402388,0.006496627,0.036188215,-0.00034809424,-0.00658832,0.012456679,0.013393987,-0.046593685,-0.02195201,-0.017971851,0.00906743,0.021204881,0.02155807,0.012280085,0.031949956,0.018216366,0.008530855,0.032248806,-0.00022074267,0.01594781,0.025511062,-0.0033247243,-0.005532151,-0.003059833,-0.018080523,0.0072811125,-0.002884937,0.007152063,-0.0025775954,0.011770679,0.023364764,0.022807812,0.010194915,0.0007895796,-3.2395048e-05,-0.0135162445,0.012123867,-0.002312704,0.019153673,-0.00821842,0.017537156,-0.007056974,0.020118149,-0.018977078,-0.0103511335,-0.014983334,0.026502706,0.04493642,0.05088628,0.0020036644,0.02087886,-0.000860472,-0.007165647,-0.005912508,0.0031803926,0.006007597,0.028200727,0.009746638,-0.015825553,-0.6733399,-0.015010502,-0.024084724,0.0115193715,0.006907548,0.0009424015,0.011288441,0.011458243,-0.024668844,0.0008074088,0.0006762367,0.007192815,0.015037671,-0.010215292,-0.013978106,-0.008136915,0.0098145595,-0.04518093,0.008177667,-0.0078652315,-0.0067173694,0.017836008,-0.015567453,-0.006190983,-0.0063879536,0.005107646,-0.0053895176,-0.0078041027,-0.00014348274,0.018488048,-0.020525673,0.020566426,0.01050056,0.018406544,0.033933245,0.017360562,-0.0060449536,0.033906076,0.007838063,0.051538322,-0.004774834,-0.0059702406,0.0043265563,0.007512043,-0.008048617,0.010758659,0.0030021004,-0.01236159,0.01829787,0.0030819075,0.0068633994,0.030482866,0.015214264,0.016898701,0.023011575,0.0027864517,0.010256045,-0.009087807,0.031053402,0.017836008,-0.01513276,0.022413872,-0.0090334695,-0.0026200458,0.012782699,0.02139506,0.010215292,0.015662542,0.00046525765,-0.027181914,-0.0047238935,0.008517272,-0.028526746,0.00760034,-0.0020647931,0.005701953,0.010256045,-0.024478665,-0.018990662,0.020702267,-0.009712678,-0.00067793473,-0.006595112,-0.019737791,0.014901829,0.004105814,-0.0026081596,-0.0021632782,0.012843828,-0.0072946968,0.010554896,0.02113696,0.0007360919,0.011736719,0.015064839,0.026760805,-0.0040990217,-0.009733054,0.017197553,0.0003988226,-0.01053452,-0.024410745,0.030292688,-0.008055409,0.00825238,-0.0017421691,-0.022400288,0.018746147,0.026217438,-0.02025399,0.0072811125,0.022739893,-0.0020036644,-0.015119175,-0.028227895,-0.033960413,0.012137451,0.02348702,-0.0015214265,-0.023215339,-0.017346978,-0.008639529,0.0063098446,0.007838063,0.0031532242,0.04586014,-0.028526746,-0.002215917,-0.020036643,-0.003372269,-0.004353725,-0.02074302,0.012069531,-0.018610306,0.03089039,0.022291614,0.010765451,-0.008408598,0.030075341,-0.020050228,-0.028363736,-0.009379866,-0.000821842,-0.003126056,-0.010765451,-0.039258238,-0.016110819,-0.010833371,-0.017944682,0.011825016,-0.0038884673,0.0025928775,-0.0038782791,0.0038137543,0.008007865,-0.0037254572,-0.01562179,-0.004380893,-0.011172975,-0.010717906,-0.016124403,0.0006660486,-0.020946782,-0.009692302,-0.014236205,0.024125477,-0.002562313,-0.03135225,-0.01650476,-0.0009160821,0.017727336,0.007681845,0.027589438,-0.014956166,0.0135637885,-0.00525028,-0.0117163425,0.009930025,0.014670898,0.0018966891,-0.012341213,-0.010317173,-0.024356408,-0.00899951,0.029531974,0.017102463,0.0039462,0.014195452,-0.009930025,0.01692587,-0.01050056,0.011852184,-0.021055456,-0.003966576,-0.0031039817,0.0056204484,0.0098621035,-0.007009429,0.02038983,-0.004785022,0.035264492,0.0051517948,0.051483985,-0.015458779,0.008238796,-0.018800484,0.0013473794,0.0053453688,0.015526701,-0.008265965,0.028744092,-0.014521472,-0.011145807,0.0145893935,0.005358953,0.014969749,8.898689e-05,-0.010677153,-0.01901783,-0.014236205,-0.0030988876,-0.024043972,0.0015969884,0.010459807,-0.02074302,0.01102355,-0.0071384786,0.014195452,-0.0017506593,-0.034395106,-0.00658832,0.0041601504,-0.00038014437,0.022060683,0.016708523,-0.01232763,0.013027214,-0.011166183,0.029178787,-0.006010993,-0.0037288533,0.03010251,0.0029002193,-0.015540285,0.018121276,-0.010405471,0.012021986,0.017224722,-0.0038884673,-0.013373611,-0.004149962,0.019710623,-0.016599849,0.013923769,0.0006180795,0.008428974,-0.0030954916,-0.0024587337,0.008918004,0.013618126,-0.0033145363,-0.009284777,0.024193399,0.011465035,0.011009966,-0.0037424373,0.0055796956,-0.016368918,-0.025511062,-0.011492204,-0.03969293,-0.009291569,0.020634346,-0.0072199837,-0.014467136,0.013163056,-0.01536369,0.0077905185,0.021123376,0.009624381,-0.002628536,-0.02439716,0.0030173827,0.029939499,-0.009298361,-0.029368965,-0.014412799,-0.01004549,-0.05743385,0.0060653295,-0.007321865,0.030347025,0.014616561,0.012415927,0.0046152202,0.02293007,0.03121641,0.0062011713,0.01301363,0.0042484477,0.010459807,-0.008802539,0.0027338131,-0.014630145,0.008164084,-0.0075595877,-0.011315609,-0.008537647,0.009155727,-0.03205863,0.0032500115,0.0019663079,-0.027100408,0.024967695,0.00838143,-0.009692302,-0.02879843,0.028907103,0.034938473,-0.02132714,0.01464373,-0.0048291706,-0.031949956,0.0024960903,0.12888655,-0.004279012,-0.0018763128,0.016246662,-0.022142189,-0.026570627,-0.0034758481,-0.019140089,0.0042484477,-0.037682474,0.0035013186,-0.022848565,0.0021208278,-0.012741947,0.029314628,0.020960366,-0.01643684,-0.001073998,-0.014915413,-0.007967113,0.013733591,-0.024057556,0.01353662,0.020444168,0.016192324,-0.03659574,0.02730417,0.0019255554,0.0016054785,-0.020118149,-0.008075786,-0.015811969,-0.017374147,-0.01520068,0.016898701,0.013129096,0.0060585374,0.016586265,0.020118149,0.0010960723,0.029205954,-0.0036541403,0.0075867563,-0.02097395,-0.005749498,-0.042518437,-0.004880111,0.0555864,0.0071316864,-0.032275975,0.0160429,0.0063879536,-0.032928016,-0.0026828726,0.024600923,0.0022345951,-0.0149289975,0.013964522,-0.0021530902,-0.007097726,0.0016360428,-0.02677439,0.005596676,-0.011587293,-0.0007441575,-0.020417,-0.019615535,-0.008048617,0.006676617,0.005124626,-0.000740337,-0.010724698,-0.007878816,0.0074577066,0.022821397,-0.013849056,0.033281203,-0.017129632,-0.017102463,0.0034945265,-0.023948884,-0.009400242,-0.0043978733,-0.037410792,-0.0035149027,0.0094749555,-0.013475492,0.012381966,-0.023921715,0.011532956,0.0041533583,0.0138966,-0.008979133,-0.0040718536,0.01653193,0.02309308,0.017944682,-0.009250816,0.013047591,-0.016559098,-0.01666777,-0.022386704,0.014358463,-0.0016895306,-0.0077837263,-0.009773807,0.008945173,-0.0070705577,-0.016857948,-0.0009975871,0.0105481045,-0.0059057157,-0.013163056,-0.009087807,0.013190224,-0.0075595877,-0.011920105,0.012972877,-0.03010251,0.009284777,0.010337549,-0.017971851,0.007858439,0.022074267,-0.016396087,0.0062792804,-0.002477412,-0.006843023,0.010215292,0.008972341,-0.003613388,0.03317253,-0.021191297,-0.010480183,-0.02106904,-0.0160429,-0.017591493,0.007994281,-0.01536369,-0.007016221,-0.017523572,-0.011974442,0.012334422,-0.011451451,0.014073195,-0.03724778,0.008795747,-0.010405471,0.0026115556,0.011784263,-0.032140136,-0.0016767953,-0.014276957,0.0026760804,-0.013753967,-0.036487065,0.0017523572,-0.017632246,0.010806203,0.01650476,0.04116002,-0.015214264,0.016002147,0.021544486,-0.00414317,0.0058242106,0.0030870014,-0.013923769,-0.031488094,0.012021986,0.0018966891,0.010364718,0.005678181,0.011777471,0.007192815,0.019262346,0.0066528446,0.029722152,-0.01098959,-0.0039088433,-0.01004549,0.00054633815,-0.022413872,-0.0089859255,-0.008035034,0.001894991,0.029885164,0.01448072,-0.0132106,-2.7698961e-05,0.014942582,-0.008673489,0.004119398,-0.011981233,-0.012477055,-0.010065867,-0.013618126,-0.026231023,0.0038307344,0.007539212,0.012538184,0.03453095,-0.009488539,0.0018763128,0.005178963,0.035835028,0.0033247243,-0.029830826,-0.0014169982,-0.02544314,-0.0057257256,-0.022984408,-0.01731981,-0.03499281,0.0070637655,0.018474465,-0.017374147,0.021829752,0.004180527,-0.021938426,0.040915504,-0.015526701,0.032792173,0.00060407084,0.020620763,0.0050295372,0.010031906,-0.022685556,0.017170385,0.0066222805,-0.023731535,0.016640602,0.01050056,0.0015137853,0.008062202,0.009291569,0.016627017,-0.027766034,-0.027901875,0.023405517,0.011261273,0.012429511,-0.030999064,-0.017360562,-0.03072738,0.0077973106,0.012816659,0.012898165,-0.017129632,-0.029857995,6.701875e-05,0.00037122975,0.0054166857,-0.00808937,0.0106907375,-0.012966085,-0.0009967381,-0.011397114,-0.006907548,-0.001152956,-0.010921668,0.0033994373,-0.01650476,0.010867332,0.022970824,0.008422182,0.0062351315,-0.010025114,-0.0123004615,0.027249835,-0.015757632,-0.010269629,0.022386704,0.009332322,0.018814068,-0.010154163,-0.0035896157,-0.0187869,-0.007186023,-0.011342778,0.0083542615,0.006340409,0.0005437911,0.021870505,-0.00543027,0.00042195813,0.014439967,-0.0062045674,-0.0055593196,-0.0026489121,-0.00088212173,-0.01992797,-0.013034007,0.012273293,-0.012714778,-0.024926942,0.01750999,0.020729436,-0.037492294,0.019792128,-0.029368965,-0.0109827975,-0.016219493,0.019031415,0.011845392,-0.023826625,0.034884136,-0.0027592834,-0.023527773,-0.0071316864,-0.009047054,0.007878816,-0.008524063,-0.019343851,-0.026896646,-8.9676716e-05,-0.0075324196,-0.0068566073,-0.024628092,0.009984361,0.003041155,-0.005810627,0.015771216,0.005596676,0.008435766,-0.011933689,0.01966987,-0.027589438,-0.0010459807,0.005983825,0.0021955406,0.03852469,-0.016287414,-0.012130659,-0.014602977,-0.0037967742,-0.02814639,0.014752403,-0.005114438,0.013747175,0.014915413,-0.0097670145,0.0067275576,0.011261273,-0.0038850713,0.0032245412,-0.004693329,-0.00851048,-0.027521519,-0.0033586847,0.0033943432,0.025361637,0.006493231,-0.019683454,-0.031759776,-0.01699379,-0.04621333,-0.002643818,0.0023738327,0.013353234,0.01043943,0.009529292,0.012314046,-0.016681354,0.0011257876,0.0035692393,-0.019058583,-0.026475538,0.021598822,-0.02495411,0.0029936105,0.011621254,0.0010841861,-0.0031600164,0.010880916,0.005987221,0.012008402,0.017279059,-0.0074644987,-0.016423255,-0.016654186,0.0057834582,-0.023690784,0.012762323,0.017944682,-0.022087852,0.008918004,0.013679254,-0.009332322,-0.022563297,0.0054132896,0.017672999,0.019955138,0.033933245,0.0008974039,-0.023215339,-0.00035891912,0.0012811566,0.019411772,0.013910185,-0.010188124,0.039421245,-0.0020325307,-0.025252962,-0.0036914968,-0.009142143,0.01118656,-0.009447787,-0.0033162343,0.011634837,0.012612897,-0.012606105,-0.016708523,-0.020783773,0.011437867,-0.0058955275,-0.003295858,0.0036914968,0.006921132,0.011172975,-0.028526746,0.011166183,-0.007953528,0.0020953575,-0.033607226,-0.011369946,-0.00279664,-0.024206981,-0.010344341,-0.014657314,-0.022875734,0.0012438002,-0.0057970425,-0.005324993,-0.032004293,0.010554896,0.20593594,-0.015703294,-0.007335449,0.0012794585,-0.008238796,0.015852721,0.020729436,0.016599849,-0.0040786457,0.010649986,0.014752403,0.012857412,0.006503419,0.0047171013,-0.0036031997,-0.042328257,-0.017944682,-0.015866304,-0.030455697,-0.02155807,0.008225212,-0.019357435,-0.009013093,-0.019452523,0.031949956,-0.011037134,0.012775907,0.019167257,0.009536084,0.017917514,-0.0015502928,-0.015458779,0.017129632,-0.014983334,-0.014521472,0.0076275086,-0.007430538,-0.0076886374,0.0076139243,-0.007872024,0.010656778,0.0220471,0.010065867,-0.010038698,-0.011512579,0.02074302,-0.010249252,-0.004275616,-0.0038137543,0.02798338,-0.016912285,0.01986005,0.008632737,0.031786945,0.0028441846,0.0014093571,0.011172975,0.020865276,-0.013529828,0.009060638,0.012314046,0.037410792,-0.040399306,-0.0015570848,-0.01438563,0.031705443,-0.014752403,0.009800975,0.008591984,-0.022807812,0.011974442,-0.030510034,-0.009047054,-0.0022804416,0.0049921805,-0.0071724392,0.015336522,-0.00062105106,0.026950983,0.036650077,-0.015961394,-0.015866304,0.0018542386,0.013495868,0.002640422,-0.012823451,0.010194915,-0.008945173,-0.01196765,-0.026597794,0.008456143,-0.036052372,-0.0059668445,-0.0005679879,-0.00027062203,-0.0022040308,0.020131733,0.005508379,-0.023636447,0.0018983871,-0.022223694,0.043007467,0.014630145,0.019737791,-0.022753477,0.015037671,-0.03363439,0.023622863,0.002229501,-0.015146344,-0.011641629,-0.011043926,-0.011437867,-0.0060347654,0.0011240897,0.0326835,0.009576837,-0.01960195,0.043985527,-0.03904089,0.005369141,-0.012110283,-0.006591716,-0.014657314,-0.0031226599,-0.005026141,-0.014059611,0.008476519,-0.0017778276,-0.020294743,0.037465125,-0.0038069622,-0.010629609,0.009019885,-0.009821352,0.013523037,0.021299971,0.00378319,0.005114438,-0.00890442,0.01643684,0.003789982,-0.004037893,-0.01699379,-0.01692587,-0.032438986,0.020267574,0.001974798,-0.023568526,-0.003370571,-0.011043926,-0.027589438,-0.009006301,0.0007560437,0.025293715,-0.01529577,-0.016844364,-0.0038884673,-0.01676286,0.040453643,0.0145893935,0.014412799,0.04181206,0.0063064485,0.0047884183,-0.0022838376,-0.17626813,0.016409671,0.0019204613,-0.027929043,0.010840164,0.004944636,0.016097235,-0.00046313513,0.006510211,0.02237312,0.010779035,-0.0035047145,-0.03314536,-0.010514144,0.014956166,-0.005603468,-0.034856968,0.025864251,0.019737791,0.0071384786,0.03803566,0.006601904,0.012809868,0.0007276018,0.0029494618,0.0030207788,0.019520445,0.005518567,-0.0060381615,-0.0045778635,-0.033878908,0.0038952592,-0.0014068101,0.006737746,0.0066222805,0.023459854,-0.01203557,-0.003042853,-0.005369141,-0.0037560216,0.010160956,0.024845438,0.016749276,-0.004835963,0.026461953,0.019058583,0.021870505,-0.0022549713,0.03510148,-0.007152063,-0.0029834223,-0.020919614,0.0132241845,-0.0020206445,0.014276957,0.02465526,0.00070213154,0.011736719,-0.017836008,0.004846151,0.0010977703,-0.005352161,0.01634175,-0.0077837263,-0.02514429,0.0014042631,-0.012565353,-0.0070705577,-0.024098309,0.013869433,0.0040752497,0.005494795,0.0041737347,-0.03499281,0.015322938,-0.015214264,-0.030048173,0.014046026,0.01986005,0.017958267,0.004666161,-0.0010799412,-0.03404192,-0.00083585066,-0.006846419,0.028934272,-0.018311454,0.024274902,-0.01657268,-0.0037967742,0.03233031,-0.033389878,-0.027929043,-0.009624381,0.013733591,0.0072879046,0.0020172484,-0.002052907,0.0066596367,-0.03550901,-0.0035896157,-0.014725234,-0.0051721707,-0.0010442827,0.009237233,0.010344341,0.0058004386,0.01901783,0.017007375,0.015214264,-0.035047144,-0.0034316997,0.009807767,0.0043774974,-0.013135888,-0.00011896757,0.009760222,-0.035943702,0.005331785,0.010880916,0.044311546,0.022848565,-0.014983334,-0.00756638,0.0115669165,-0.010120203,-0.07873382,-0.0056306366,0.026122348,0.012001609,-0.0021972386,0.024152646,-0.00445221,0.021707496,-0.021707496,0.018026186,-0.001062961,-0.03610671,-0.002873051,-0.011628045,0.018216366,0.0063879536,-0.00010718755,-0.016694939,0.0025300507,0.015744047,-0.011587293,-0.009210064,-0.0074441223,-0.022033516,0.0010824881,0.023242507,-0.023065912,0.026597794,0.0055593196,-0.0025792932,-0.025089953,-0.02742643,0.010344341,-0.031488094,0.02344627,-0.004676349,-0.031270746,-0.026203854,0.020321911,-0.028418073,-0.015092007,-0.002147996,-0.028907103,-0.009162519,0.0016003845,-0.01066357,-0.030999064,-0.002718531,0.016124403,-0.019343851,-0.021435812,-0.010140579,-0.03238465,-0.010126995,0.035563342,-0.0028781448,0.025864251,0.0032041648,-0.0077905185,0.000991644,-0.017469237,-0.002304214,-0.013115511,0.021775417,0.009244024,-0.02684231,-0.010099826,-0.0009653247,-0.008198043,-0.021517318,-0.014861076,0.01069753,-0.02847241,0.019194424,-0.0027524915,-0.004445418,-0.02775245,-0.002385719,-0.008408598,-0.0062113595,0.0009322133,-0.021028288,0.03154243,-0.014331294,0.019126505,0.012592521,0.030075341,-0.0012667234,-0.023853794,-0.015553869,-0.027929043,0.018854821,-0.004465794,-0.012490639,0.0008906118,0.00890442,-0.004204299,0.016097235,-0.005875151,0.0028781448,-0.0043367445,-0.009407034,-0.08096162,-0.0033790611,-0.0074644987,0.015744047,-0.0064830426,-0.0042382595,0.0063166367,-0.002390813,-0.019425357,0.027290588,-0.017075295,0.004350329,-0.003219447,0.0034028334,0.00035594756,-0.03694893,-0.0012667234,-0.016002147,-0.0085987765,0.0075188354,-0.015907057,0.0092644,0.032710668,-0.0056408243,-0.030021004,-0.005749498,-0.015879888,-0.006819251,-0.03401475,-0.011614461,0.016110819,-0.028662588,0.014453552,0.017306225,0.0068667955,-0.0059193,0.013156264,0.025022032,0.013135888,0.025674071,-0.006846419,-0.022522546,0.024505833,-0.00919648,-0.011736719,-0.010249252,-0.010194915,0.0066460525,0.029559143,0.027141161,0.02877126,0.022767061,0.00045719204,-0.0033569867,-0.005080478,-0.008537647,0.025633318,0.0043741013,-0.017713752,-0.0021887487,0.034884136,-0.0011546541,0.014956166,-0.021164129,-0.005698557,0.007233568,-0.0084493505,0.0018780108,0.0007547702,-0.025633318,-0.012904957,-0.0075256275,0.0069686766,0.014181868,0.02912445,0.010758659,-0.00072080974,-0.022128604,-0.008816123,0.004948032,-0.0013388892,0.01050056,-0.017768087,0.013618126,-0.007872024,-0.00014231536,-0.01232763,-0.005219715,0.0070637655,-0.003718665,-0.0171568,0.031678274,0.016803613,0.0043095765,0.0026947588,-0.010419055,-0.02113696,-0.01092846,0.0040956256,0.016287414,7.917021e-05,0.013387195,-0.0058989236,-0.03075455,-0.024994863,0.012837036,-0.030645875,-0.021802586,-0.019561198,-6.240226e-05,-0.006353993,0.0028628628,-0.0025147686,0.0069381124,-0.014575809,-0.00068217976,0.0075527956,-0.0030513431,-0.024587339,0.01236159,-0.0023789268,0.008347469,0.024967695,0.0025979716,0.017700167,0.0007080746,0.0036405562,-0.016518345,-0.007260736,-0.000114191884,0.016246662,-0.0054098936,-0.027684528,1.0831514e-05,0.003949596,-0.00968551,0.010262837,0.02465526,-0.026475538,0.05900961,-0.011071094,0.011397114,0.010683945,-0.007647885,0.021653159,-0.00796032,0.002552125,-0.025551815,-1.7577166e-06,-0.01043943,-0.008347469,-0.01617874,-0.030510034,-0.0152686015,0.0064083296,-0.013835472,-0.0039258236,0.0024213775,0.0005518567,0.014127531,0.018080523,0.008931588,0.0012038966,0.0015256716,-0.015811969,0.020729436,0.0045167347,-0.0072131916,-0.025402388,-0.005511775,-0.023106664,-0.026964568,-0.014032442,0.019561198,-0.02335118,-0.013523037,0.0041329823,-0.0027253232,0.040453643,-0.015404443,0.007939944,-0.023527773,-0.0151735125,0.014602977,0.0029919124,0.007192815,-0.011213728,-0.007573172]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('4201bbe0-a5da-11ee-8347-931400ff01c6', 'Culture', 'this article is about TV', '[0.017839901,-0.0016012688,0.024271173,-0.024467649,0.0057043154,0.011971858,-0.017381461,-0.00021202894,-0.019110437,-0.034762923,0.0018992553,0.0129738785,0.0061856783,0.0067783766,-0.0123517085,0.023013735,0.032038473,0.008520452,0.016045433,-0.015469108,-0.026982524,0.022332624,-0.011605105,-0.001651206,-0.007112384,0.029523596,0.015888253,-0.034265187,-0.0003186574,-0.0016520247,0.011709891,9.982347e-05,0.0048234537,-0.024808204,-0.0023969912,-0.032510012,0.0011059887,-0.02429737,0.004161989,0.0003923354,0.0040473784,0.0009725497,-0.01692302,-0.020079713,-0.01250234,0.017407658,0.041128702,-0.003670802,0.013674638,0.0022103402,0.019044947,0.0071778754,-0.03353168,-0.023301898,0.0022578216,0.0006152114,-0.0036839005,0.020354778,0.029706974,-0.031304967,-0.008251937,-0.01498447,-0.026039446,0.020407172,-0.021533627,0.0036216835,-0.0074332925,0.019804649,-0.008559748,-1.8211643e-06,0.01575727,0.018887768,-0.0059597325,0.009077131,0.02165151,-0.024284272,-0.006388702,0.00059310795,0.017643427,0.0055733323,0.021572921,-0.023105424,-0.0036937243,0.015927548,0.010255978,0.016674152,-0.01567868,0.020918006,0.0134650655,0.0056551965,0.013609147,0.0057927286,-0.0047546877,0.0067194346,-0.0068111224,0.039871264,0.019686764,0.025397629,-0.015547697,-0.029052058,0.014866585,0.013491262,-0.023537667,-0.013805621,-0.013366828,0.030597659,-0.008088208,0.0015742534,0.030021332,-0.02376034,-0.023406684,0.022555295,0.016477678,-0.01933311,0.0042635007,-0.015560796,0.005255698,-0.019817747,0.0065229596,-0.009555219,0.019110437,0.029156845,-0.00010887972,-0.002157947,0.027349276,0.005769807,-0.02305303,-0.016359793,-0.028580518,0.01133004,0.032038473,-0.004328992,0.0066080987,0.028711502,-0.004371562,0.016490776,0.0055176644,0.03819468,-0.01894016,-0.011421729,0.011081172,0.017381461,-0.034579545,-0.022385016,-0.00021632682,-0.00021653148,0.0075708246,0.015102355,0.014159276,0.035522625,0.010334569,-0.008317429,0.022502901,0.01763033,0.009437335,0.01413308,-0.0028963643,-0.01801018,-0.0037559413,-0.0051574605,0.00823229,-0.009679653,0.0046400772,-0.0103935115,0.007904831,0.02104899,0.037618354,0.024402156,0.0060284985,0.0033957376,-0.023118522,0.011709891,-0.015770368,0.019385504,-0.00690936,0.02842334,-0.0014792907,0.01730287,-0.0143295545,-0.0055635083,-0.024873696,0.035810787,0.048463758,0.028475732,-0.0010470464,0.021978969,-0.010806108,0.004751413,0.0015447823,-0.015403616,0.019555781,0.023105424,0.006624472,-0.0074070957,-0.6739868,-0.008644886,-0.0137139335,0.020001123,0.015586992,0.007865537,0.013242395,0.013596049,-0.014774897,0.011356237,-0.0004760418,0.008048913,0.016582465,-0.0030781035,-0.013314435,-0.0028898153,0.011009132,-0.023314998,0.014421242,-0.000948809,-0.00076747924,0.023406684,-0.018887768,-0.008559748,0.006133285,0.0033433444,-0.010720969,-0.013327533,-0.0066179223,0.014119981,-0.037303995,0.023917519,0.0052753454,0.01366154,0.03966169,0.014774897,0.00783934,0.031226378,0.009509375,0.042517122,0.0013131058,-0.0016331959,-0.0030519068,0.005589705,-0.0074463906,0.0067980243,0.0021677709,-0.01739456,0.012862544,0.0014154364,0.0051607355,0.018494818,0.012495791,0.028921075,0.026170429,0.0076952586,0.009673104,-0.009646907,0.028947271,0.012770855,-0.026903935,0.030702446,-0.0051803826,0.008821714,0.009502826,0.0122403735,0.0018452248,0.010760264,-0.0005996571,-0.01490588,-0.007092736,0.024166387,-0.027349276,0.00026032896,0.0026180253,0.014316455,0.023616258,-0.023930617,-0.005753434,0.013026272,-0.012495791,-0.0051738336,-0.017184986,0.004528742,0.02321021,-0.023459079,-0.003929494,0.020538155,0.01739456,-0.0026818796,0.019084241,-0.0016004501,-0.013045919,0.017525543,0.013491262,0.031619325,-0.011402082,0.0005849215,0.011834325,0.004178362,-0.0051050675,-0.01894016,0.019529585,-0.007786947,-0.008265035,-0.004142341,-0.01753864,0.019202126,0.03253621,-0.013176902,0.004204558,0.012666068,-0.006837319,-0.00636578,-0.016333597,-0.03135736,0.022607688,0.014892781,0.00082273775,-0.006326485,0.0010028395,-0.022005165,0.00014602572,0.01522024,-0.0018959808,0.047599267,-0.023419783,0.0030060627,-0.017040905,-0.0003559057,-0.014381947,-0.014408144,0.023943717,-0.0035234462,0.014761798,0.015456009,0.032640994,-0.021415742,0.013386476,-0.013858015,-0.013366828,-0.0008178259,-0.013609147,-0.004882396,-0.00737435,-0.023039931,-0.013203099,-0.004626979,-0.034579545,0.011624753,-0.008612141,-0.009358744,0.0031304967,-0.003975338,0.0019663842,0.0012410651,-0.017499346,-0.006588451,-0.011290746,-0.006054695,-0.008337076,-0.0007592928,-0.013144157,-0.006231522,-0.0062053255,0.015901351,-0.010111897,-0.0072564655,-0.0017944688,-0.012292767,0.009103327,0.017643427,0.021455036,-0.009188467,-0.004135792,0.0134650655,-0.0016487502,-0.00026462684,0.002825961,-0.0060841665,-0.012364808,0.008651435,-0.017813705,-0.0031108493,0.024585534,-0.0028816287,0.018678194,0.017263576,-0.0020744454,-0.0010470464,0.0016798587,0.014395046,-0.024637926,-0.006333034,-0.015390517,0.0025623573,0.0021825063,0.0059597325,0.021874182,-0.0015488755,0.036596686,-0.00040256846,0.042176567,-0.010249429,0.019555781,-0.019058045,0.009247409,-0.0065557053,0.0083043305,0.011094271,0.033322107,-0.017263576,-0.007243367,0.0026098387,-0.0011289108,-0.0015054874,-0.0064148987,-0.0053441115,-0.02305303,0.0074398415,-0.010452454,-0.020695334,-0.0015128552,0.017276675,-0.037539765,0.020210696,0.0019221774,0.0019729333,0.00516401,-0.041836012,-0.01569178,0.0059990273,0.0022152523,0.02104899,0.010930542,-0.0069028107,0.020380974,-0.018796079,0.02648479,-0.008802067,-0.019162832,0.043722168,0.020276189,-0.017669624,0.023328096,-0.0062904647,0.027139705,0.007079638,-0.016241908,-0.032510012,-0.011421729,0.0063232104,-0.025450021,0.007741103,0.0012394278,0.0023871674,-0.0010560515,-0.009031286,0.012986977,0.019791551,-0.0021268385,-0.0137139335,0.00869728,0.005583156,0.00018726494,0.008900303,-0.0009332548,-0.024703417,-0.01009225,-0.019267619,-0.027899407,-0.029942743,0.014159276,-0.020747727,0.009181918,0.009325999,0.0006021131,0.021009693,0.014709406,0.019437896,-0.015285731,-0.02577748,0.0027260864,0.023590062,-0.0209573,-0.023000637,-0.02965458,-0.010386962,-0.039845068,-0.001676584,-0.016110925,0.011480671,0.014643914,0.028475732,-0.001835401,0.021599118,0.030885821,0.012260021,-0.0038312564,0.0059171626,-0.0015210416,-0.011316942,-0.008625239,-0.015927548,0.0075249807,-0.0025574456,-0.0058222,-0.01653007,0.010734067,-0.033688862,-0.0013736855,-0.0035136223,-0.01615022,0.023537667,-0.007911381,-0.011185959,-0.021546725,0.032719586,0.036596686,-0.01947719,0.014303357,-0.00087185646,-0.03693724,0.002310215,0.11757045,-0.0064771157,0.0032942255,0.0318289,-0.009260507,-0.03531305,-0.019581977,-0.027454063,0.010111897,-0.022398114,-0.0023920794,0.0124761425,0.006087441,-0.0049511623,0.033322107,0.021717003,-0.010432806,0.013871113,-0.0018468621,-0.0038345312,0.023105424,-0.020603646,0.007950676,0.014421242,0.010138094,-0.039949853,0.034160398,0.008219191,0.013491262,-0.02119307,-0.021808691,-0.001801018,-0.004207833,-0.012148685,0.016805135,0.012449946,0.0055733323,0.019922534,0.011572359,-0.0039851614,0.015979942,-6.804983e-05,0.0039163954,-0.016045433,0.01498447,-0.031645525,-0.0032352833,0.050900042,0.0021350249,-0.038928185,0.012220725,-0.0056486474,-0.028659109,-0.0040277313,0.03848284,-0.00059106137,-0.017407658,0.025711987,0.010203586,-0.015089257,0.009221212,-0.02352457,0.0038410802,-0.0027555577,0.013320984,-0.009358744,-0.0059171626,-0.006126736,-0.0009643633,-0.005141088,-0.0145784225,-0.02524045,-0.017682722,0.003890199,0.017171888,-0.012043899,0.02453314,-0.009365293,-0.015862057,0.02826616,-0.00970585,-0.01296078,-0.0037035479,-0.043198235,0.0047645112,-0.007243367,-0.012456495,0.013504361,-0.025201153,0.0028014015,-0.0001998516,0.017656526,-0.005114891,0.005308091,0.02135025,0.020014223,0.0053506605,-0.015010666,0.020616744,-0.025135662,-0.0020351503,-0.012594027,0.00434864,0.010183938,-0.0015079433,-0.008985442,0.005147637,-0.00353327,-0.0028668933,-0.0019352757,0.016399087,-0.0024493844,-0.017826803,0.007832791,0.011205606,0.0037592158,-0.019123537,0.016962316,-0.022149246,-0.018390032,0.019922534,-0.04799222,0.0030551814,0.017027806,-0.006342858,0.012489242,-0.0041325176,-0.03206467,-0.0024739439,-0.010007111,0.0053441115,0.020996595,-0.031016804,-0.011434827,-0.026301412,-0.004404308,-0.008186446,0.006437821,-0.016700348,-0.01569178,-0.020904908,0.007079638,0.0033990121,-0.008474608,0.015416714,-0.037068225,0.00096600055,-0.012744659,-0.017381461,0.00954867,-0.023236407,-0.01443434,0.0036577038,0.01723738,-0.008756222,-0.030361889,-0.018573407,-0.02996894,0.022175444,0.0020793572,0.043617383,-0.009961267,0.010059504,0.0069290074,-0.002729361,0.0019893062,0.014866585,-0.002310215,-0.027611243,-0.004175087,0.031147787,-0.0068111224,0.014015195,0.00663757,-0.0123582585,0.018966356,0.0023871674,0.024048502,-0.0063297595,0.0017715468,-0.007623218,0.0020875435,-0.021952773,-0.0028554322,-0.01257438,-0.007891733,0.01296078,0.023550766,-0.006745631,-0.0008767683,0.016752742,-0.013131059,0.006824221,-0.004803806,-0.0025721812,-0.020210696,-0.014237866,-0.020328581,0.007891733,0.0186389,0.011729539,0.023393586,-0.017184986,0.013360279,0.010832305,0.020354778,0.0030289849,-0.03316493,-0.0067718276,-0.024873696,-0.01599304,-0.021703904,-0.019267619,-0.039347332,0.023878224,0.027427867,-0.010694772,0.024231879,0.010301823,-0.0271659,0.029209238,-0.010858501,0.037461173,-0.0034972494,0.034579545,0.011500319,-0.0034055612,-0.0194117,0.015076158,0.015639385,-0.025581004,0.019503389,0.010249429,0.015940646,0.021743199,0.0016962315,0.019149734,-0.026222821,-0.027873209,0.0039098463,0.008874107,8.263194e-05,-0.028894877,-0.013988998,-0.023262603,0.022516,0.01933311,0.0011780295,-0.015416714,-0.017787509,0.0005812376,0.011185959,-0.0068111224,-0.0017797332,-0.01218798,-0.019044947,-0.0045058196,0.0050657727,-0.016661054,-0.003307324,-0.0028898153,0.02344598,-0.025436923,0.0031173984,0.0209573,0.0058418475,0.003608585,-0.014028293,-0.011768834,0.027532654,0.0022889301,-0.015731074,0.020210696,0.019359306,0.0162943,-0.015639385,-0.00799652,-0.026366904,-0.021546725,-0.030650051,0.0007957225,-0.0011649312,-0.004266775,0.01583586,-0.0103935115,0.011546163,0.003001151,-0.0143295545,0.013399574,0.0008309242,-0.006706336,-0.018429326,-0.002429737,0.009948169,-0.006837319,-0.028004192,0.0349201,0.035679802,-0.045293964,0.0037723142,-0.020669138,0.006169305,-0.0059499084,0.019817747,0.011546163,-0.023550766,0.042910073,-0.016936118,-0.02228023,-0.021913478,0.00799652,0.01482729,-0.022031361,-0.019896338,-0.00924086,0.00481363,-0.012220725,-0.022908948,-0.018036377,0.018206654,-0.0005972012,0.0002674921,0.014395046,-0.006948655,0.013386476,-0.012626774,0.013910408,-0.009070582,-0.019503389,0.008219191,0.0067521804,0.045241572,-0.026406199,-0.011657499,-0.0106292805,-0.0050952435,-0.026039446,0.020289287,-0.007583923,0.01591445,0.012345159,0.002293842,0.0040146327,0.011015681,-0.011788482,-0.0062053255,-0.012456495,-0.01567868,-0.02748026,-0.016307399,0.0022529098,0.034265187,0.0044763484,-0.009018188,-0.022764867,-0.0058091017,-0.04613226,-0.0044697993,0.014591521,0.019791551,0.01700161,-0.0035430936,0.008703829,0.003539819,0.004031006,0.018534113,-0.017905394,-0.02724449,0.0016643044,-0.018717488,0.012908387,0.029235434,0.0015865332,-0.0051672845,0.0009242497,0.0027146253,-0.005023203,0.026497887,-0.014185472,0.0012836347,-0.015010666,-0.0061463835,-0.02584297,-0.002418276,0.017119495,-0.017289773,0.006490214,0.0049478877,-0.008572846,-0.026445493,0.01017084,0.0054488983,0.009247409,0.032012276,0.013438869,-0.027506458,0.0009348921,0.006712885,0.015298829,-0.0072826617,-0.0070206956,0.032195654,0.0033564426,-0.008762771,-0.011958759,-0.009804087,-0.009011639,-0.012305865,0.014971372,0.0094045885,0.010400061,-0.0063002883,0.001778096,-0.015534599,0.015167846,-0.014617717,-0.012168333,-0.0047874334,0.003602036,0.033872236,-0.023354292,0.00025603108,-0.0015816212,-0.0016446569,-0.030702446,-0.004666274,0.012456495,-0.03384604,-0.0079310285,-0.01971296,-0.005589705,0.0013589499,-0.0036053106,-0.0035823886,-0.04175742,0.015194043,0.19909436,-0.021219267,-0.009758243,0.007321957,-0.0129738785,0.021507429,0.015940646,0.015272632,-0.00063444953,0.009594514,-0.0036937243,0.008258486,0.0013671364,0.0029831408,-0.014761798,-0.037382584,-0.017656526,-0.03586318,-0.028449535,-0.008192995,0.00985648,-0.01646458,-0.010124995,-0.0055373115,0.01793159,0.0010085701,0.023786535,0.00489222,0.02188728,0.020053517,-0.014958274,-0.0333745,0.019123537,-0.020682236,-0.021939674,0.009096778,-0.012345159,-0.011349688,0.009692752,0.0004744045,0.01141518,0.025646497,0.0011935837,-0.015338125,-0.007505333,0.022254033,-0.00060743425,-0.0006340402,0.0029438457,0.013288238,-0.0031501441,0.01909734,0.009011639,0.023105424,0.00045803163,-0.008893754,0.013045919,0.023459079,-0.020236893,0.0021219268,0.008644886,0.04084054,-0.040552378,0.01312451,-0.015573894,0.03471053,-0.01381872,0.0017961061,0.0069748517,-0.023799634,0.0034481308,-0.009790989,-0.021337152,-0.004528742,-0.006817672,-0.0143295545,0.030335693,0.010131545,0.030230906,0.037592158,-0.02352457,-0.011788482,-0.009980914,0.009515924,0.026052544,-0.018769883,0.011552712,-0.0046826466,-0.007741103,-0.0138318185,0.0038705515,-0.01947719,-0.008730025,0.014185472,0.019503389,0.012070095,0.008173347,0.0023806184,-0.02306613,-0.0073154075,-0.013393025,0.022188542,0.019935632,0.018311441,-0.014761798,0.009568318,-0.02002732,0.024284272,-0.008186446,-0.023236407,-0.008585944,-0.011513417,0.004486172,-0.002690066,0.0021284758,0.030466676,0.0014268975,-0.022044461,0.026877739,-0.026222821,-0.009712399,-0.01482729,-0.008677633,-0.0058745933,0.00038987945,-0.008978893,0.0016675789,0.019215224,-0.010996033,-0.029523596,0.022908948,-0.007616669,-0.005759983,-0.0027244492,-0.0029143747,0.018232852,0.015888253,-0.012377906,-0.012056997,0.0029978764,0.011087722,-0.00861869,-0.007361252,-0.018691292,0.005556959,-0.02755885,0.010786461,0.010419708,-0.019136636,-0.010963288,-0.015704878,-0.022555295,-0.012325512,-0.013779425,0.02818757,-0.01909734,-0.023773437,-0.0022119775,-0.011539614,0.03198608,-0.0038640022,-0.0030158865,0.042831484,0.0098957755,0.0041652634,-0.0036937243,-0.1676584,0.025816774,-0.0050493996,-0.023943717,0.012672618,0.012679167,0.03562741,0.023039931,0.009175368,0.029314024,0.005907339,0.0053310134,-0.036911044,-0.005442349,0.009345646,-0.01824595,-0.03874481,0.010485199,0.011546163,0.006418173,0.03329591,-2.7578088e-05,0.015141649,0.006631021,0.0028128626,0.009771341,0.007125482,0.007662513,-0.003392463,0.0054161525,-0.018769883,-0.0059368103,0.0015464196,0.007989971,0.009908874,0.019044947,-0.021088284,-0.00019432575,-0.003484151,0.012312414,0.0025754557,0.018023279,0.010570338,0.00663757,0.0121159395,0.014028293,-0.0046859216,-0.004695745,0.040080838,-0.010537593,-0.0027899407,-0.03562741,0.013026272,-0.020708432,0.017486248,0.008284682,-0.02048576,0.0017224281,-0.0085400995,0.017381461,-0.0047710603,-0.012207627,0.009764792,-0.00391967,-0.01110082,-0.0017813705,-0.018835373,-0.007944127,-0.021546725,-0.0010183938,-0.0049806335,-0.0009913786,0.002588554,-0.026366904,0.0070534414,1.5835656e-05,-0.030938216,-0.0009103327,0.022620786,0.0051378133,0.01366154,-0.014408144,-0.031252574,-0.0064083496,0.014408144,0.037487373,-0.017512444,0.024873696,-0.023511471,-0.0070599904,0.020538155,-0.021992067,-0.010033308,-0.012803601,0.013779425,0.015979942,0.0014449076,0.00093980395,0.0124826925,-0.034500957,-0.0034219343,-0.019005653,-0.015272632,0.005301542,0.03214326,0.005170559,0.005940085,0.03020471,0.010989484,0.025711987,-0.036544293,0.010157742,0.006824221,0.013962802,0.0008317429,0.0020433369,0.0027211744,-0.02934022,0.009967816,0.007858988,0.041574046,-0.00190253,-0.016451482,-0.0017355265,0.0038410802,-0.018049475,-0.08644886,-0.008946148,0.02158602,0.028344749,0.0036315073,0.014224768,-0.01653007,0.011382434,-0.014316455,0.025869168,0.007459489,-0.035679802,-0.013727032,-0.00900509,0.021337152,0.012246923,0.005635549,-0.002871805,0.006644119,0.02229333,-0.019830845,-0.004495996,-0.03400322,-0.015822763,-0.0054750945,0.011729539,-0.030597659,0.015272632,0.009928521,-0.0075249807,-0.015822763,-0.019778453,0.003991711,-0.02568579,-0.007498784,0.0045123687,-0.0022463605,-0.014368849,0.015469108,-0.020616744,-0.015717976,-0.0029667679,-0.020171402,-0.02421878,0.007852439,-0.008612141,-0.04021182,0.004342091,0.008710378,-0.027192097,-0.016949216,-0.015194043,-0.014028293,0.007079638,0.017839901,-0.013805621,0.021795593,-0.024598632,-0.012011153,0.0062839156,-0.024886794,-0.011795031,-0.020289287,0.042045586,0.009712399,-0.0325886,-0.020459564,-0.005612627,-0.0019827571,-0.023786535,-0.02273867,-0.0030158865,-0.035522625,0.020839415,-0.015809663,0.0015791653,-0.035339247,0.0014383584,0.015023765,-0.0020171402,-0.014250964,-0.0110025825,0.02166461,-0.0060514207,0.019320011,0.015154748,0.022699377,0.007944127,-0.018023279,-0.010445904,0.00074169197,0.030623855,-0.010118446,-0.007786947,0.008795517,0.012594027,-0.009869578,0.0074070957,0.008959246,-0.0029880526,-0.00861869,-0.009227761,-0.07984731,-0.0019418249,0.008946148,0.00035938495,-0.006457468,-0.010648929,-0.008815165,-0.009561769,-0.001464555,0.015744172,-0.02530594,0.0032369206,-0.020236893,-0.009136073,-0.0005787817,-0.03858763,0.00038210236,-0.0044992706,-0.009640358,0.021874182,-0.0071713263,0.0055242134,0.017748214,0.013111411,-0.025908463,6.845915e-05,-0.014408144,0.0041587143,-0.036675274,-0.018337637,0.021834888,-0.022948245,0.008081659,0.017853001,0.017970884,-0.021376446,0.0025246998,0.026720557,0.013190001,0.027899407,-0.0105179455,-0.020145206,0.008192995,-0.003415385,-0.015456009,0.0032598425,-0.025358334,0.005419427,0.035758395,0.024716517,0.034579545,0.017669624,-0.019765355,0.0046629994,-0.019071143,-0.013727032,0.021677708,0.00045066382,0.0011035328,0.004597508,0.030073727,0.017983984,0.0271659,-0.0065655294,-0.0060219495,0.012954231,-0.0084287645,-0.009889226,0.006188953,-0.02584297,0.0009267056,-0.0048627486,0.009024737,0.021363348,0.00663757,0.009954718,-0.010963288,-0.020760825,0.0010143006,0.003250019,0.0016667603,0.032876763,-0.019765355,0.009994012,0.0067325328,0.018259048,-0.03602036,-0.0053932304,0.0067521804,0.004938064,-0.00962071,0.02034168,0.027925603,0.009889226,-0.0032107239,-0.009869578,-0.018363835,-0.0045320163,-0.009535572,0.013006625,0.00207772,-0.0048561995,-0.008861009,-0.034029417,-0.029314024,0.019922534,-0.022935146,-0.029471204,-0.019293815,0.018678194,-0.022424312,0.014853487,0.015023765,0.00489222,-0.006552431,0.0012566193,-0.0070206956,0.00039520065,-0.029392613,0.009679653,-0.016477678,0.0178661,0.020800121,-0.013844917,0.008048913,0.00027792982,0.015809663,-0.020053517,-0.015495304,-0.018625801,0.011074623,0.008625239,-0.02601325,-0.0067194346,0.0060350476,-0.012823248,0.010262528,0.022791063,-0.02740167,0.04757307,-0.018350735,0.0061103627,0.015416714,0.0036446056,0.026183527,-0.010688223,0.007341604,-0.026170429,-0.009804087,-0.013766327,0.0032270967,-0.006156207,-0.027663637,-0.018075671,-8.580418e-05,-0.017276675,-0.009863029,-1.9404433e-05,-0.004053928,0.005245874,0.0138318185,0.019346207,-0.014473636,-0.0029372966,-0.005946634,0.021677708,0.017983984,-0.0123582585,-0.023406684,-0.0034743275,-0.02087871,-0.030938216,-0.024978483,0.009090229,-0.034422364,-0.023590062,-0.0006397707,-0.009411138,0.029156845,0.014499832,0.005052674,-0.024231879,-0.002876717,0.010609633,-0.009345646,0.025659595,-0.011965308,-0.010786461]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('421136c4-a5da-11ee-8347-8bdd73c96423', 'Culture', 'this article is about Streaming', '[0.0075920206,-0.00085658394,0.021372667,-0.02339903,0.017114563,0.011809049,-0.019086162,-0.0020811309,-0.01610138,-0.033024263,-0.0038165478,0.016334139,0.008345061,-0.005596462,-0.00012397362,0.0113161495,0.027164236,0.0017200137,0.032914728,-0.024371138,-0.029491816,0.027396994,-0.01169267,0.002524398,-0.0014359119,0.022700757,0.009721072,-0.030395465,0.0012519304,-0.0076673245,0.013712188,-0.015991848,0.0033989523,-0.028889384,-0.012185569,-0.025726613,0.0014564494,-0.020017194,0.006469305,-0.014061325,0.007913774,0.0054527,-0.02048271,-0.028642934,-0.0014170859,0.023440106,0.019784436,0.0012904381,0.024891421,-0.003604327,0.025849838,0.00037095818,-0.041923836,-0.013712188,0.003932927,0.0048365756,-0.025083104,0.00887219,0.022659682,-0.018401578,-0.0042889095,-0.003025855,-0.03140865,0.0016823616,-0.029793033,-0.00074790645,-0.0072908043,0.017881297,-0.0033476087,-0.00064650265,0.032668278,0.00033608725,-0.005634114,0.016306756,0.016936572,-0.024152072,-0.009200789,-0.008728428,0.035844743,0.0076330956,0.016471056,-0.016388906,-0.0040150764,0.013445201,0.008796886,0.023782399,-0.0068526715,0.015485257,0.011466757,0.006229701,0.012904381,0.0039808475,0.0032055578,0.010309814,-0.00081037456,0.029984716,0.013869642,0.019551678,-0.00982376,-0.03160033,0.007770012,0.008837961,-0.02304305,-0.0072360374,-0.025849838,0.024754506,0.00013787921,0.01451315,0.040171303,-0.0019219655,-0.011542061,-0.0026578917,0.010124976,-0.038035408,0.0061407057,-0.005921639,0.011911737,-0.009228173,0.005103563,-0.017675921,0.014431,0.029546583,0.00211536,-0.007954849,0.020373177,0.006041441,-0.03663886,-0.02215309,-0.010241355,0.008078074,0.014773292,-0.009604693,0.002156435,0.013404126,-0.011966503,0.02354964,0.008242374,0.017689614,-0.022947207,-0.018223587,0.009180252,0.020605935,-0.03606381,-0.026931478,-0.013041298,-0.0025945678,0.013260364,0.012678469,0.015047125,0.031709865,0.014253009,-0.016895497,0.010693179,0.008228682,0.002823903,0.014691141,0.0056409603,-0.004781809,-0.0029248788,0.008995415,0.0065719923,-3.2624637e-05,0.007728937,-0.004323139,0.0075235623,0.02678087,0.02671241,0.018141437,0.0022865057,-0.0034811022,-0.03228491,0.02056486,-0.03406483,0.011863816,-0.0050796024,0.029163217,-0.004703082,0.025069414,-0.01264424,-0.015362033,-0.0144994585,0.031709865,0.0300121,0.04129402,-0.003987693,0.019195694,-0.0025825878,-0.017292555,0.0030224319,-0.000204626,0.015403108,0.0127126975,-0.00510014,-0.005271286,-0.67121947,-0.00808492,-0.0025757418,0.00783847,0.010145513,0.0030771985,0.011720053,0.008242374,-0.005014567,0.02628797,0.0007295083,0.020277334,0.005764185,-0.01239779,-0.009262402,-0.003198712,0.011124467,-0.034858942,0.0010722274,0.0020879768,-0.0016198935,0.020441635,-0.032613512,-0.0028102114,-0.015964465,-0.0010636701,-0.0031319652,-0.00028945005,-0.012219799,0.006705486,-0.037761573,0.014691141,0.0064864196,0.023987772,0.031463414,-0.0015403107,0.003908966,0.024165764,0.008454595,0.036967456,-0.012945456,-0.00065933855,-0.0022402965,0.0018021635,-0.0055656563,0.008509361,0.010172897,-0.018483728,0.006229701,-0.012144495,0.010569954,-0.0006409404,0.025110489,0.022180475,0.026096286,0.011391453,0.019921353,-0.006739715,0.030943131,0.010973859,-0.028314333,0.021139909,-0.014814367,-0.0004158839,-0.013137139,0.016936572,0.0014307775,-0.0065240716,0.018921861,-0.01085748,-0.004364214,0.0059524453,-0.024918804,-0.004545628,-0.0071881167,0.015362033,0.015225116,-0.023659173,-0.010090747,0.011672133,-0.009940139,-0.011145004,-0.008995415,-0.0069622044,0.026890403,-0.007427721,0.00021329024,-0.0034554305,0.0072428836,-0.006506957,0.014211934,0.005582771,0.005531427,0.008550436,0.022577532,0.03242183,-0.0010645259,-0.002635643,0.008632586,0.0015463008,-0.013164522,-0.025261097,0.006441922,-0.005504044,0.012028116,-0.00039769968,-0.031162197,0.005089871,0.027164236,-0.008468286,0.011487295,0.0144994585,-0.008290295,-0.01692288,-0.014061325,-0.033352863,0.025644463,0.0054458543,-0.008064383,-0.0113983,-0.01741578,-0.019031394,0.00158053,0.004894765,-0.009091256,0.046250395,-0.01500605,0.0062639304,-0.018401578,-0.0012313928,-0.0050419504,-0.012041807,0.028423868,-0.00334932,0.01684073,0.009351398,0.022509074,-0.017319938,0.020948226,-0.028067885,-0.018346813,0.0022368734,-0.009111794,-0.012384098,-0.0134520475,-0.022303699,-0.020879768,-0.014170859,-0.015964465,0.0066507193,-0.010467268,-0.020469017,0.006127014,0.010001751,-0.0037994331,-0.0065754154,-0.0057984143,-0.021235751,-0.015444182,-0.015457874,-0.00019606872,-0.0054321624,-0.025028339,-0.012137649,-0.011713208,0.01610138,-0.0070375088,-0.011281921,-0.0059455996,0.006435076,-0.0014085285,0.009556772,0.022276316,-0.003019009,-0.00037031638,0.017634846,-0.006048287,0.009365089,0.0012921495,-0.0024799004,-0.022687066,0.0055793477,-0.01890817,-0.011672133,0.015978158,0.012651086,0.019291537,0.022290008,-0.009502006,0.011754283,0.012904381,0.018278355,-0.02231739,0.0010046249,-0.02281029,0.002940282,-0.010261892,-0.00013573989,0.026890403,0.0035803667,0.045565814,0.0018877364,0.027054703,-0.0040698433,0.019976119,-0.03009425,-0.0023943274,-0.003997962,0.010467268,0.004788655,0.042279817,-0.012336178,-0.02339903,0.0035084856,-0.004193068,0.0076536327,-0.0038541998,-6.220074e-05,-0.018962936,0.013691651,-0.017799146,-0.028615551,0.0122471815,0.022906132,-0.032312296,0.023453798,-0.0030960245,0.027520219,0.01467745,-0.0414857,-0.009755301,0.014786983,-0.0035735208,0.011754283,0.011186079,-0.008036999,0.026904095,-0.009734764,0.02786251,-0.014129784,-0.008023308,0.036447175,0.019373687,-0.014088709,0.029683499,-0.0032654589,0.026438577,0.025165254,-0.0141024,-0.022577532,-0.018114055,0.003352743,-0.014773292,0.0025346668,0.008427211,0.0017833376,-0.007400337,-0.012514169,0.009371935,0.006246816,-0.01734732,-0.0028512862,0.020879768,-0.0008240662,-0.006832134,-0.004425826,-0.009775839,-0.010645258,-0.0049666464,-0.012432019,-0.026164746,-0.020181494,0.019195694,-0.020866076,-0.0063358117,0.015512641,0.009584156,0.01915462,-0.0018329697,0.00854359,-0.0035837896,-0.017210405,0.008851652,0.031463414,-0.025808763,-0.038008023,-0.016416289,-0.021276826,-0.03548876,-0.0058257976,-0.0035392917,0.012418328,0.010679488,0.016320448,0.0029368591,0.016484749,0.033955295,-0.0039055434,-0.0075441,0.004193068,-0.0036385562,-0.0029488392,-0.00377205,-0.003885006,0.02330319,-0.0059387535,-0.013342514,-0.016293064,-0.0075167166,-0.03699484,-0.0060619786,-0.0040184995,-0.02396039,0.024781888,-0.0061817802,-0.0010508342,-0.015060816,0.040089153,0.02563077,-0.016429981,-0.009098102,-0.0062981592,-0.0418143,0.0124799395,0.109916575,-0.013458893,0.010234509,0.03192893,-0.017388396,-0.037788957,-0.013575272,-0.019455835,-0.0024285566,-0.031381264,-0.0011971637,0.009597847,0.004326562,0.0039021205,0.019715978,0.012349869,-0.008591511,-0.0012861595,-0.015964465,-0.0035940583,0.033024263,-0.019784436,0.004275218,0.026356429,0.021920333,-0.031956315,0.03151818,0.00064906984,-0.0035495604,-0.017662229,-0.012274565,-0.0014427577,-0.004090381,-0.0054732375,0.009057027,0.042717952,0.014170859,0.016635356,0.011124467,0.0051925587,0.014362542,0.0044155573,0.008940648,-0.0031935775,0.0065240716,-0.03740559,-0.0071128127,0.03830924,0.002524398,-0.02222155,0.01600554,-0.008208144,-0.040362988,-0.0018466614,0.039267655,0.010624721,-0.00012825226,0.029847799,0.007831625,-0.03376361,-0.00095156976,-0.03135388,-0.014554225,-0.005740225,0.010604184,-0.0075988662,0.0066815256,0.00092760933,0.01111762,0.0026596033,-0.008324523,-0.005021413,-0.03839139,0.0034109326,0.015033433,-0.011583136,0.033708844,-0.020332102,-0.0301764,0.010131822,-0.020017194,-0.010919091,-0.0025158408,-0.03631026,0.0008933802,-0.0147596,-0.015101891,0.011261383,-0.02156435,0.019305227,0.008167069,0.015238808,-0.006387155,-0.0013400704,0.022385849,0.025014646,0.021865567,-0.01277431,0.017374706,-0.02645227,-0.0005861738,-0.025110489,-0.008940648,0.011829587,0.0024816117,-0.013130293,0.0041451473,-0.007982233,-0.0099196015,-0.008851652,0.004035614,0.010302967,-0.015498949,0.008933802,0.011261383,0.003487948,-0.018949244,0.018114055,-0.025220022,0.00271437,0.02354964,-0.042909633,0.0013563292,0.019099854,0.012144495,0.009837451,-0.008851652,-0.032750428,-0.0019818665,-0.003693323,0.0047270423,0.03798064,-0.029081067,-0.020249952,-0.027684519,-0.026739795,-0.0068629403,0.00767417,-0.021947717,-0.009502006,-0.029409666,-0.0072360374,0.01616984,-0.0044189803,0.008434057,-0.034448195,-0.004039037,-0.011987041,-0.024069922,0.007776858,-0.024946189,-0.013876488,0.0018072979,0.014335158,-0.011076545,-0.023070432,-0.008139687,-0.036611475,0.024371138,0.014691141,0.03913074,0.0010148936,0.009727918,0.01144622,0.004507976,-0.0053465897,0.011672133,-0.012534707,-0.014526841,-0.0051104086,0.017032415,-0.0012211241,0.016361523,0.017224098,-0.002414865,0.023659173,0.0033339171,0.027588677,-0.025137872,-0.004737311,-0.005959291,0.0013991155,-0.018456345,-0.011603674,-0.010528879,-0.01036458,0.025425395,0.010275584,0.005059065,0.0059558684,0.024398522,-0.0035974812,0.0051172543,0.0017610886,-0.005894256,-0.016128765,0.0068013277,-0.021851875,0.0036796313,0.028423868,-0.008618894,0.031956315,-0.008153378,0.01882602,0.0047646947,0.024480673,-0.0069964337,-0.03425651,-0.0039021205,-0.01148045,-0.013814876,-0.019346302,-0.016279373,-0.026726102,0.012343023,0.016758582,-0.008659969,0.027396994,0.008214991,-0.026233204,0.020975608,0.007701554,0.026753485,-0.0009370224,0.029573966,0.008201299,-0.0036009043,-0.022687066,0.008440902,0.011500987,-0.02404254,0.021591734,0.017758071,0.009679997,0.017073488,-0.0032637473,0.025589695,-0.026219511,-0.023207348,0.017429471,0.02396039,0.008735273,-0.024905114,-0.003850777,-0.025261097,0.032065846,0.00404246,0.015800165,-0.018921861,-0.013041298,0.0053431666,0.022180475,0.003393818,0.0076262495,-0.024412213,0.008516207,0.004141724,0.011186079,-0.016772272,-0.010802712,0.002058882,0.019620135,-0.035844743,-0.013445201,0.028998917,0.008769503,-0.0071744253,-0.00805069,-0.008550436,0.026438577,-0.003963733,-0.015553716,0.018962936,0.014828058,0.014841749,-0.014348851,-0.003472545,-0.030970514,-0.014814367,-0.023755014,0.01807298,-0.0041862223,0.0076673245,0.013205597,0.007687862,-0.00029544014,0.009830605,-0.010131822,0.009810068,-0.014294083,-0.015991848,-0.022495383,-0.00949516,0.023604406,-0.0062228553,-0.017949754,0.033955295,0.032558747,-0.033270713,0.020674393,-0.0034075095,-0.0034776793,-0.004857113,0.032859962,0.013766955,-0.025753995,0.042800102,-0.02189295,-0.018127745,-0.007865854,-0.0050179902,0.0095704645,-0.01692288,-0.0022248933,-0.018538496,0.025315862,-0.019715978,-0.019455835,-0.021044068,0.018305738,-0.0017747802,-0.01451315,0.023987772,-0.021030376,0.018223587,-0.008817423,0.021167293,-0.0138422595,-0.0028256145,-0.012753773,0.0036282875,0.023125198,-0.038446154,-0.009549927,0.011459912,-0.012582627,-0.030203782,0.005517735,-0.009905909,0.012767465,0.009892218,0.0018124323,0.008112303,0.00291461,-0.004234143,-0.014047634,-0.017429471,-0.0047578486,-0.020140419,-0.00041096346,0.0055143125,0.025767688,0.008324523,-0.0032483442,-0.03373623,-0.0060311724,-0.046469465,0.004141724,0.021194676,0.023631789,0.021495892,0.01215134,0.011726899,0.00033608725,0.0035427148,0.016936572,-0.022180475,-0.006113322,-0.0012767465,-0.0140339425,0.0029710883,0.013493122,-0.00520625,0.0018654874,0.010186588,-0.0016772272,0.02072916,0.03683054,-0.011459912,0.003123408,0.002565473,-0.0070854295,-0.010029134,-0.0036282875,0.0019510603,-0.023809781,0.018839711,0.0065343403,-0.0014581608,-0.0211536,0.005490352,0.0073934915,0.0053157834,0.020017194,-0.011767974,-0.015129275,-0.008762657,-0.0045627425,0.0054698144,0.0054698144,0.0007436278,0.04077374,0.0026904093,-0.009474622,-0.007845316,0.00010568243,-0.009679997,-0.0070512,0.005545119,-0.0053294753,0.008173916,0.0036625166,-0.0088311145,-0.0027092355,0.00377205,-0.015416799,-0.0059764055,0.0023019088,-0.009454085,0.013253518,-0.03666624,0.008358753,0.00018473032,0.0030771985,-0.026329044,-0.0032603245,-0.0055861934,-0.03209323,0.0054629687,-0.025069414,-0.0012065767,-0.004518245,0.0005737658,-0.0049563777,-0.036885306,0.004316293,0.19956951,-0.020961918,-0.006130437,0.011952811,-0.0017542428,0.014362542,0.021167293,0.01364373,-0.007886391,0.016032923,0.003123408,0.014047634,0.0007384934,0.0013024183,0.0021838183,-0.028807234,-0.021057758,-0.037131757,-0.038008023,-0.010248201,-0.001567694,-0.023946697,-0.016607972,-0.011932273,0.012117111,-0.013068681,0.025000954,0.010453575,0.017443163,0.022865057,-0.012240336,-0.02769821,0.003292842,-0.017128255,-0.021331592,0.0037001686,0.008030153,0.0053123604,0.00290263,-0.002553493,0.011042316,0.0290263,0.0008805443,-0.017730689,-0.004593549,0.01098755,-0.014581609,0.006715755,-0.008509361,0.017141948,0.0017833376,0.03143603,0.0030018946,0.023412723,0.00018066561,-0.0033099565,0.0024730545,0.027342226,-0.030039482,0.01310291,-0.0032414983,0.028588166,-0.027643444,-0.004545628,-0.012616856,0.03212061,-0.015800165,0.009796376,-0.0018072979,-0.018456345,0.00085829536,-0.016361523,-0.016115073,-0.0046072407,-0.013636884,-0.010391963,0.032914728,0.013048143,0.040499903,0.036940075,-0.021358976,-0.0058908327,-0.006079093,-0.0019202541,0.025233712,-0.03614596,0.015690632,-0.014526841,-0.015512641,0.00043385418,0.017073488,-0.01451315,-0.013547889,0.008618894,0.015896007,-0.0032911305,0.016156148,-0.0005433874,-0.014389925,-0.0008386136,-0.015608482,0.041102335,0.022043558,0.019004012,-0.020030886,0.019798128,-0.034283895,0.025493855,-0.0047749635,-0.026643952,-0.010556263,-0.021509584,0.014376233,-0.015964465,-0.002084554,0.01682704,0.0049974527,-0.023522256,0.026589187,-0.022467999,-0.020660702,-0.018565878,-0.008043845,-0.0077837035,-0.008290295,-0.021756032,0.00924871,0.016813347,-0.035242308,-0.019017704,0.029327516,0.0062160096,-0.0001568122,-0.003044681,-0.0082492195,0.021591734,0.022372158,-0.010789021,0.0012082882,0.0017448298,0.016676432,0.0009532812,-0.0025894335,-0.008557281,-0.00040219224,-0.017689614,0.013582118,0.0016139033,-0.025178947,-0.0046038176,-0.0017114563,-0.021208368,-0.0084819775,-0.0083655985,0.03168248,-0.022933515,-0.022098325,-0.017949754,-0.022454308,0.033215944,-0.006349503,-0.0047612716,0.035105392,-0.0024970148,-0.0018723332,-0.00024644972,-0.17821053,0.006513803,0.0009267536,-0.015909698,0.0051617525,0.014239317,0.016566897,0.013321976,0.008256066,0.017853912,-0.0020931112,0.0069211298,-0.040198687,-0.017922372,0.014773292,-0.015718015,-0.026027828,0.018935554,0.019537985,0.00783847,0.038610455,-0.008509361,0.016950265,-0.001589943,-0.0042170286,-0.004905034,0.0025825878,0.023357956,-0.013205597,-0.008605203,-0.012034961,-0.012870152,-0.0023412723,0.005692304,0.0028273258,0.0147596,-0.022084633,-0.01193912,0.009406164,0.024836656,0.019195694,0.010138667,-0.0068492484,0.0040048077,0.026014136,0.018538496,0.0031918662,-0.012671623,0.034393426,-0.0109054,-0.004898188,-0.034530345,-0.0055930396,-0.0096868435,0.0026596033,0.0127126975,-0.020455327,0.0050419504,-0.003974002,-0.0016789387,2.4000501e-05,-0.022098325,0.017374706,-0.020058269,-0.019428452,0.00022013608,-0.01402025,0.00012429451,-0.022440616,0.006308428,-0.016758582,-0.00052884,-0.0019750206,-0.023453798,0.005144638,-0.0035495604,-0.027602369,0.0075441,0.023152582,0.020195184,0.011281921,-0.0013229558,-0.03135388,0.011357225,0.0068424027,0.028697701,-0.009152869,0.023166273,-0.02479558,0.0015351764,0.030641915,-0.014088709,-0.0012553532,-0.0090638725,0.023590714,0.0066541424,-0.0058737183,-0.0018723332,0.002505572,-0.02704101,0.00024217108,-0.015567407,-0.009146023,0.0018689104,0.033188563,0.009502006,0.009755301,0.02464497,0.029793033,0.010720563,-0.04088327,0.010029134,0.016197223,-0.0017987406,0.0010362868,0.010138667,0.0069519356,-0.042279817,0.010631567,-0.016429981,0.054930903,0.0057607624,-0.021290516,-0.0010859191,-0.00588741,-0.017128255,-0.07344202,-0.016717507,0.018812329,0.012329332,-0.004104072,0.015307265,-0.020688085,0.024864038,-0.019798128,0.020715468,0.010467268,-0.0313265,-0.020044576,0.0019288113,0.012240336,0.0020554592,-0.00039534643,-0.0075783287,0.0059113703,0.026821945,-0.008516207,-0.0006897169,-0.022947207,-0.018045597,0.002272814,-0.00020548173,-0.026014136,0.0049529546,0.021701267,-0.012959148,-0.014992358,-0.022919824,0.0037001686,-0.032887347,0.0026955437,-0.0013657422,-0.021358976,-0.029053682,0.020291027,-0.023535948,-0.009885372,0.008605203,-0.013931255,0.0027691363,-0.002861555,-0.011685824,-0.035269693,0.009015952,0.011925428,-0.025411705,-0.014718525,-0.027013628,-0.0076330956,-0.020619627,0.027985735,-0.023535948,0.011603674,-0.024056232,-0.018127745,-0.008105458,-0.01467745,-0.013876488,-0.008810577,0.048742276,0.008653124,-0.030368082,-0.021687575,-0.007845316,-0.006897169,-0.0049940296,-0.021249441,0.0009849431,-0.019757053,0.02072916,-0.016443674,-0.006431653,-0.01882602,-0.0017106007,0.0064966884,0.007763166,-0.0127126975,-0.019031394,0.028314333,-0.027588677,0.030039482,0.0014316333,0.025083104,0.017662229,-0.023823474,-0.017949754,-0.00014761311,0.017675921,-0.008906419,-0.009926447,-0.0020674393,0.00210338,-0.007283958,-0.0010593915,0.0033065337,0.010864325,-0.005504044,0.0030087403,-0.08877666,-0.013636884,0.0064213844,0.013719034,-0.0063460805,-0.009221327,-0.0027092355,-0.0061749346,-0.006000366,0.024015157,-0.020427944,-0.0012322486,-0.00024516613,-0.0010362868,0.004052729,-0.03830924,0.008570974,-0.01028243,0.0021957986,0.007790549,-0.0070854295,0.011213462,0.019921353,0.0056409603,-0.018839711,0.0051241005,-0.013178214,0.012185569,-0.036173344,-0.0076673245,0.015512641,-0.02040056,0.022728141,0.012514169,0.017730689,-0.02695886,0.014773292,0.036803156,0.012959148,0.03009425,-0.006948513,-0.016443674,0.0005600741,0.010426193,-0.0028786696,0.010597338,-0.012041807,0.003097736,0.03814494,0.022837674,0.035324458,0.017963447,-0.0043436764,0.0035837896,-0.019811818,-0.023700248,0.018894479,0.004946109,-0.008153378,0.011651595,0.040061772,0.028177418,0.027684519,-0.008742119,-0.0066062217,0.014047634,-0.01165844,-0.008721582,-0.0049187257,-0.028752467,0.0096868435,-0.014581609,0.018374195,0.012521015,0.008454595,0.013773801,-0.021578042,-0.03406483,-0.002175261,0.009132331,0.009734764,0.016881805,-0.016416289,0.01658059,0.011631058,0.037761573,-0.01601923,0.008666815,-0.0109670125,-0.007722091,-0.0117816655,0.010159205,0.03401006,0.019811818,0.0020623049,-0.007256575,-0.029382283,0.0077973953,-0.002669872,0.003956887,0.0062502385,0.010255046,-0.0047681173,-0.036173344,-0.020770235,0.016279373,-0.024179455,-0.021605425,-0.023412723,0.025151562,-0.020140419,0.004350522,-0.0027759823,0.006082516,-0.0023720786,0.0046483157,0.0062673534,0.00854359,-0.022098325,0.0059455996,-0.008427211,0.01397233,0.012260874,0.0031182736,0.016731197,0.00075432437,-0.0019202541,-0.0211536,-0.011952811,0.0018757562,0.008550436,0.017361013,-0.011186079,-0.0052028275,-0.0065685697,-0.009864834,0.004237566,0.014540534,-0.016868114,0.070922755,-0.010528879,0.014458383,0.0106178755,-0.011952811,0.020852385,0.008502515,0.021249441,-0.024959879,-0.011254537,-0.006116745,-0.0053055147,-0.018812329,-0.029163217,-0.019893968,0.00978953,-0.015786473,0.010433038,-0.0095704645,-0.0012065767,0.01592339,0.012616856,0.015937082,-0.012349869,-0.011952811,0.004816038,0.0147596,0.0068047503,-0.0051343692,-0.01193912,-7.391352e-05,-0.014431,-0.040664203,-0.029382283,0.0072497292,-0.00651038,-0.020948226,0.002370367,-0.003037835,0.032558747,0.011206617,0.0027349072,-0.029135833,0.00080224517,0.008468286,-0.005613577,0.007948004,-0.012630548,-0.0025380899]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('42160df2-a5da-11ee-8347-e3ad031956a9', 'Gaming', 'this article is about PC Gaming', '[0.020909308,0.002906935,-0.0003176439,-0.0360692,-0.003393573,0.0007791037,-0.02445435,-0.0139223505,-0.0018611475,-0.034934785,0.028411908,0.027432187,-0.013767658,0.012227175,0.0048438176,0.017119335,0.024144964,-0.0012117601,0.03367146,-0.007966679,-0.0011142715,-0.006671126,0.0017902467,0.0035257062,-0.010751149,0.006207048,0.0188983,-0.035527777,0.0075348276,0.0061554834,0.009874556,-0.004228269,-0.0027474083,-0.031119032,-0.010912286,0.005833207,0.0016871181,0.008701469,0.00835341,8.454726e-05,0.018073274,0.0153790405,-0.011228118,0.010880059,0.0057945335,0.01573999,0.020522576,0.0028521481,-0.017016206,-0.0022559364,-0.0005257137,0.01972333,-0.037100486,-0.010377307,-0.0005514959,-0.017377155,-0.014914962,0.005672069,0.012439878,-0.015598189,-0.014077043,0.009455596,-0.015804445,0.0076895203,-0.031918276,0.0047052386,-0.0017741328,0.009764981,-0.00087820383,-0.02373245,0.02820565,0.04274677,0.005140312,0.012375423,0.003213098,-0.017970145,-0.008230945,-0.0043797395,-0.0025073122,-0.001833754,0.0019658874,-0.019220578,0.0035901617,0.012040255,0.0153145855,-0.00045078443,0.0034709193,-0.016874405,0.012762154,-0.0043765167,0.003735186,0.024170747,0.010996078,0.0022994438,-0.00805047,0.03862163,0.00577842,0.009829437,0.01252367,-0.0073994715,0.019916695,0.023332829,-0.021489406,-0.0130135305,-0.030938556,-0.00074566755,0.006703354,0.0066002253,0.04589219,-0.01083494,-0.0292885,-0.0038093098,0.019156123,-0.016397435,0.005127421,0.0008113314,0.018949866,-0.011086316,0.009745645,-0.031015903,0.03547621,0.023036333,0.02239178,0.0065422156,0.011047643,0.0044345264,-0.027922047,-0.004366848,0.013380925,0.0036385031,0.024737954,0.00071061996,-0.00085806154,-0.0003970045,-0.0016484449,-0.0031019126,0.018266639,0.012755709,-0.012504333,-0.02673607,-0.001036925,0.031995624,-0.009184884,-0.031995624,-0.00719966,0.022082394,0.01464425,0.0036578397,0.024621934,0.0026845643,0.00799246,0.011827552,0.027200148,-0.0041025816,0.0032034297,-0.011453711,-0.0051080845,0.006812928,0.007876441,-0.027251711,-0.0029391628,-0.0082954,0.0013527562,-0.011666414,0.0069934027,0.034470707,0.04700082,0.031299505,0.0035804934,-0.006606671,-0.0033130038,0.017402938,-0.032150317,0.014528231,-0.0038254235,0.0058364295,-0.011176554,0.020406555,-0.020303428,-0.0008363078,-0.024248093,0.0031051354,0.038028643,0.031789366,-0.0127686,0.0019111003,0.005046852,-0.013651638,-0.0015791554,0.010003466,0.022146849,0.036249675,0.01210471,-0.012659026,-0.68106073,0.0012310967,-0.0048857136,0.016681038,-0.013509836,0.020857744,0.0317378,0.010145268,-0.010029249,0.02168277,0.0031615337,-0.0052176584,0.008462984,-0.0034934785,-0.006671126,-0.024725063,0.0064133047,-0.017106444,-0.014334864,-0.0087079145,-0.024557479,0.0150052,-0.005485148,-0.006567998,0.00080972,0.0142188445,0.004824481,-0.00093057373,0.008250281,0.008385638,-0.013535618,0.018576024,0.0058396524,0.012742817,0.028231433,-0.018859629,0.010332189,0.024041837,0.005887994,0.049372777,-0.0134582715,0.0043088384,-0.0018498679,0.01996826,-0.022830077,-0.0013970692,0.02650403,-0.019194797,0.013181114,0.004025235,-0.0034290233,0.0007646013,0.011698642,-0.015765773,-0.0058944393,0.019452617,0.02735484,0.009990576,0.012981302,0.003999453,-0.02154097,0.023771124,-0.03898258,-0.0037126266,-0.018936975,0.01222073,-0.0041638142,-0.015533733,-0.008952845,-0.025408288,-0.010738257,-0.0027345172,-0.016423216,-0.0070900857,-0.0014574961,0.014605577,0.023551976,-0.014695814,-0.018550243,0.010145268,0.0025620991,0.002977836,-0.01708066,-0.035501994,0.04914074,-0.020406555,-0.018614698,0.005459366,0.0068322644,0.01476027,0.02203083,0.0027699675,-0.012601016,-0.0006211882,0.0035772705,-0.0033065581,-0.007850659,0.0058525437,-0.0060910285,0.016616583,0.0021189689,-0.010873613,0.0187565,0.0058686575,0.03351677,0.011956463,-0.014631359,0.026220426,0.016964642,-0.022868749,0.011305464,-0.0059105535,-0.02758688,0.011021861,0.01240765,-0.034109756,0.007850659,-0.018021708,-0.007844213,-0.0031276946,0.027612662,-0.0065873344,0.006171597,-0.0051596486,-0.01839555,0.027818918,-0.01633298,-0.010809158,-0.030036181,-0.022920314,0.015946247,-0.020896416,0.01113788,-0.014927853,0.0026362229,-0.006703354,0.005623727,-0.0056946278,0.024531696,-0.022675384,-0.02614308,-0.0151470015,-0.015211456,0.013406708,-0.007554164,-0.029391628,-0.011666414,-0.014167281,0.0025395397,0.000114408205,0.006261835,-0.015288803,0.015327476,0.019581528,-0.020909308,-0.008404975,0.005527044,-0.0037706366,-0.016848622,-0.010512664,-0.006316622,-0.0012504333,-0.028515035,0.0023751787,-0.013019975,0.0051048617,-0.037280962,0.029236935,-0.016191177,-0.010261288,0.033155818,0.020767506,0.007869995,0.011788879,-0.02686498,0.006026573,-0.008630568,0.00043547628,-0.0029955613,0.0033452313,-0.008778815,-0.014515339,-0.014193063,0.0035224836,0.014708705,-0.007831322,0.026052842,0.031119032,-0.0088561615,0.013883677,0.017261136,0.010319297,-0.020110061,-0.011350582,-0.019362379,-0.008765924,0.008566113,0.006426196,0.01767365,0.008301846,0.013690311,-0.017003315,0.013032867,-0.017518958,0.0066969083,-0.035424646,0.010113041,-0.007915114,0.019065885,-0.0070385216,0.0203421,-0.010461099,-0.022353107,0.0073672435,0.008160044,0.014850507,-0.018472897,0.0049308324,-0.023809798,-0.009236448,-0.008211608,0.000684435,-0.007567055,0.007019185,-0.010254842,0.039266184,0.011866225,0.024557479,-0.0030229548,-0.040735766,-0.020883525,0.0153145855,-0.014205954,0.004402299,0.013007085,0.015559516,0.036043417,-0.016629474,0.023332829,-0.01271059,-0.008250281,0.03013931,0.01367742,-0.00420571,-0.00088464934,0.01144082,0.022894531,0.013690311,-0.01597203,-0.0021640875,-0.045814846,-0.0031421972,-0.011672859,0.024119183,0.000830668,0.0005402162,0.00396078,-0.0065132105,0.035012133,0.024892647,0.0032533826,0.00023163632,0.015263021,0.0093202405,0.008404975,-0.014205954,-0.0076572928,0.0011005747,0.0048502632,-0.010222615,-0.010660911,0.014708705,0.004440972,-0.014734487,0.005282114,0.015185675,0.029468974,-0.019104559,0.012742817,0.029984618,0.00017131017,-0.024402786,-0.002052902,0.02614308,-0.00278447,-0.013535618,-0.023152353,-0.013741875,-0.0126976995,0.01669393,0.005175763,0.03643015,0.02797361,-0.0035353745,-0.0029359402,0.004109027,0.047593813,-0.012459215,0.0047922535,0.006671126,0.012143384,-0.001930437,-0.000263864,-0.012530115,0.0187565,-0.00064737315,-0.014824725,-0.012053146,0.013097323,-0.009732754,0.008205163,-0.004798699,-0.0013849838,-0.025653219,-0.00023788043,-0.0023445624,-0.018472897,0.000258627,0.04042638,0.009384695,-0.007070749,-0.014579794,-0.011460157,-0.0014518562,0.089824945,-0.0202003,-0.005085525,0.014927853,-0.025086012,-0.026130188,-0.01755763,-0.00288921,0.008205163,-0.0032147095,-0.0039382204,0.02480241,-0.0034644736,-0.021631207,0.019890914,0.004002676,-0.013058648,-0.008031134,-0.002868262,-0.0141543895,0.013181114,0.0066002253,-0.0061425925,0.030680735,0.021592533,-0.0122336205,0.020174516,-0.0030132865,-0.0074252533,-0.007928005,-0.023642214,-0.013123104,-0.03181515,-0.001185978,0.00091848837,0.019272143,-0.004679457,0.005791311,-0.005088748,-0.0030986897,0.0059202216,0.01307154,0.014811833,-0.016745493,0.012310967,-0.027999394,-0.0031631452,0.028334562,-0.019401053,-0.022649601,0.009655408,-0.0041025816,-0.031144813,-0.021076892,-0.009971239,-0.006980512,-0.00517254,0.011382811,-0.014966527,-0.046562526,-0.014824725,-0.02057414,-0.009771427,-0.0023896813,0.018601807,-0.017815452,-0.00029971727,-0.006171597,-0.0039317748,0.019014321,0.004547323,-0.021644099,-0.016771276,-0.015533733,0.020986654,-0.013194005,0.026555594,-0.004234715,-0.0029810588,0.02203083,-0.016848622,-0.019169014,-0.015946247,-0.041741267,-0.0002602384,0.0022092063,-0.0035869388,0.0073414617,-0.031376854,-0.005266,0.022146849,0.0090882005,0.0112410085,0.0066131162,0.019233469,0.03338786,-0.004605333,-0.020793287,0.0156110795,-0.009358914,-0.0016822839,-0.015933357,-0.007251224,-0.013703202,-0.008488766,-0.009288012,0.0129297385,0.02168277,-0.0013946521,-0.00019064677,0.008591895,0.00059943454,-0.015894683,-0.014902071,0.002359065,0.014309082,0.013612965,-0.0068709375,-0.004785808,-0.0099325655,3.6709323e-05,-0.037693474,0.021695662,0.014966527,-0.020238971,-0.0005821122,-0.018782282,-0.026271991,-0.013651638,0.014463775,-0.009545834,0.004702016,-0.020419447,-0.017647868,-0.018808063,-0.019233469,-0.005214436,0.010261288,-0.012136938,-0.019878022,-0.025704784,0.017828343,0.010338634,0.013600074,-0.012214284,-0.03413554,0.0050114016,0.003764191,-0.0057687517,0.0031389743,0.0014043204,0.000491069,-0.015933357,-0.004025235,-0.01780256,-0.0360692,-0.021747226,-0.030629171,0.0165908,0.023771124,0.03944666,-0.011827552,-0.008849716,0.007160987,0.006703354,-0.010680247,0.0019336598,-0.0044474173,-0.046794567,-0.019065885,0.03351677,0.00069571467,0.025227815,-0.009745645,0.0292885,0.028386125,0.017506067,0.018086165,-0.03630124,-0.019014321,-0.011060534,-0.012620353,0.0021302486,0.0025169805,-0.019813567,-0.025266487,0.025472745,0.006207048,0.0044216355,0.0057945335,0.0005047658,-0.009829437,0.007373689,0.010009912,0.007966679,-0.028386125,0.0013455049,-0.03269174,0.024557479,-0.0010602901,0.0044345264,0.026052842,-0.00937825,0.004424858,-0.013870786,0.023616431,-0.014902071,-0.023152353,0.014554013,-0.016320089,-0.018640481,-0.022662492,0.005446475,-0.015224348,-0.0012858837,0.0077281934,-0.02285586,0.03931775,0.0041605914,-0.05156426,0.029211154,0.019065885,0.04014278,0.0019272142,0.0025927154,0.011750205,0.012265848,-0.022714056,-0.010519109,0.015727099,0.0028150864,0.030397132,0.030526042,-0.011795324,0.0002348591,0.008140707,-0.020896416,-0.0042250464,-0.038595848,0.008972181,0.0066904626,-0.0072318874,-0.013574292,-0.011666414,-0.020638594,0.007721748,0.0015114774,1.4590571e-05,-0.012981302,-0.018795174,-0.0012625187,0.022933206,-0.00683871,0.007663738,-0.015572406,0.009507161,0.001238348,0.010963851,-0.0150052,0.00025661275,0.007599283,0.022482017,-0.030680735,0.0023751787,0.013664529,0.010912286,-0.0063714087,-0.0051241983,0.024982885,0.030835427,-0.004724575,-0.017828343,0.008211608,0.021102674,0.026555594,-0.008907726,-0.0038963244,-0.024480132,-0.021205802,-0.023203917,0.012008027,-0.034805875,-0.017364265,0.0028730961,-0.01573999,-0.014618468,-0.0058815484,0.005349792,-0.009597398,0.0020931866,-0.0048309267,-0.026194645,-0.01210471,-0.0073156795,0.016371652,0.0030374571,0.016204068,0.028515035,-0.045247637,0.0013761212,0.0044796453,0.010254842,-0.00907531,0.019645983,0.0014099602,-0.024312548,0.028747074,-0.027896265,-0.023345718,-0.015288803,-0.0180346,0.006161929,-0.0013849838,-0.0065583293,-0.0014357424,0.022198414,-0.01585601,-0.019078776,-0.017158007,-0.0346254,-0.006342404,-0.017041989,0.02491843,-0.006036241,0.031247942,0.002452525,0.009242893,0.0049791737,-0.024028946,-0.030036181,-0.02058703,0.016075158,-0.0018160288,-0.005278891,-0.02480241,-0.010873613,-0.011717978,-0.02166988,-0.009758537,0.003137363,0.00086531276,0.015443496,-0.015417714,-0.0023268373,-0.0077668666,-0.0180346,-0.027509533,-0.016152505,-0.02771579,-0.00079441187,-0.009771427,0.038105987,0.021927701,-0.013277797,-0.040374815,-0.0004785808,-0.042566296,-0.006590557,0.015469278,0.0188983,0.01767365,-0.0060459096,0.007844213,0.030783864,-0.0022140404,-0.0045602145,-0.01959442,-0.025111794,0.005833207,-0.009951903,-0.026065733,0.00926223,-0.005198322,-0.020419447,0.017867016,0.007238333,-0.010022803,0.014953636,0.013741875,0.008733696,-0.023448847,-0.013587182,-0.0060878056,0.006435864,0.012555897,-0.024531696,-0.0017402938,0.036481716,0.0031663678,0.0020754614,-0.00095957867,0.03181515,-0.007238333,0.00057526375,-0.0023606762,-0.019259252,0.0017161231,-0.018331094,0.0033967956,-0.008237391,-0.02154097,0.024183638,-0.008114926,-0.010377307,0.010751149,0.015623971,-0.0006941033,-0.008385638,0.013741875,-0.0153145855,0.010254842,-0.006094251,-0.0034096867,0.0056076134,-0.0069418387,-0.024750846,-0.0018079719,-0.014141498,0.013999697,0.02578213,-0.005456143,-0.008172935,-0.01790569,0.008630568,-0.006352072,-0.012040255,-0.007966679,-0.027844701,-0.007663738,0.0053433464,-0.013741875,-0.014167281,0.009423369,0.016784167,-0.010403089,0.007695966,0.1898596,-0.021631207,-7.377113e-05,0.02494421,0.01838266,0.014141498,0.017596304,-0.0060459096,-0.011969354,0.02419653,0.011299019,0.027896265,-0.0087917065,-8.2230894e-05,-0.0019755557,-0.013116659,-0.013767658,-0.016900185,-0.011434374,0.0037867504,0.025008665,-0.01972333,-0.018782282,-0.014566904,0.014850507,-0.026942326,-0.010042139,0.014489558,0.025923932,0.021579644,-0.005862212,-0.01331647,0.0005462589,0.0069418387,-0.026658723,0.0096360715,0.027174365,-0.01766076,0.015456387,0.0029891157,0.0008806209,0.034883223,0.006480983,-0.0016871181,-0.013767658,0.026839197,-0.014528231,0.009829437,-0.012691254,-0.011021861,-0.020303428,0.0009555502,-0.0056849597,0.017003315,-0.014051261,-0.011453711,0.007734639,0.018962756,-0.012291631,0.004937278,-0.0033839045,0.028747074,-0.010415981,0.014051261,-0.025253596,0.024054727,-0.0065067653,0.008379192,0.008823934,-0.0013841781,0.0029665562,0.01790569,-0.015701318,-0.014321974,-0.02168277,-0.021051109,0.031119032,0.0067484723,0.04377806,0.0007803123,-0.0076315105,-0.0017757443,0.010087258,-0.017196681,-0.007857104,-0.019916695,0.012639689,-0.017712323,-0.011273236,0.013097323,0.009526497,0.020599922,-0.0021495852,0.00080931716,0.013870786,0.0120015815,-0.0003704167,0.017596304,-0.008102034,-0.0006703354,-0.026362227,0.04380384,0.0074510355,0.0037448544,-0.022971878,0.016758384,-0.0093202405,0.041560795,-0.02116713,0.0013446992,-0.00058573775,-0.0043217298,0.0130135305,-0.008881944,0.003351677,0.02676185,0.019749112,-0.01312955,0.0055238213,-0.024428569,-0.0010216169,-0.014128608,0.017377155,-0.024776626,0.0032823875,-0.013625856,-0.01718379,0.008024688,-0.026078625,-0.008288954,0.03689423,-0.017944362,-0.027947828,-0.020947982,-0.0038834333,0.027741572,0.013935241,-0.0034838102,-0.015907574,0.012388313,-0.008959291,0.015997812,0.010486881,-0.0007021602,0.0041477,0.008746588,0.0039801165,0.029829925,-0.015830228,-0.0021689218,-0.01656502,-0.010641574,0.005059743,0.008965735,0.016719712,-0.012298076,-0.03013931,-0.022469126,-0.013561401,0.018485786,-0.020251863,0.017029097,0.02143784,0.0069289473,-0.0071352045,0.00460211,-0.16490251,0.014476666,0.019156123,-0.010003466,0.026426684,0.005214436,0.025524309,0.0153790405,0.011492385,0.014270409,0.018099055,-0.006561552,-0.024286767,-0.009036637,0.018846737,0.014592686,-0.03026822,0.019078776,-0.0029133807,0.0029198262,0.03983339,-0.017209573,0.00078192365,-0.0027683561,0.012381868,-0.015997812,-0.0034580282,0.012484997,0.012356086,-0.02299766,-0.008430757,-0.010557782,0.026375119,0.0300104,0.007625065,0.0049308324,0.0033162264,0.0016983978,-0.0011738926,0.013496945,0.017518958,-0.0010401479,0.0098681105,-0.009352468,0.022817185,0.018485786,0.020045606,-0.012749263,0.032408137,-0.006381077,0.019697547,-0.019259252,-0.01216272,-0.017402938,0.047026604,0.017828343,0.0044796453,-0.0046117785,-0.0008564501,0.016371652,-0.009462042,-0.009442705,0.020329209,-0.012852392,-0.008024688,-0.004634338,0.00943626,0.010841385,-0.03086121,-0.0003661868,-0.01573999,-0.032356575,0.010203278,-0.011170108,0.01972333,-0.00087095256,-0.026555594,0.0045215413,0.011331246,-0.00074687606,0.0067807003,0.0023058893,0.0015026148,-0.0019207686,-0.009101092,0.022249978,-0.0075863916,0.0101646045,-0.01216272,0.00088384363,0.03655906,-0.03875054,-0.016062267,-0.025988387,0.021154238,0.0019449395,-0.00045642428,-0.025627438,-0.009242893,-0.029340064,0.009326685,-0.008321183,-0.010022803,-0.01513411,0.024260985,0.008927062,0.022585146,0.019207686,0.0377966,0.0038157552,0.010557782,0.03147998,-0.0059782313,0.0044441945,-0.0031470312,0.0062263845,0.027535316,-0.033026908,-0.002494421,-0.01670682,0.05434873,-0.015263021,-0.0077990945,0.021773009,-0.0011344138,-0.010796267,-0.083327845,-0.047645375,0.02797361,0.025008665,-0.022056613,0.0069418387,3.567703e-05,0.018227967,-0.011911344,0.013509836,0.01959442,-0.027509533,-0.004911496,0.002342951,0.00054424466,-0.0023397284,-0.0063198446,-0.02384847,-0.02093509,0.027045455,0.002246268,8.585651e-06,-0.017132226,-0.015778664,-0.011260346,0.024905538,-0.036327023,0.004134809,0.0187565,0.0037867504,0.0033065581,-0.014566904,-0.0011513332,-0.029881489,-0.010622238,-0.017763888,-0.007824876,-0.02119291,0.02566611,-0.010886504,-0.010293515,-0.0059911227,-0.022868749,-0.027251711,0.0046278923,0.0017596304,-0.03338786,0.012659026,0.026362227,-0.043236632,0.0007094114,-0.016010704,-0.016165396,-0.006935393,0.004950169,-0.012897511,0.011531058,-0.0048599313,-0.004247606,-0.00025560564,-0.022830077,-0.00369329,-0.0017773556,0.036610626,0.020238971,-0.0043765167,-0.016668146,-0.013097323,0.015224348,-0.016204068,0.0025588765,-0.0043120612,-0.036223892,0.013406708,-0.022572255,-0.0141543895,-0.018447114,-0.0044313036,0.033207383,0.035553556,-0.032769088,-0.016255634,0.015056764,-0.00572041,0.016603692,0.015765773,0.0110089695,0.0017112889,-0.015224348,-0.02673607,0.0018627589,0.03570825,0.012820164,-0.007650847,-0.011473048,-0.010241951,0.002006172,-0.0024251316,0.025859477,0.008037579,0.008527439,-0.006574443,-0.08105902,0.016191177,-0.011543949,0.007380135,0.008862607,-0.00992612,-0.0023107233,-0.021424951,-0.012143384,-0.024750846,-0.011421484,0.0067807003,-0.009532942,0.007960233,-0.00793445,-0.02517625,0.026478248,0.003967225,-0.0071094222,0.008102034,-0.00056801253,-0.010667357,0.039756045,0.010551337,-0.025305161,0.015263021,-0.02422231,-0.014786052,-0.021283148,-0.019272143,-0.0248153,-0.0046085557,0.001846645,0.000820194,-0.0024283545,0.0063488497,-0.014592686,0.017854124,0.011170108,0.032717522,0.0018031377,-0.018253747,0.01034508,-0.013651638,0.00010524346,-0.011711532,-0.015894683,-0.010944515,0.02820565,0.011382811,0.03220188,0.022958986,-0.008172935,-0.016281415,-0.041535012,-0.0038383147,0.012633244,0.015559516,-0.018588915,-0.026813416,0.040632635,0.019388162,0.004453863,-0.017583413,0.015791554,0.014077043,-0.018846737,0.01985224,0.00907531,-0.008230945,0.004270165,-0.007309234,0.01525013,0.011872671,0.005353015,0.015043873,-0.01071892,-0.008997964,-0.027690008,0.005182208,0.0029133807,0.024428569,-0.027251711,-0.002157642,0.011099207,0.013857895,-0.013406708,0.02879864,-0.023539085,0.010976742,-0.017647868,0.015263021,0.01584312,0.007115868,0.012620353,0.008888389,-0.0009346022,0.00920422,0.017970145,0.00019256028,0.019671766,-0.016049376,-0.015933357,-0.02347463,-0.00079038343,0.01887252,-0.02408051,-0.02771579,-0.0077153025,0.013290688,0.0004346706,0.029030679,-0.009887447,0.017235354,-0.012942629,0.020380775,0.00027635222,-0.0021947038,-0.028669728,0.027896265,-0.020883525,0.004550546,0.004714907,-0.0006783923,0.01718379,0.008243836,0.029056462,-0.009230003,-0.0007198854,-0.03354255,-0.00076379563,-0.008321183,-0.0028569824,-0.012639689,0.006126479,-0.026001278,-0.014734487,0.023487521,0.006709799,0.072293095,0.0066131162,-0.0024154633,-0.0070127393,0.006632453,0.010087258,0.004547323,0.013522727,-0.020831961,-0.032897998,-0.013380925,0.0015565961,-0.00714165,-0.010138823,-0.016358761,0.023590649,-0.0012254568,-0.014811833,-0.006468092,0.018369768,0.037822384,-0.008811043,-0.0046987934,0.007844213,-0.0048921593,0.009416923,0.029082242,0.007721748,-0.01512122,-0.015211456,0.0064552007,-0.0116212955,-0.044087444,-0.0012520447,0.0240934,0.0014051261,-0.0025814357,-0.0019497736,-0.015933357,0.029236935,0.01767365,0.0074510355,-0.014270409,0.0043217298,-0.0021802015,-0.017944362,0.002342951,-0.004589219,-0.0041122497]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('421e1d30-a5da-11ee-8347-83960e8576dc', 'Gaming', 'this article is about Video Games', '[0.012125793,0.0033213987,0.006525514,-0.03484618,-0.0077602467,0.003191084,-0.020446394,-0.020290015,0.0026242144,-0.044671915,0.028773509,0.020394268,-0.009460855,0.0078644985,0.014855888,0.0052353973,0.027313983,0.006698181,0.030389413,-0.022036234,-0.0037758716,0.0009871346,-0.0045219236,-0.004994315,-0.00801436,0.007721152,0.0029842092,-0.039198693,0.009167647,0.000539992,0.016966987,-0.010275323,0.0057859775,-0.028825635,-0.01469951,0.0020980684,0.007701605,-0.0023782453,0.0077667627,0.001116635,0.012933745,0.014451913,-0.021775605,-0.007278082,0.00086007774,0.013539708,0.016354509,-0.019429937,-0.0027822212,0.0005799009,0.0020980684,0.02833044,-0.043082077,-0.009415245,0.004968252,-0.009949535,-0.005440643,0.00446654,0.009128552,-0.024981348,-0.017475216,0.0008173182,-0.014582227,0.005727336,-0.031640437,0.009910441,-0.0044795717,0.00968239,-0.0048542265,-0.013396362,0.02702729,0.035940822,0.014282503,0.009884378,0.007844951,-0.022752965,-0.00060107704,-0.00356411,0.0022251254,0.0015849539,0.004065822,-0.016875768,0.0023538112,0.007962234,0.013761244,0.002210465,0.003287191,-0.007454007,0.015911438,-0.0071412516,0.0012119277,0.01979482,0.016341478,0.004238489,-0.016849704,0.033986103,-0.0062583685,0.006352847,0.0075778062,-0.015689902,0.023482729,0.015103486,-0.014556164,-0.012666599,-0.027053354,0.001219258,0.0005424354,0.002785479,0.043160263,-0.012243076,-0.023209067,0.0011052325,0.018087694,-0.029190516,-0.0015629632,0.008783218,0.030702168,-0.0074474914,0.004424188,-0.023925798,0.033569094,0.01638057,0.019586315,0.011181011,0.015168644,0.0062648845,-0.02640178,-0.0054601906,0.0050106044,-0.00029198662,0.021892888,0.016758485,0.00809255,-0.010816129,-0.0071673146,-0.0008975432,0.018152853,0.02006848,-0.005626342,-0.022557493,-0.0012428774,0.024407964,-0.016093878,-0.030545792,-0.021137062,0.014269471,0.015507462,0.009623748,0.023196036,0.0065418035,0.006323526,0.008646388,0.02023789,-0.0028832152,0.008639872,-0.010210165,-0.010125461,0.012269139,-0.00022499666,-0.022557493,-0.0043003885,-0.005864166,-0.0006210315,-0.011115853,0.003665104,0.03909444,0.034403108,0.028356502,-0.00235544,-0.0055546686,-0.0073432396,0.020602772,-0.026362685,0.0133703,-0.01971663,0.007981782,-0.0009390811,0.014113094,-0.02551564,-0.0022414147,-0.027418235,-0.0005595392,0.04024121,0.032344136,-0.008105581,0.006023802,0.014973171,-0.012692662,-0.0002976879,0.00391596,0.020250922,0.033412717,0.028825635,-0.0019416907,-0.6826411,0.0021648547,-0.0018911937,0.020941589,-0.010535953,0.017892223,0.026023867,0.0110246325,-0.00068456,0.02780918,-0.0031259265,-0.0076234164,0.0085942615,-0.0034207636,-0.006242079,-0.013070575,0.006502709,-0.023730326,-0.0047597485,-0.0030770584,-0.021853793,0.015650809,-0.0015979853,-0.0005501728,0.004896579,0.022505367,-0.00637891,-0.0017429605,0.013500614,0.009962567,-0.014712541,0.021137062,0.013539708,0.024238555,0.026349654,-0.015298959,0.0017901997,0.02939902,0.009180678,0.052907813,-0.01962541,0.014412818,-0.0044307034,0.020785213,-0.019221434,-0.0044763135,0.04128373,-0.013617897,0.008105581,-0.0074018813,0.00089917216,0.0012339184,0.009167647,-0.012001994,-0.0070630624,0.01866108,0.016875768,0.012946776,0.018231042,0.0074931015,-0.02491619,0.019651473,-0.03343878,-0.00073587144,-0.013709118,0.010822644,0.008125128,0.003665104,-0.0014277616,-0.028747447,-0.004740201,-0.003541305,-0.019351749,-0.003863834,0.0064049726,0.0055123162,0.014543133,-0.009747548,-0.017266711,0.005098567,0.0065646083,0.0011940094,-0.024955286,-0.03177075,0.050927028,-0.0222708,-0.024277648,0.013226953,0.0067177285,0.020290015,0.01716246,0.011826069,-0.017449154,0.009343572,0.0017038661,-0.00047116948,-0.010809613,0.011943352,0.0069197165,0.0112396525,-0.0035543365,-0.008131644,0.018530766,0.008105581,0.029086266,0.015755061,-0.006004255,0.020980684,0.023065722,-0.024681624,0.0064342935,-0.0024678367,-0.027053354,0.011676207,-0.0005424354,-0.03633177,0.010757487,-0.014178251,0.0030444798,-0.0006031132,0.021984108,0.006971842,0.00095292705,0.006069412,-0.010803098,0.03244839,-0.019651473,-0.012164887,-0.030884609,-0.026453907,0.016927894,-0.018022537,0.012223529,-0.010705361,-0.0034533425,-0.013207406,0.0030672848,0.0059619024,0.018882615,-0.018283168,-0.01812679,-0.013083607,-0.012523253,0.018231042,-0.00998863,-0.025411388,-0.014881951,-0.015611714,-0.009441308,0.011083274,0.0047304276,-0.006277916,0.009278415,0.01847864,-0.009141584,-0.009864831,0.0043264516,0.0021225025,-0.017592499,-0.0033588642,0.0110246325,-0.0041863634,-0.0260369,-0.004365546,-0.012034573,0.0010807985,-0.031197365,0.02031608,-0.0069848737,-0.014908014,0.027079416,0.014034905,0.005724078,0.013591834,-0.021710446,0.019038994,-0.0020654898,4.426122e-05,0.014894983,-0.0005750141,-0.010255775,-0.012907682,-0.027913433,0.006678634,0.005671952,-0.0114025455,0.030493665,0.0410231,-0.009910441,0.0017054951,0.011728332,0.020407299,-0.021189189,-0.0041603004,-0.02490316,-0.0025688307,-0.001832552,0.008157707,0.015859311,0.012327781,0.023352414,-0.020641865,0.0061606327,-0.0040006647,0.011161463,-0.028486816,0.0064896774,-0.011109337,0.019820882,-0.022922374,0.029816028,-0.011096306,-0.015937502,0.00942176,0.014790731,0.007414913,-0.020368205,0.00053754856,-0.021801667,-0.0070891255,0.0019384328,-0.009363119,-0.016823642,0.0010180845,-0.007936172,0.05957993,0.010790066,0.032526575,-0.00019313062,-0.04761703,-0.021645289,0.017696751,-0.019873008,0.008248927,0.025632923,0.013194375,0.038234364,-0.011194042,0.01866108,-0.006499451,-0.00582833,0.03810405,0.01961238,-0.011832585,0.022427179,0.00085030415,0.008750639,0.009864831,-0.009030816,-0.0068415273,-0.05243868,-0.0020443136,-0.015781123,0.017266711,-0.009135068,0.0032073732,-0.0014847743,-0.00406908,0.017670687,0.024434026,0.013435457,0.001618347,0.0063886833,0.014947109,0.0021257603,-0.002285396,-0.007147767,-0.005597021,0.004287357,-0.022844186,-0.016849704,0.0023016853,-0.0026307302,-0.011376482,0.006704697,0.016966987,0.023717295,-0.016797578,0.006997905,0.03458555,0.010223197,-0.028200125,0.0023244903,0.021984108,-0.0035282734,-0.019938165,-0.017462185,-0.017475216,-0.01742309,0.019482063,0.0043981248,0.033986103,0.027939495,-0.0058609084,-0.003313254,0.014842857,0.041387983,-0.007297629,0.0008103952,0.0011891227,0.018048601,0.008574714,-0.0025720885,-0.0063561047,0.021593163,-0.00034675957,-0.023078753,-0.010164555,0.0064570988,-0.00923932,0.008757155,-0.00053469796,-0.0031731655,-0.020563677,0.0061866953,-0.007108673,-0.015298959,-0.0077993413,0.02851288,0.010522921,-0.017970411,-0.016080847,-0.008907017,0.00547648,0.101801924,-0.02973784,-0.003034706,0.014230377,-0.020550646,-0.028669259,-0.010275323,-0.01284904,-0.002006848,-0.009148099,-0.001656627,0.018687144,0.0012274026,-0.024512215,0.017123366,0.0035673678,-0.009037332,-0.0032790464,0.01003424,-0.015325021,0.007258535,0.0082293805,-0.01584628,0.034377046,0.017292775,-0.020576708,0.023938831,0.00477278,-0.01284904,-0.015246833,-0.025893552,-0.01919537,-0.02490316,-0.00040662292,-0.005645889,0.016341478,-0.00022601474,0.0151556125,0.0044307034,0.0006882251,0.008946111,0.01240597,-0.0007521608,-0.017709782,0.011493766,-0.039459325,-0.011884711,0.023977924,-0.018270137,-0.020615803,0.01130481,-0.009649811,-0.03044154,-0.021762572,-0.008007845,-0.0077146366,-0.01442585,0.015390179,-0.0130901225,-0.051109467,-0.006069412,-0.025411388,-0.008086034,-0.0012917456,0.018257104,-0.024082176,-0.0031177818,-0.008424852,-0.0014864033,0.015455336,0.00301353,-0.017097304,-0.020993715,-0.021423755,0.01346152,-0.015598683,0.020303046,-0.00094478234,-0.0034435687,0.0035673678,-0.023352414,-0.0061899535,-0.011376482,-0.034455236,-0.00052410987,-0.00020789284,0.0004968252,0.005821814,-0.033230275,-0.00884186,0.022427179,0.013070575,0.010457763,0.0072715664,0.020003323,0.029529335,2.3365037e-05,-0.016406635,0.016940925,0.0049356734,-0.0039094444,-0.015807185,-0.007252019,-0.012484158,-0.0071803457,-0.014595258,0.015129549,0.02825225,0.012021541,0.0029581462,0.00356411,0.002663309,-0.008112097,-0.015937502,0.0071347356,0.013513645,0.012432032,0.0022772513,-0.0091741625,-0.006802433,0.0015409726,-0.035132874,0.009499949,0.013024965,-0.020889463,-0.0011312955,-0.008763671,-0.035497755,-0.017475216,0.0132921105,0.0010009806,0.0061932113,-0.022857217,-0.020707022,-0.02614115,-0.0082293805,-0.005199561,0.007037,-0.007981782,-0.024798907,-0.01961238,0.008867922,0.008939596,0.0003618272,-0.001341428,-0.03309996,0.0055579264,0.005593763,-0.00512463,-0.0033279145,0.010933412,-0.008516072,-0.021840762,-0.008268475,-0.025059538,-0.023938831,-0.028486816,-0.012992387,0.017149428,0.022635682,0.04417672,-0.021006746,-0.0070956415,-0.0073888497,0.008248927,-0.010164555,-0.0039257337,0.0015426015,-0.052256238,-0.010992054,0.031640437,-0.002208836,0.029372958,-0.0052288817,0.026193276,0.022648714,0.023769422,0.017188523,-0.031301618,-0.012243076,-0.0058381036,-0.008086034,0.0051865294,-0.012868587,-0.023925798,-0.020107575,0.034741927,-0.0018781621,0.003011901,0.0018618728,0.0018260363,-0.016953956,-0.003814966,0.0071412516,0.0104838265,-0.04529743,-0.002262591,-0.034689803,0.026075993,0.0072650504,-0.0033914428,0.026584221,-0.012555832,0.0019205145,7.4778305e-05,0.014842857,-0.015950533,-0.018608954,0.008112097,-0.016354509,-0.010939928,-0.024277648,0.006593929,-0.020628834,0.0037758716,0.015676871,-0.02101978,0.039693892,0.0030167878,-0.052308366,0.01856986,0.01654998,0.040788535,0.011128885,0.004147269,0.017631594,0.02147588,-0.025072569,0.0032937068,0.011213589,-0.0028571521,0.020172732,0.029685713,-0.011702269,-0.013709118,0.014647384,-0.006277916,-0.021684384,-0.034689803,0.01469951,0.010731424,-0.00998863,-0.01636754,-0.01174788,-0.019325687,0.025359262,0.005903261,0.008033908,-0.013852464,-0.023117848,0.0022642198,0.02384761,0.0026225855,0.01240597,-0.004668528,0.0027691897,-0.0034468267,0.007675542,-0.024968317,0.0014953624,0.010373059,0.030415475,-0.031093113,0.012301718,0.02296147,0.009363119,-0.0027138058,-0.007037,0.023443634,0.025854457,-0.0026225855,-0.0155204935,0.0025248495,0.019677537,0.01315528,-0.00092442066,-0.002987467,-0.022479305,-0.02155407,-0.018713206,0.017045178,-0.026232371,-0.010900834,0.0055188322,-0.00933054,-0.021436786,-0.009786642,-7.467649e-05,-0.009604202,-0.005189787,-0.0032041154,-0.029372958,-0.017996475,-0.011552407,0.013735181,-0.006391941,0.032526575,0.028434692,-0.04240444,0.0039094444,-0.0059781917,0.012920713,-0.0048542265,0.012927229,0.0018765333,-0.0201597,0.030493665,-0.02446009,-0.023743358,-0.015794154,-0.019703599,0.009076427,-0.0033262854,-0.0012990758,-0.0016232338,0.014087031,-0.018882615,-0.012106245,-0.021606196,-0.02058974,0.003795419,-0.013344237,0.023691231,-0.010412153,0.027783116,-0.0024434025,0.007304145,-0.002858781,-0.01971663,-0.0243819,-0.021358596,0.016250256,-0.003795419,-0.015207738,-0.013487583,0.0016655861,-0.014894983,-0.008470463,-0.016693328,-0.004433961,0.0027594161,0.015272896,-0.009708453,0.007414913,-0.0009398956,-0.012979355,-0.028226187,-0.012203982,-0.038703497,-0.0070435153,-0.00631701,0.02614115,0.029842092,-0.0019547222,-0.035497755,-0.0055058007,-0.027053354,0.0026747114,0.016146004,0.016758485,0.02112403,-0.00662325,0.0024694656,0.03706153,-0.004212426,-0.009760579,-0.014464944,-0.0091741625,0.010887803,-0.010288354,-0.027678866,0.010131977,-0.003541305,-0.01662817,0.008209833,0.0075191646,-0.0069913897,0.013604866,0.0018439546,0.0035119841,-0.033126023,-0.018022537,-0.010764003,0.019299623,0.00801436,-0.021449817,-0.003661846,0.022935405,-0.0009187194,-0.0038703498,0.0071933772,0.022453241,-0.0004931601,0.000583566,-0.008867922,-0.014113094,0.0011353678,-0.022844186,0.009245835,-0.0060107703,-0.016302383,0.021879856,-0.0051832716,-0.022205643,0.0028766994,0.01636754,-0.0020492005,-0.009656327,0.005310328,-0.0073888497,0.0143997865,-0.016523918,-0.0067177285,0.0034761475,-0.002710548,-0.013487583,-0.008209833,-0.015338053,0.013122701,0.01961238,-0.007779794,-0.010614141,-0.0014831454,0.01228217,-0.0052516866,-0.00893308,-0.011154948,-0.023925798,0.0048053586,-0.0005847877,-0.00928493,-0.010405637,0.011083274,0.012796914,-0.024629498,0.008848376,0.1944297,-0.01760553,0.003538047,0.015507462,0.014373723,0.012777367,0.031093113,-0.0076950896,-0.015364116,0.022544462,0.0045316974,0.023977924,-0.011174494,0.0005566886,-0.014569196,-0.017970411,-0.008340147,-0.011207074,-0.0036944249,0.0015841394,0.015989628,-0.01926053,-0.01760553,-0.009956052,0.011513313,-0.022726903,-0.010210165,0.009877862,0.012464612,0.015937502,-0.0037074564,-0.025046507,0.0067437915,0.0063691363,-0.02710548,0.010164555,0.019351749,-0.016836673,0.01451707,0.007857983,-0.0052875234,0.03943326,-0.0046554967,-0.000740351,-0.0047988426,0.02621934,-0.026558157,0.008483494,-0.004994315,-0.0033718958,-0.024082176,-0.0011329243,0.0041603004,0.016615137,-0.016132973,-0.0068871374,0.014803763,0.008665935,-0.013077091,0.0003616236,-0.0045056343,0.030180909,-0.017305806,0.003981117,-0.026128119,0.024303712,-0.017931318,0.011467703,0.0111354,-0.004192879,0.001391925,0.005013862,-0.019377813,-0.010346996,-0.024056114,-0.01505136,0.028773509,-0.0019547222,0.038625307,0.0052386555,-0.014491007,0.00471088,0.008959143,-0.01673242,-0.008854891,-0.030128784,0.009975598,-0.015950533,-0.01926053,0.018635018,0.0060824435,0.010894318,0.0023798742,0.0015417871,0.009767095,0.01399581,0.010672783,0.016041752,-0.0020622318,-0.0074931015,-0.015820218,0.035002556,0.0110376645,0.0077146366,-0.026075993,0.012340812,-0.013396362,0.04391609,-0.016406635,-0.0014269472,0.0041016587,0.0013300255,0.0097280005,-0.011910774,0.0074865855,0.019638442,0.014556164,-0.0132790785,0.0033311723,-0.027209733,-0.009317509,-0.0047760378,0.018087694,-0.022557493,0.00044673544,-0.023964893,-0.022414148,0.0080534555,-0.021058872,-0.009011269,0.028382566,-0.024473121,-0.022779029,-0.01469951,0.006551577,0.0132921105,0.021150094,0.0027170638,-0.010835676,0.018973837,-0.013787307,0.014152188,0.014178251,0.0048574843,0.0056133103,-0.009760579,0.020276984,0.023352414,-0.011858648,0.0047825533,-0.017814035,-0.0077732783,0.004414414,7.055325e-05,0.016393604,-0.0243819,-0.025750207,-0.02621934,-0.008222864,0.021528006,-0.022335958,0.019469032,0.023730326,0.008164222,-0.007988297,0.0032741595,-0.16742846,0.011728332,0.0114155775,-0.01584628,0.020824306,-0.014934077,0.016263288,0.016458761,0.012073667,0.023026627,0.012425517,0.0002638875,-0.021541039,-0.008672451,0.02296147,0.008926564,-0.027965559,0.0040267278,-0.004394867,0.0023049433,0.03255264,-0.011011601,0.0041244635,-0.0018472124,-0.0010392606,-0.018517734,0.0051865294,0.022935405,0.021606196,-0.010535953,-0.01803557,-0.01205412,0.018804427,0.031457994,0.006245337,0.014921046,0.0033914428,0.008998238,-0.006450583,0.020798244,0.013422425,-0.006326784,0.004166816,-0.011141916,0.01944297,0.011187526,0.021293439,-0.007414913,0.020993715,-0.022244738,0.010770519,-0.03276114,-0.008450915,-0.021658322,0.050483957,0.013226953,-0.003466374,-0.00087229477,0.0034956948,-0.002058974,-0.014855888,-0.007102157,0.019247497,-0.011356936,-0.0058771977,-0.0013650476,-0.008327116,0.009024301,-0.03711366,0.0015092083,-0.018648049,-0.028460754,0.0155204935,-0.009245835,0.007994814,0.004896579,-0.026232371,-0.00083564373,0.0024824971,0.0031291842,0.0044567664,0.0067568226,-0.00998863,-0.0038833814,0.0013169941,0.028565006,-0.0055611846,0.019859977,-0.004414414,0.0026616799,0.03607114,-0.044202782,-0.0132921105,-0.01636754,0.023443634,0.0073106606,0.0059358394,-0.019703599,0.006131312,-0.03195319,0.0063886833,-0.014230377,-0.0059423554,-0.017475216,0.023586981,2.9931682e-05,0.026479969,0.019403875,0.035966888,0.011356936,0.010118945,0.017840097,0.000890213,-0.005769688,-0.0012876733,0.008483494,0.022805091,-0.030180909,0.013409394,-0.0021909177,0.06380213,-0.005772946,-0.012699178,0.012138824,0.0017266712,-0.010112429,-0.08762368,-0.037009407,0.026414812,0.007942688,-0.019078087,0.017709782,0.0059847077,0.025593828,-0.0008454173,0.010379574,0.011076759,-0.031197365,-0.011943352,0.005955387,0.005570958,-0.0072715664,-0.010965991,-0.015872344,-0.013865496,0.028825635,-0.004460024,-0.0030868321,-0.0069197165,-0.016132973,-0.019938165,0.022036234,-0.033673346,0.018191947,0.022948438,0.0032480967,0.007994814,-0.015689902,-0.0031845681,-0.031562246,-0.013070575,-0.01997726,-0.010816129,-0.022322927,0.024616467,-0.021045841,-0.01496014,-0.0035966886,-0.016302383,-0.028017683,0.0048998366,-0.005375486,-0.036383893,0.014087031,0.019508127,-0.051187657,0.002008477,-0.020081513,-0.01602872,0.00048297926,0.01636754,-0.004593597,0.0012371762,-0.012607957,0.004518666,0.013982779,-0.023626074,-0.0071803457,0.0040039225,0.026010836,0.023886705,-0.0030868321,-0.019038994,-0.004593597,0.013083607,-0.014334629,-0.010548984,0.0021762573,-0.029972406,0.0147776995,-0.02569808,-0.015298959,-0.014491007,-0.014582227,0.040397592,0.03010272,-0.027340047,-0.016458761,0.010575047,-0.015194707,0.019078087,0.0037074564,0.013513645,0.0072455034,-0.010314417,-0.013324689,-0.0005000831,0.032161694,0.020524582,-0.01996423,-0.013565771,-1.9203617e-05,0.0007240616,-0.0020492005,0.023039658,0.0022967984,0.012041088,-0.009630265,-0.08230683,0.022857217,-0.0116175655,0.015012266,0.011493766,-0.024785876,-0.008620325,-0.013565771,-0.008672451,-0.020081513,-0.007636448,-2.3505025e-05,-0.0071347356,0.006004255,-0.008757155,-0.026975166,0.03317815,0.0055383793,-0.006603703,0.0032757884,-0.011213589,0.0009716598,0.043316644,0.008907017,-0.01205412,0.018726237,-0.011806522,-0.012301718,-0.02244021,-0.017983444,-0.009180678,-0.0014220603,0.0036716198,0.006704697,-0.0052419133,0.0031308134,-0.016002659,0.011852132,0.011057211,0.032709017,0.001980785,-0.02208836,0.00087473815,-0.022570524,0.0012233303,0.0022446725,-0.014282503,-0.004121206,0.028382566,0.010555499,0.01724065,0.014047937,-0.008574714,-0.01584628,-0.042274125,-0.0057403673,0.023117848,0.017383995,-0.022687808,-0.016354509,0.043342706,0.022596588,-0.0008828828,-0.01855683,0.012243076,0.014881951,-0.020967653,0.0243819,0.004642465,-0.01760553,0.0032513544,-0.005365712,0.0061345696,0.015546557,0.00017317616,0.009109005,0.0024662078,-0.0043525146,-0.021814698,-0.00018987275,0.010373059,0.014543133,-0.032239884,0.00963678,0.0102688065,0.030050594,-0.00536897,0.028434692,-0.021853793,0.003140587,-0.020042418,0.013565771,0.00677637,0.0047695218,0.0112266205,0.012001994,-0.007955719,0.011050696,0.020250922,0.0044078985,0.023222098,-0.004218942,-0.009812705,-0.020889463,-0.00250856,0.01760553,-0.021840762,-0.033595156,0.0001783684,0.01301845,0.004596855,0.034637675,-0.011291778,0.017996475,-0.01050989,0.019247497,-0.0012827864,-0.009389182,-0.029112328,0.023899736,-0.013617897,-0.002560686,0.013396362,-0.016667264,0.022883281,0.011128885,0.021997139,-0.012295202,-0.004701107,-0.03424673,-0.0022186097,-0.00017989552,8.8318826e-05,-0.003560852,0.0076625105,-0.023013595,-0.013194375,0.027522488,-0.0034989526,0.060570322,0.003036335,0.011272231,3.0669795e-05,-0.0018895647,0.0075582587,0.00023171603,0.015728997,-0.02147588,-0.03239626,-0.012445064,0.004495861,-0.009343572,-0.014152188,-0.03406429,0.0136439605,-0.0043525146,-0.01069233,-0.006655829,0.022674777,0.02667544,-0.0019661246,0.009141584,-0.0012998902,-0.0016892056,0.0236782,0.032917522,0.0004593597,-0.015989628,-0.013422425,-0.0005619826,-0.016589075,-0.04459373,-0.008939596,0.02191895,-0.005395033,0.0047792955,0.0040006647,-0.016667264,0.032917522,0.018413482,0.010855223,-0.024499184,0.008639872,-0.010653236,-0.0027740765,-0.0002278473,-0.0064310357,-0.004091885]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('422ac774-a5da-11ee-8347-e7ff922cc207', 'Gaming', 'this article is about XBOX', '[0.010074828,-0.009225382,0.008692008,-0.04172164,-0.019267285,-0.00092928763,-0.028446572,-0.018398084,0.0046719545,-0.039482787,0.033767134,0.017331338,2.7625523e-05,0.013749177,-0.010614785,0.0028413648,0.02763005,0.015369051,0.037243936,-0.021980245,-0.00012840466,-0.0064696195,-0.0023244538,-0.0017071236,-0.016106555,0.005557617,0.009666567,-0.02579946,0.02304699,0.0037006882,0.0114774015,-0.01132595,-0.003303951,-0.019609697,-0.015303202,0.0058407662,0.01292607,-0.0033846153,0.01858246,-0.00020073517,0.016909907,0.015948517,-0.018832684,0.008033522,0.0020906914,0.016238252,0.015355881,-0.0051427716,-0.005564202,0.0017532175,0.00046011672,0.026444776,-0.04672613,-0.011589345,0.004655492,-0.013222388,-0.013406764,0.007875486,0.019570189,-0.00839569,-0.014894941,0.01040407,-0.020636935,0.005623466,-0.040957797,0.016580664,0.0017170009,-0.008454953,0.011747381,-0.0047641424,0.03263454,0.028815323,0.01766058,0.022467524,-0.00034776263,-0.011846153,-4.5624556e-06,-0.010180186,0.011905417,0.0034471713,0.010753067,-0.018766835,-0.00097455847,-0.00034920307,0.027155941,0.020478899,-0.010265788,-0.0027392996,0.022204129,-0.006472912,0.015790481,0.020544747,0.030263992,-0.0019145465,-0.007974259,0.031765338,-0.005178988,0.0148422625,-0.0024742591,-0.0243903,0.015290032,0.016053876,-0.027287638,-0.014144268,-0.042722538,-0.0074540554,0.0046357377,0.011385214,0.04672613,-0.010120922,-0.024258604,0.020557916,0.025246333,-0.022032924,-0.0022783596,0.0030240945,0.016909907,-0.019254114,-0.0059197843,-0.012162226,0.035057765,0.018806346,0.010068242,0.012524393,0.0004675247,0.0018437593,-0.021624662,-0.009488775,0.01762107,0.0068219095,0.028235856,0.00075273117,0.0044250223,0.009515115,-0.013801855,0.0024100568,0.009627057,0.018740496,-0.008079616,-0.037243936,0.014750075,0.022256808,-0.0036348398,-0.028262196,-0.010641125,0.017476205,0.005080215,-0.003927866,0.0150924865,0.006074528,0.005202035,-0.004708171,0.032818917,0.0012626459,0.013466028,-0.016409459,-0.0068087396,0.020241844,-0.004566597,-0.019583357,-0.004006884,-0.00566956,-0.0018602214,-0.0167387,0.00999581,0.04180066,0.027788086,0.033424724,-0.0065683927,-0.0044250223,-0.0031014665,0.022493863,-0.021400778,0.012866806,-0.006173301,0.015355881,-0.0019787487,0.007144567,-0.02992158,-0.0032298712,-0.02311284,-0.002296468,0.043354683,0.033372045,-0.011549835,0.003275965,0.0033697993,-0.028788984,0.0019787487,0.019609697,0.026418436,0.042827893,0.0057123615,-0.0073684524,-0.6742891,0.0058374736,-0.002281652,0.020413049,-0.0028479497,0.024271775,0.025075126,0.013235558,0.00026977327,0.01910925,-0.0059131994,0.0036545943,0.0073355283,-0.015066148,0.0014190362,-0.014407662,0.015909009,-0.021953905,-0.01201736,-0.015737802,-0.005574079,0.0017515713,-0.02585214,-0.0024051182,-0.008415444,0.029763542,-0.008158635,0.0045962287,0.018621968,0.0091463635,-0.015803652,0.011451062,0.009613887,0.019240946,0.028762646,-0.025391199,-0.002989524,0.026155043,0.0067000897,0.060001194,-0.01766058,0.010463334,-0.00087249326,-0.0076779407,-0.015988028,-0.0068021547,0.029263094,-0.00060457195,0.0032331636,-0.0059527084,0.0031541453,0.00884346,0.011016462,-0.016369948,-0.014473511,0.026010176,0.017318169,0.0007144567,0.01723915,-0.0047773123,-0.03308231,0.022533372,-0.044302903,-0.010930859,-0.038244836,0.018727327,-0.0047707274,-0.009561209,0.00679557,-0.008494463,-0.002796917,0.006986531,-0.026471116,0.010930859,0.0052876384,0.011372044,0.015237354,-0.014368153,-0.011490571,0.012998503,0.0021812331,-0.00011050209,-0.020518407,-0.025970668,0.049702484,-0.01762107,-0.01814786,0.009297815,0.00028417763,0.008678839,0.022388507,-0.006598024,-0.020610595,-0.00051197247,0.012748279,0.0075462433,-0.010818916,0.0022372045,0.020057468,0.006581562,-0.006733014,0.005386411,0.026431607,0.011023046,0.03305597,0.014723735,-0.011088896,0.021387609,0.015303202,-0.02897336,0.011642023,-0.00082722236,-0.0132618975,0.0119317565,0.0021565398,-0.03184436,0.0041715056,-0.014368153,-0.0031212212,-0.007789883,0.03250284,-0.00025783823,0.0029565997,-0.013709667,-0.016830888,0.0334774,-0.0101736,-0.008586651,-0.022335827,-0.022256808,0.01201736,-0.024350792,0.01680455,-0.012741693,-0.0022075726,-0.013024842,0.0030570189,-0.0030619574,0.014249626,-0.009080514,-0.02989524,0.00017871708,-0.0122609995,0.0062193954,-0.009231966,-0.026378928,-0.0052843457,-0.005462137,-0.007658186,0.016172403,0.0027030827,-0.009495361,0.006726429,0.012840467,-0.006156839,-0.014315474,-0.0024182878,-0.010364561,-0.015764141,-0.015290032,-0.0018816222,0.015237354,-0.021611493,0.0014486681,-0.0069536064,-0.011879078,-0.028314875,0.026695,-0.017779108,-0.0008012945,0.0336091,0.017568393,0.014091589,0.007980844,-0.030053277,0.013604309,-0.011372044,-0.019596528,0.023652798,0.012313678,0.007901826,0.014815923,-0.022507032,0.0045962287,-0.0019145465,-0.014157438,0.00883029,0.04936007,-0.012504639,0.004415145,0.000870847,0.011516911,-0.02491709,0.009297815,-0.020044297,-0.009383418,-0.012906315,0.006940437,0.0053831185,-0.000469994,0.026576472,-0.026536964,0.016527984,-0.012353187,0.010443579,-0.026853038,0.012293924,0.0047246334,0.020939838,-0.025562406,0.016159233,-0.025154145,-0.0048069437,0.016686022,0.011418138,0.009350494,-0.010660879,0.012214906,-0.01950434,-0.018727327,-0.0041550435,0.0003138095,0.0004391275,0.011912002,-0.004214307,0.0336091,0.009258306,0.03395151,0.023415742,-0.037928764,-0.012353187,0.016027536,-0.016633343,0.0047246334,0.02084765,0.01723915,0.036058664,-0.008323256,0.011767135,-0.018938042,0.007118228,0.023336725,0.011009877,-0.0067758155,0.007625262,-0.00033809114,0.019385813,0.01113499,-0.0036842262,-0.006657288,-0.049281053,-0.015316372,-0.009936546,0.014328644,-0.008231068,-0.011793475,-0.01497396,-0.0026619276,0.030369349,0.021018855,0.00816522,-0.0054753064,0.01177372,0.019385813,0.0062852437,0.003205178,-0.013867704,-0.0028611193,-0.0062161027,-0.020768631,-0.009297815,0.010674049,0.009870697,-0.01771326,0.000855208,0.017844956,0.023428913,-0.0053567793,0.008448369,0.0132618975,0.005709069,-0.03845555,0.009238551,0.021993415,-0.0070062852,-0.017884465,-0.03305597,-0.019385813,-0.001810835,0.029078718,0.010456749,0.024640527,0.02673451,-0.0037237352,-0.001879976,0.030000597,0.051256508,-0.016132893,0.0039871293,-0.012675845,0.024047889,-0.005399581,-0.002497306,0.0016305746,0.021506134,7.891537e-05,-0.0085668955,-0.014262795,0.014183776,-0.021940736,0.007987428,-0.0019441784,-0.014921281,-0.010219694,-0.008257408,-0.0020001496,-0.019254114,-0.017739598,0.019359473,0.010805747,-0.018305896,-0.01497396,-0.016422627,0.019451661,0.08296917,-0.027919784,-0.0001538181,0.018516611,-0.02398204,-0.027129602,-0.008685423,-0.007651601,0.0053205625,0.0052184975,-0.013973062,0.032055072,0.00091694103,-0.019636037,0.018727327,-0.0062062256,-0.0069536064,-0.0043229572,0.013775516,-0.011793475,0.0042044297,0.011194253,-0.010614785,0.028578268,0.030316671,-0.0039574974,0.019820413,0.009172702,-0.017054774,-0.01726549,-0.026497455,-0.016541155,-0.018477103,-0.0038686022,0.0035887458,0.011404968,-0.0068021547,-0.0010255912,-0.005162526,0.0046423227,0.002057767,0.00092187966,0.0077767135,-0.023626458,0.012939239,-0.03674349,-0.010252618,0.014697395,-0.014815923,-0.024798563,0.000994313,-0.018002992,-0.030685423,-0.023494761,-0.026945226,-0.005109847,-0.014644717,0.0058012567,-0.013564801,-0.047305595,-0.008948818,-0.016988926,0.0036117928,0.0027376532,0.021690512,-0.017950313,-0.019478,-0.012919485,-0.0071774917,0.008593235,8.035581e-05,-0.005416043,-0.021822209,0.0048299907,0.019425321,-0.009337324,0.022098772,0.00076960487,-0.0018964382,0.013301406,-0.014157438,-3.9251907e-05,-0.0062457346,-0.03526848,-0.0040793177,-0.007533074,0.00031051706,-0.00334346,-0.018911703,-0.0009564501,0.030474707,0.004971565,0.009686321,0.00702604,0.024732715,0.01718647,0.0022915294,-0.009561209,0.008013768,-0.0016363363,-0.022388507,-0.018279556,-0.013880874,-0.013696497,-0.015079317,-0.016093384,0.012623167,0.03081712,0.011187668,-0.009706075,-0.008079616,-0.0030701885,-0.00926489,-0.028341215,0.005192158,0.01359114,0.01407842,-0.0019013768,-0.023310386,-3.9946404e-05,0.00065478147,-0.059158333,0.02304699,0.010206524,-0.020189164,0.0006609548,-0.011023046,-0.03711224,-0.023270877,0.018542951,-0.01200419,0.008764441,-0.022994312,-0.021927565,-0.02718228,-0.00903442,0.005847351,0.014776414,0.0025631546,-0.02763005,-0.0222173,0.018411255,0.0029648307,-0.0013984585,-0.008000598,-0.030290332,-0.01943849,0.002790332,0.0057189465,0.00885663,0.009297815,-0.013419934,-0.017002095,-0.016053876,-0.022928463,-0.015316372,-0.01542173,-0.02317869,0.02585214,0.02128225,0.042748876,-0.017805448,-0.006074528,0.0006280305,0.0059658783,-0.002449566,-0.004467824,0.0046982937,-0.0406944,-0.015461239,0.015803652,0.0050044893,0.034162227,-0.006492667,0.016383119,0.0243903,0.017384017,0.009041006,-0.025733612,-0.015527087,-0.002233912,-0.025983837,0.008422029,-0.011154744,-0.03753367,-0.018503442,0.03221311,0.004197845,0.002564801,0.0059230765,0.002782101,-0.013617479,0.004151751,0.012735109,-0.0005498354,-0.03345106,0.008902724,-0.017726429,0.010377731,0.021150554,0.0022832984,0.02543071,-0.013920383,0.00033623914,0.006601317,0.014697395,-0.018161029,-0.014736905,0.00091200235,-0.02947381,-0.006519006,-0.01201736,0.017844956,-0.018740496,-0.010292128,0.015263693,-0.0146710565,0.03358276,0.023376234,-0.050387308,0.02356061,0.014855432,0.038718946,-0.004576474,0.017225979,0.030158633,0.014262795,-0.024271775,-0.012063454,0.009916791,-0.018700987,0.02757737,0.041405566,0.0003915931,-0.002280006,0.0044052675,-0.023191858,-0.00083010324,-0.023310386,0.0014486681,-0.006249027,-0.003236456,-0.006703382,-0.017476205,-0.0010231218,0.019372642,0.0021367853,0.0004975681,-0.016541155,-0.017989824,0.006647411,0.015935348,-0.007164322,0.0026553427,-0.0041550435,-0.0009424573,-0.008303502,0.0067824004,-0.023165518,-0.0093965875,0.007882071,0.03940377,-0.02358695,0.018727327,0.026892547,0.01021311,-0.011260102,-0.013577971,0.033714455,0.022454355,-0.0021252618,-0.019148758,0.014539359,0.029026039,0.00815205,-0.017344506,-0.0026158334,-0.018371744,-0.01625142,-0.025509726,0.0062786588,-0.020913498,-0.012155642,0.0029944626,-0.013749177,-0.022177791,0.0063971863,0.0048826695,-0.0101736,-0.008198144,0.0031475606,-0.026918886,-0.018240048,-0.010423825,0.016646512,0.0029220292,0.0336091,0.021506134,-0.03576893,-0.0030948818,-0.0013210864,0.010134092,-0.006726429,0.022414844,0.0020001496,-0.026115533,0.024219096,-0.028630948,-0.014697395,-0.015974857,0.0063543846,-0.001032999,0.0040793177,-0.016369948,0.0038159234,0.0031953007,-0.010660879,-0.009659981,-0.026800359,-0.022467524,0.005468722,-0.013986231,0.02399521,0.012629751,0.016686022,-0.015685124,0.018161029,-0.00047246332,-0.014091589,-0.00094986527,-0.015237354,0.02676085,-0.018253217,0.000112765636,-0.025483387,-0.0032002393,-0.020241844,-0.0020906914,-0.0143418135,0.0035492366,0.025443878,0.013683328,-0.013400179,-0.004714756,-0.013380425,-0.013222388,-0.015250524,-0.01999162,-0.027287638,0.003776414,-0.010041904,0.022875786,0.02944747,-0.009199042,-0.018753666,-0.009205627,-0.03537384,0.0012074977,0.0049353484,0.019794073,0.016146064,-0.003944328,0.0062226877,0.040114935,0.008909308,0.004329542,-0.005630051,-0.012419036,0.00796109,-0.0217827,-0.015369051,-0.00091200235,-0.0014997006,-0.017963484,0.011358874,0.013933552,0.00059675245,0.017568393,0.018134689,0.007513319,-0.042880572,-0.014750075,0.00094492664,0.008573481,0.0067231366,-0.021506134,-0.0043262495,0.031976055,-0.002080814,0.00996947,-0.007974259,0.02815684,0.008474708,-0.000963035,-0.0066770427,-0.012629751,-0.000939988,-0.010094582,0.00839569,0.003559114,-0.010436995,0.02670817,0.0056827297,-0.020439388,0.0022931756,0.011200838,-0.0027211912,-0.01407842,0.0020742293,-0.014657887,0.00033685646,-0.014328644,9.3525516e-05,0.004128704,-0.0056728525,-0.011391799,0.0026191259,-0.014618377,0.024245435,0.012366357,-0.009528285,-0.012412451,-0.014776414,0.011674947,0.009554625,-0.008296917,-0.01129961,-0.036401078,-0.0018058964,-0.0073618675,0.004500748,-0.018358575,0.004428315,0.01129961,-0.012076624,0.008184974,0.20376174,-0.011036216,0.009462436,0.005455552,0.0181742,0.01200419,0.017199641,-0.006403771,-0.010456749,0.017937144,0.0007226878,0.023336725,-0.0017038311,-0.0047443877,-0.006492667,-0.018621968,-0.0057847947,-0.0031014665,-0.006594732,-0.0026207722,0.021045195,-0.01581682,-0.01585633,-0.016844058,0.020017957,-0.019135587,-0.013867704,0.012517809,0.009126608,0.019069739,-0.004214307,-0.019175097,0.020531576,0.009976055,-0.025773121,0.007835977,0.008198144,-0.0091002695,0.0186088,0.008724933,0.004046393,0.02855193,0.00702604,-0.0018388206,-0.018687818,0.022309488,-0.021348098,-1.3979955e-05,0.003759952,-0.0031031128,-0.015777312,-0.014170608,-0.0015523795,0.011865908,-0.020334031,-0.012458545,0.008059862,0.0064136484,-0.0036381322,0.0071709068,-0.00054119277,0.03484705,-0.02039988,0.01809518,-0.026813528,0.037006885,-0.0073157735,0.020584255,0.014460341,-0.0020363664,-0.0124322055,0.0070457943,-0.028788984,-0.022507032,-0.0203472,-0.01901706,0.034451958,-0.005020952,0.049096677,0.003598623,-0.010311882,0.006123915,0.01494762,-0.012642921,-0.015909009,-0.030948818,0.0017285243,-0.0071709068,-0.012267584,0.012985334,0.015329542,0.011075726,0.0008436845,-0.01245196,-0.005544448,0.009475606,0.017515713,0.025759952,-0.0199126,-0.0038356779,-0.026642323,0.04216941,0.002503891,-0.010193355,-0.028235856,0.016712362,-0.012866806,0.05894762,-0.020175995,-0.001533448,0.007111643,0.0033500448,0.0022404967,-0.0008947171,0.01996528,0.007868901,0.006107453,-0.0063609695,-0.0046719545,-0.0067395987,0.0019310086,-0.021097874,0.004560012,-0.01625142,-0.0020972763,-0.021176893,-0.015276863,0.00419126,-0.01897755,-0.013189464,0.022954803,-0.022006584,-0.017344506,-0.018437592,0.0053600715,0.0089422325,0.012827297,-0.004922179,-0.016014367,0.0073421127,-0.0068614185,0.016936246,0.012939239,0.002041305,1.6217777e-05,-0.017107453,0.003251272,0.026378928,-0.013163124,-0.015961688,-0.029684525,0.0024133492,0.015329542,0.0014848848,0.029684525,-0.030922478,-0.023165518,-0.02315235,-0.0066935048,0.031554624,-0.016435796,0.006621071,0.019175097,-0.013933552,-0.018226877,0.00817839,-0.16930978,-0.00013303464,0.009640227,-0.027788086,0.040457346,-0.007032625,0.025338521,0.01897755,0.0007255687,0.019675545,-0.0019425321,0.011490571,-0.040035915,-0.005863813,0.025496557,0.008250823,-0.027392995,0.0033697993,-0.009231966,-0.004062855,0.027998801,-0.008263992,0.02083448,-0.008678839,0.004085902,-0.012129302,-0.0041945525,0.023481593,0.023323555,-0.014104758,0.0010157138,-0.02445615,0.022072433,0.016053876,0.003829093,0.013656989,0.013867704,-0.0031887158,-0.003374738,0.021269081,-0.0015671954,-0.0036545943,-0.0026981442,0.0014116282,0.023679137,0.024377132,0.010147261,-0.010298713,0.032897934,-0.01814786,0.01996528,-0.03898234,-0.0023557318,-0.01856929,0.05133553,0.015487578,-0.0030076324,0.006542053,-0.008626159,-0.0034866806,-0.0025384615,-0.023231367,0.0053041005,-0.017950313,-0.013182879,-0.011701287,-0.007743789,0.008718347,-0.029184075,-0.0029878777,-0.01627776,-0.019636037,0.0073157735,-0.003575576,0.00701287,0.0028216103,-0.017278658,0.001132595,0.01908291,0.0033879078,-0.008626159,-0.005544448,-0.01767375,0.0058539356,-0.007058964,0.032818917,0.009403173,0.012023944,-0.0027146062,-0.00565639,0.046041302,-0.030000597,-0.01852978,-0.014881771,0.010140676,0.0012116133,0.0043196646,-0.023863513,-0.0027129601,-0.01405208,0.006986531,-0.017739598,-0.0032101166,-0.016369948,0.035479195,0.006439988,0.024245435,0.015540257,0.038692605,-0.003042203,0.006726429,0.024535168,0.0059823403,0.014763244,-0.0004959219,0.0006280305,0.025997005,-0.01859563,-0.004708171,-0.0016939539,0.03945645,-0.011661777,-0.015698293,0.013894043,-0.0019194852,-0.023692306,-0.08591919,-0.02535169,0.023824004,0.010739898,-0.006986531,0.019530678,0.008731517,0.025167314,0.0015227477,0.020702783,0.005093385,-0.016712362,-0.016001197,0.0063049984,0.0011943281,-0.010318467,-0.0033549834,-0.026049685,-0.01203053,0.032739896,0.004536965,-0.005893445,-0.015698293,-0.0054753064,-0.014908111,0.008132296,-0.029263094,0.0010436994,0.020241844,0.0052975155,0.0116025135,-0.011727626,-0.013815025,-0.031133194,-0.020557916,-0.02315235,-0.002033074,-0.025391199,0.0062654894,-0.014552529,-0.019306794,-0.008099372,-0.013525291,-0.020149656,0.0047213407,-0.01108231,-0.03582161,0.009192457,0.040035915,-0.035136785,0.010259204,-0.018279556,-0.0116815325,-0.018108351,0.005518108,-0.003983837,0.005662975,-0.0020314276,-0.0017137084,0.014236456,-0.015606105,-0.015052978,-0.0043032025,0.03761269,0.017476205,-0.0031920082,-0.009594133,-0.021506134,0.0065453453,-0.024838071,-0.02090033,0.0018421131,-0.028815323,0.024311284,-0.024113737,-0.0008527387,-0.016475307,-0.021466626,0.03403053,0.016383119,-0.026602812,-0.0058045494,0.0007761897,-0.017739598,0.02357378,0.010759653,0.006202933,0.009245136,-0.018450763,-0.020123316,-0.0046982937,0.038192157,0.01403891,-0.0073091886,-0.02950015,-0.01908291,0.0028726428,0.0057716253,0.02266507,0.0081125405,0.025206823,-0.0073618675,-0.0751727,0.019807242,-0.006249027,0.023310386,0.012425621,-0.008981742,-0.015566597,-0.023771325,-0.009646812,-0.008751272,-0.011055971,0.019596528,-0.0021450163,0.002288237,-0.009877282,-0.034109548,0.039693505,0.0011301257,0.008961987,0.013867704,-0.014578869,-0.011161328,0.023205027,0.012320263,-0.018793175,0.026589643,-0.013736007,-0.0063675544,-0.019820413,-0.008718347,-0.011187668,-0.0036677641,-0.0043427115,0.021097874,-0.0067626457,-0.005478599,-0.010377731,-0.0063346303,-0.00097373535,0.017002095,-0.005491769,-0.017146962,0.018266387,-0.011885663,0.009409757,-0.0118066445,-0.011404968,-0.0069075124,0.011865908,0.014104758,0.027709069,0.009844358,-0.0068087396,-0.015474409,-0.033714455,-0.010555522,0.016369948,0.007506734,-0.016014367,-0.026681831,0.041458245,0.016567495,0.010588447,-0.023205027,0.0035097275,0.0032726726,-0.015105656,0.021545645,-0.00023108724,-0.025391199,-5.3553387e-05,-0.0071709068,0.008422029,-3.7631416e-05,-0.004026639,0.0121358875,0.012590243,-0.016870398,-0.019346302,-0.004092487,0.00701287,0.007789883,-0.027972462,0.009567793,0.01631727,0.041405566,-0.016369948,0.019385813,-0.018463932,0.0041945525,-0.017963484,0.018832684,0.016185572,0.011464232,0.021598324,0.017331338,-0.0071840766,0.0026586351,0.015276863,0.01359114,0.01908291,-0.006416941,-0.0059658783,-0.02673451,7.1250183e-06,0.021005686,-0.031291228,-0.030105956,-0.011200838,0.001741694,0.006542053,0.011161328,-0.0056432206,0.018687818,-5.0955456e-05,0.03308231,-0.0055510323,-0.013630649,-0.02129542,0.021571985,-0.0072565097,-0.0018519904,-0.0048958394,-0.0071906615,0.028393893,-0.00556091,0.023850344,-0.0023211613,-0.0078030527,-0.036401078,-0.0026108949,0.0048431605,-0.0074606403,-0.017318169,0.0038192158,-0.016567495,-0.008263992,0.020979347,0.012346602,0.061318167,0.00052596524,0.0024182878,0.00046875933,0.0033697993,0.007565998,0.004184675,0.008079616,-0.023323555,-0.021519305,-0.0036019154,0.0042834477,0.0017038311,-0.013498952,-0.03711224,0.019794073,0.0006671281,-0.022941634,-0.008349596,0.0036578868,0.028894342,-0.0033401675,0.009120024,-0.009844358,-0.0066935048,0.02402155,0.02491709,0.019715054,-0.016844058,-0.013340916,0.000193533,-0.010140676,-0.049281053,-0.00069470215,0.031291228,0.001957348,-0.0024051182,0.012853636,-0.014394492,0.020057468,0.02489075,0.011609099,-0.012853636,0.0097719245,-0.002227327,-0.0045962287,0.0023162225,0.002210865,0.0052448367]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('4237384c-a5da-11ee-8347-6b9958092965', 'Gaming', 'this article is about PlayStation', '[0.013278742,-0.005568505,0.008190504,-0.03987517,-0.022780247,0.0130580785,-0.021066861,-0.011240851,0.0022650445,-0.039459802,0.024714297,0.010741114,-0.0024743502,-0.0004904081,-0.004747507,0.006123408,0.025506089,0.0074116928,0.045404732,-0.01179251,0.005373802,-0.020145267,-0.009365212,-0.0024792177,-0.0009800049,0.0052667153,0.000681866,-0.022092296,0.011266812,-0.003413792,0.008404678,-0.010591841,0.010747604,-0.022858128,-0.0044457177,-0.008372228,0.013220332,-0.007768648,0.020223148,-0.003608495,0.009936341,0.020223148,-0.026038276,0.0010408496,0.009644287,0.009384682,0.011909331,-0.002174183,-0.006042282,0.012817945,-0.0037318068,0.012830925,-0.05205059,-0.025181584,-0.0021563354,-0.015576237,-0.015342593,0.016497832,0.016900217,-0.016627634,-0.009689718,-0.0005897877,-0.01901599,0.006308376,-0.028322792,0.0121364845,0.0015908855,0.0080996435,-0.004848104,-0.0076453364,0.043924987,0.033956196,-0.0011568601,0.020119306,-0.008112623,-0.013434504,-0.0056042005,-0.0058248634,0.007489574,0.0044976384,0.014849346,-0.03221685,0.016497832,0.00593195,0.024623435,-0.0047085667,-0.008781103,0.010708663,0.02296197,-0.0029546174,0.014122455,0.010728133,0.008021762,-0.00011175139,-0.0237278,0.028115109,0.0059644007,-0.0029724652,-0.0026479603,-0.014654643,0.02767378,0.016225247,-0.022416802,-0.009086139,-0.027466098,-0.0041049877,-0.00015282155,0.010864425,0.028997762,-0.009300312,-0.020781297,0.01311649,0.033904277,-0.023377337,0.00624023,0.0023510384,0.01312298,-0.001134956,0.000856693,-0.012006682,0.03486481,0.024908999,0.026687287,0.006697782,0.017614128,-0.001969745,-0.022287,-0.012856886,-0.0012485328,0.005734002,0.032606255,0.012233837,0.0048513487,-0.014797425,-0.0075739454,-0.008813554,0.012986688,0.018691484,-0.008722693,-0.017250683,0.00722348,0.011954762,-0.010818995,-0.020781297,-0.006782153,0.023182632,0.0118184695,0.00853448,0.01577094,0.008119114,0.006584205,0.008638321,0.028089147,-0.005711287,0.005805393,-0.02030103,-0.008949846,0.013207351,0.003942735,-0.026194038,-0.0061331433,-0.010455549,0.0016590315,-0.018821286,0.0011519926,0.039459802,0.030685186,0.038343504,-0.00012949776,-0.008923885,-0.022806207,0.0055295643,-0.027284374,0.021495208,-0.0143950395,0.017653069,-0.0035630642,0.011682178,-0.024454692,0.0037967078,-0.012006682,0.00013477096,0.032684136,0.03361871,-0.0024597475,0.0148233855,0.013940732,-0.0034105468,0.0026674306,0.0057924134,0.022299979,0.037071444,0.004802673,-0.016056504,-0.6687398,0.0009410643,-0.014927227,0.013771989,0.0051661185,0.033307187,0.032320693,0.014979148,-0.015342593,0.023403296,-0.0075090444,-0.0010530185,-0.0014870439,-0.0027631596,-0.009086139,-0.019535197,0.00490976,-0.023987405,-0.0027388218,-0.0007293249,-0.01830208,-0.0058735395,-0.023922505,-2.5554764e-05,0.0060747326,0.021936534,0.004711812,-0.005844334,-0.0008205919,0.01249993,-0.02364992,0.016692534,0.008171034,0.021741832,0.025350327,-0.01508299,0.00491625,0.034501366,0.0064803637,0.056697503,-0.02101494,0.014836366,0.002860511,0.009579386,-0.029309286,-0.0047247917,0.03076307,-0.021443287,0.0032888576,-0.0042477697,0.008670772,-0.012207876,0.008917396,-0.017263662,-0.0017766645,0.015822861,0.006697782,0.006564735,0.020963019,-0.008871965,-0.030659227,0.012798475,-0.0289718,-0.017276643,-0.011468004,0.010403628,0.006873015,0.0004697209,-0.0084176585,-0.0148233855,-0.014252257,0.0018821287,-0.026038276,0.00054354576,0.009618326,-0.0036701509,0.008047722,-0.015446435,-0.023922505,0.011695158,0.004186114,0.002458125,-0.03668204,-0.028712196,0.05773592,-0.015225772,-0.014992128,0.014654643,0.010137535,0.005513339,0.016679553,0.010695683,-0.017562207,0.0130580785,0.006632881,0.0020638513,-0.008326797,0.0047247917,-0.009968792,0.013603247,-0.008132094,0.0028767362,0.026427682,0.008495539,0.041692395,0.021352425,-0.014979148,0.021209642,0.013668148,-0.033281226,0.012791985,-0.0018156051,-0.027466098,0.009099118,-0.0008201862,-0.035721503,0.0054679085,-0.015511336,-0.0029708426,0.0042639947,0.029776573,7.788119e-05,-0.0018480556,0.009060178,-0.021456266,0.03561766,-0.0075285146,-0.016199287,-0.020599574,-0.013343643,0.00072973047,-0.011980723,0.009384682,-0.0058897645,-0.0020249109,0.0035890245,0.00658096,0.0012071583,0.02886796,-0.020080365,-0.023351375,-0.011974232,-0.012986688,0.01839294,-0.0025522313,-0.041199148,-0.00074920076,-0.017380485,-0.010721643,0.023559058,0.010299787,-0.0023023626,0.008755144,0.028478554,-0.0094495835,-0.014083514,-0.0098000495,-0.0024597475,-0.016030544,-0.008910906,0.007307851,0.0041569085,-0.027803583,-0.0012907184,-0.019418376,-0.007943881,-0.030036177,0.007632356,-0.0052310196,-0.011552376,0.023299454,0.029205445,0.008196995,-0.00068592234,-0.014498881,0.008579911,0.0085604405,-0.014213316,0.0156021975,0.012337678,-0.0060195667,-0.007152089,-0.009125079,0.0107865445,0.008093153,-0.019522218,0.021625008,0.052829403,-0.022572564,0.0054224776,0.012882846,0.023234554,-0.021845672,0.0032856124,-0.023766741,-0.017367505,0.004095252,0.010163494,0.002622,0.0079244105,0.0210409,-0.018678505,0.018639565,-0.020612555,0.013174901,-0.03019194,0.009456074,-0.0016509189,0.024649395,-0.005922215,0.017289624,-0.022209117,-0.01050098,0.014369079,0.0076907673,0.012110525,-0.014706564,0.005977381,-0.010001242,-0.025532048,-0.00042388457,-0.0076583168,-0.012084564,-0.006100693,-0.008125604,0.04722196,0.014654643,0.03294374,0.014265237,-0.041692395,-0.020210167,0.009157529,-0.015329613,0.005172609,0.019431356,0.0019291819,0.037928138,-0.006428443,0.021897594,-0.012967218,-0.002328323,0.029620811,0.015550276,-0.010669722,-0.0010935817,0.011721118,0.017860752,-0.00056910055,-0.027232455,-0.01050747,-0.049662236,-0.018107375,-0.017834792,0.029828494,0.0059514204,-0.0014034839,-0.017834792,0.0003786567,0.016004583,0.026025295,0.010027203,-0.018289099,0.01713386,0.01709492,0.014992128,-0.0020460037,-0.010844955,-0.0044359826,-0.00015839898,-0.018250158,-0.010961777,0.020911098,2.3780127e-05,-0.0127400635,0.00311038,0.012843906,0.02098898,-0.016978098,0.008411168,0.033125464,-0.009267861,-0.036370512,-0.006256455,0.026207019,0.0015446435,-0.023325415,-0.022884088,-0.014498881,-0.0073922225,0.025467148,0.012993177,0.029205445,0.033255268,0.00032612745,-0.00789845,0.019768842,0.053374574,-0.003608495,0.0048156534,-0.010767074,0.019561158,0.0035111434,0.0010424721,-0.015654119,0.01910685,0.0025100457,-0.016225247,-0.014122455,0.014174376,-0.010176475,0.0054030074,-0.010695683,9.6337404e-05,-0.012506421,-0.005062277,-0.016082466,-0.017237702,-0.009235411,0.0353321,0.012876356,-0.022209117,-0.008625342,-0.01374603,0.006847054,0.08956336,-0.0053381063,0.00918998,0.020469772,-0.027362257,-0.017445385,-0.0157969,-0.0041666436,0.0016582202,0.011669198,-0.014343118,0.016549751,-0.00040400866,-0.014901266,0.019768842,0.002867001,-0.006110428,0.00312336,0.005662611,-0.018457841,0.010695683,0.0024840853,-0.0094495835,0.029023722,0.014628682,-0.012636222,0.011429064,-0.0022163687,-0.013499405,-0.0115329055,-0.026817089,-0.021819713,-0.027128613,0.0009264616,-0.0016192796,0.0074116928,-0.0013012649,0.02100196,-0.0051466483,0.018717445,0.005759963,0.0023510384,0.003540349,-0.01963904,0.013064569,-0.018600624,-0.009008257,0.029465048,-0.012753044,-0.021663949,0.0054289675,-0.009436604,-0.035202295,-0.021832692,-0.01703002,-0.0091640195,-0.011039658,0.00784653,-0.013434504,-0.04813057,-0.004676116,-0.03084095,-0.009086139,-0.0124869505,0.021897594,-0.022079317,-0.0025879268,-0.017614128,-0.0057826783,0.009157529,0.004728037,-0.019574137,-0.030607305,-0.00015393703,0.03086691,-0.017510287,0.02291005,0.0036279652,0.007859509,0.017055979,-0.01700406,-0.004604725,0.0019275594,-0.04067994,-0.0033716063,-0.008015272,0.0011901219,-5.648414e-05,-0.029958297,0.0058216187,0.038291585,0.010948797,0.0071131485,0.020482752,0.011584827,0.019171752,0.010364688,-0.0017020284,0.003150943,0.00011296828,0.0007508233,-0.009086139,-0.008041233,-0.0075350045,-0.0053381063,-0.015031069,0.00789845,0.005646386,-0.00011438799,-0.0010311145,0.011500455,-0.0065387744,-0.016277168,-0.009864951,0.011305752,0.013538346,0.0029010742,0.013629207,-0.02093706,-0.0056918166,0.0007248629,-0.037123363,0.02697285,0.019366454,-0.014719544,-0.0021401101,-0.010403628,-0.024143167,-0.023507139,0.016342068,-0.009962302,0.0101180645,-0.011545885,-0.027985306,-0.018133337,-0.0068859947,0.0029886905,0.013914771,0.010221906,-0.025454167,-0.025532048,0.011766549,-0.0042380346,0.010741114,0.0005066333,-0.03333315,-0.006642616,0.012714104,-0.0009159152,-0.002338058,0.010760584,-0.009826009,-0.025285425,-0.0078010987,-0.029724652,-0.0056723463,-0.020443812,-0.021222623,0.024727276,0.02751802,0.027050732,-0.019729901,-0.0149661675,-0.0027144838,0.00072689104,-0.009092628,-0.0018302079,0.0007743499,-0.033722553,0.010169985,0.027829543,-0.004676116,0.026635366,-0.007638846,0.004406777,0.022923028,0.018120356,0.02100196,-0.02559695,-0.019392416,-0.003417037,-0.018522741,0.002068719,-0.01248046,-0.020716395,-0.017653069,0.016251208,0.008826534,-0.0010651875,0.010364688,-0.005253735,-0.021248583,0.0013564307,0.012272777,0.01696512,-0.037980057,8.683042e-06,-0.024908999,0.020145267,0.007840039,0.00245488,0.028997762,-0.018873207,0.009637796,-0.0042347894,0.018509762,-0.01639399,-0.018353999,-0.0021530902,-0.020612555,-0.0062012896,-0.018224197,0.018860226,-0.023494158,-5.037432e-05,0.0028037226,-0.009955811,0.03465713,0.010092104,-0.059033938,0.018457841,0.017601147,0.039044436,0.009657267,0.006045527,0.036422435,0.012804965,-0.028790079,-0.013823911,0.00789845,-0.013616228,0.023922505,0.03935596,-0.023753762,0.003305083,0.0019308043,-0.010630782,-0.01181198,-0.026414702,0.014797425,-0.001809115,-0.0033813415,-0.0048837992,0.0056139356,-0.009968792,0.022559583,0.0021855407,0.014135435,-0.016497832,-0.023533098,0.0030909094,0.016822336,0.013278742,0.008897926,-0.004796183,0.003614985,0.00015190887,0.004419757,-0.010131044,-0.008359247,-0.003314818,0.040939543,-0.023779722,0.009475544,0.03751277,0.014875307,0.005526319,-0.013032119,0.010280317,0.026765168,-0.0025846818,-0.025934435,0.01374603,0.021287523,-0.00063968037,-0.013473446,0.0030535916,-0.023039851,-0.013901792,-0.028452594,0.017017039,-0.031438038,-0.01375901,0.00457552,-0.013207351,-0.022183158,0.0026382252,0.0057534724,-0.007424673,0.0056723463,-0.010124554,-0.025077742,-0.031905327,-0.006490099,0.012207876,-0.0053478414,0.03219089,0.023429256,-0.031645723,-0.0016468626,-0.0109293265,0.0015081367,-0.0126297325,0.0135513265,-0.0031412079,-0.0236629,0.025376286,-0.020755336,-0.013577287,-0.008060703,-0.0059481757,0.014784445,0.010020712,0.0002823193,-0.00067415903,0.006905465,-0.01708194,-0.012967218,-0.02027507,-0.04062802,0.007353282,-0.014810406,0.02749206,-0.005785923,0.011519926,-0.006697782,0.02093706,-0.0020216657,-0.004786448,-0.027985306,-0.004792938,0.015018089,-0.014628682,-0.014953188,-0.023143692,0.004059557,-0.01244152,-0.009501505,0.00043929857,-0.0046306853,0.004737772,0.02502582,-0.0016517302,-0.015368554,-0.0031752808,-0.015978623,-0.014356098,-0.023481177,-0.020080365,0.0011811979,-0.010591841,0.022819187,0.024701316,-0.012285757,-0.025376286,0.00028536154,-0.02422105,0.013103509,-0.0060260566,0.021170702,0.01780883,-0.0013418279,0.0025798143,0.02232594,0.0034689577,-0.005072012,-0.014252257,-0.016653594,0.010916346,-0.021547128,-0.037772376,-0.0054030074,-0.0069768564,-0.012259796,0.011104559,0.0023948464,-0.0028897165,0.025960395,0.0057534724,0.0023348131,-0.041744314,-0.009553425,-0.009280841,0.016069485,0.008171034,-0.023572039,0.011208401,0.026012316,-0.0009475544,-0.0034592226,-0.00724295,0.034241762,0.00624672,0.0028329282,-0.0008169412,-0.016666574,-0.004114723,-0.010741114,0.004059557,-0.0033651162,-0.019418376,0.02163799,-0.0011568601,-0.026310861,-0.008774614,0.016277168,0.010715153,-0.003485183,0.013849871,-0.013966693,0.0050200913,-0.0016533526,-0.0049065147,-0.011059129,0.007930901,-0.021884613,-0.005922215,-0.020911098,0.019613078,0.016056504,-0.00075001206,-0.0005463852,-0.016588692,0.010721643,0.005143403,-0.011396614,-0.008034742,-0.031905327,0.0049065147,-0.007755668,-0.012688143,-0.017120881,0.0071910294,0.013953713,-0.022728326,0.0040563117,0.21515976,-0.017120881,0.006159104,0.021287523,0.009650777,0.0050038663,0.015926702,-0.009073158,-0.016783396,0.016991079,0.0056561213,0.0315938,-0.008164545,-0.0011300885,-0.003819423,-0.023597999,-0.0021936535,-0.009384682,-0.025376286,0.011442044,0.018457841,-0.02555801,-0.013771989,-0.009968792,0.012928277,-0.013823911,-0.015199811,0.010066143,0.015991604,0.024065286,-0.0089887865,-0.015160871,0.0054743984,0.022845147,-0.018925129,0.0024418996,0.02767378,-0.009228921,0.025921455,0.0028394181,0.0011536151,0.040134773,-0.0034429973,0.003253162,-0.016355049,0.005198569,-0.015900742,0.009572896,-0.002071964,0.008041233,-0.029854454,-0.021625008,0.014979148,0.0065420195,-0.018016513,-0.011474495,0.025129663,0.0275959,-0.01444696,-0.010040183,-0.0064738737,0.03681184,-0.017276643,0.014031594,-0.020145267,0.027180534,-0.0048416136,0.0053673116,0.018016513,0.0039297547,-0.0050492967,0.0049551902,-0.020703414,-0.018704465,-0.021352425,-0.017562207,0.029231405,-0.02488304,0.047040235,0.009702697,-0.010916346,0.0109293265,0.0077102375,-0.020690436,-0.003355381,-0.03675992,0.011474495,-0.0058930097,-0.02107984,0.011078599,0.02168991,0.02301389,-0.0075999056,-0.011688668,-0.00040907905,0.002591172,0.00263498,0.01836698,-0.015329613,0.0057437373,-0.011455025,0.045560494,0.0034462425,-0.0006595563,-0.0315938,0.0149661675,-0.010267336,0.05246596,-0.01708194,0.0022747796,0.012422049,0.0044294926,0.0060098316,-0.0057502277,0.012759535,0.021871634,0.0036409455,-0.008904415,0.0029513724,-0.021313485,0.0115653565,-0.0012177047,0.0009224053,-0.010961777,-0.0043061804,-0.018899167,-0.01575796,-0.0015381534,-0.021196663,-0.015537296,0.036370512,-0.014732524,-0.01897705,-0.011364163,0.0036961113,0.014304178,0.017756911,0.016705515,-0.02168991,0.013564306,0.005957911,0.013992653,0.008391698,0.0056885714,-0.0055295643,-0.010423099,0.0134085445,0.028660277,-0.0074571236,-0.0016922932,-0.035254218,-0.0044294926,0.0028313056,-0.0015989981,0.008391698,-0.029413128,-0.02636278,-0.023636939,-0.008820044,0.026038276,-0.022131236,0.011234361,0.026661325,0.004867574,-0.0023834887,-0.0021628253,-0.16583501,0.0020914343,0.0076583168,-0.018522741,0.033670634,-0.014875307,0.03496865,0.016108425,0.010040183,0.010111574,0.015199811,0.008768124,-0.031775523,0.0019713675,0.020223148,0.0027566694,-0.027154574,0.006194799,-0.0045690294,0.0007763781,0.051635224,-0.018548703,-0.00030381774,0.0013304702,0.00122744,-0.013291722,-0.0010116441,0.018250158,0.019794801,-0.00917051,-0.0055587697,-0.010656742,0.029283326,0.038421385,-0.00045187311,0.008093153,0.0108968755,-0.0071845395,-0.005454928,0.024844099,0.0063700317,-0.018717445,-0.009780579,-0.008411168,0.020729376,0.008709713,0.025259465,-0.001867526,0.025402246,-0.024649395,0.006295396,-0.028504513,-0.017406445,-0.016082466,0.048286334,0.007976332,0.00064414233,0.0064738737,-0.0026090196,0.011500455,-0.014914247,-0.024558533,0.0073857326,-0.0063375817,0.0064057275,-0.0029692203,-0.0026057747,-0.010176475,-0.030737108,0.0048124082,-0.016614653,-0.015939683,0.019223673,-0.020950038,0.008112623,0.0012931522,-0.025986355,-0.0011179196,0.024649395,0.012986688,0.0020297784,-0.017302603,-0.011656217,-0.007742688,-0.007100168,0.02894584,0.012538871,0.012980198,-0.019963544,0.003540349,0.031308237,-0.028556434,-0.020495731,-0.021313485,0.012727084,-0.005724267,0.0021693155,-0.004419757,-0.009462564,-0.022183158,0.008949846,-0.008365737,-0.0064965887,-0.00428671,0.030996712,-0.00053908385,0.012649203,0.015070009,0.045534533,-0.005007111,0.011902841,0.023753762,0.009034217,0.00041942263,-0.0032044863,0.0107540935,0.036422435,-0.025389267,-0.0007171559,-0.020521693,0.05197271,-0.014589742,-0.007703747,0.024065286,0.0018188502,-0.02236488,-0.078400396,-0.024078267,0.027362257,0.007028777,0.0026463377,0.013486425,0.012980198,0.023494158,-0.0075739454,0.014278217,0.018808307,-0.018496782,-0.008112623,-0.004114723,-0.0035111434,-0.0064803637,-0.0007861132,-0.026064238,-0.015433455,0.03084095,-0.008119114,-0.0023218328,-0.009936341,-0.0033780965,-0.014771465,0.006110428,-0.022533624,-0.0039070393,0.0171079,0.007625866,0.007755668,-0.011338202,-0.012227346,-0.024623435,-0.01771797,-0.02827087,-0.009378193,-0.012850395,0.03154188,-0.016887236,-0.021806732,-0.02429893,-0.028764118,-0.026414702,0.00073622057,-0.006950896,-0.03933,0.0017231213,0.02428595,-0.04722196,-0.010721643,-0.010111574,-0.003318063,0.00624672,0.011526415,-0.020067386,-0.0043743267,0.00065266056,0.00041475787,0.018808307,-0.039849207,-0.0079568615,0.008021762,0.029049681,0.03084095,-0.0018496781,-0.030295782,-0.024337871,0.015848821,-0.012019663,0.0027566694,-0.010780054,-0.03026982,0.02751802,-0.017120881,-0.011396614,-0.023117732,-0.010124554,0.023714822,0.01050098,-0.018224197,-0.0029497498,0.016900217,-0.008132094,0.024519593,-0.005325126,0.013343643,0.0014408019,-0.012824435,-0.01904195,-0.013486425,0.02309177,0.008696732,-0.0013004536,-0.027829543,-0.022429781,0.0038388935,-0.003871344,0.014732524,0.011052638,0.0063148662,-0.012233837,-0.0779331,0.00984548,-0.0059287054,0.011104559,0.0014594609,-0.0074116928,-0.003923265,-0.018133337,-0.005081747,-0.029698692,-0.0135513265,0.014291198,0.0019308043,0.0024175618,-0.009728658,-0.022767266,0.042211603,0.013019138,-0.004410022,0.008274876,-0.027959345,0.0069379155,0.037798334,0.002273157,-0.020638514,0.027855504,-0.021209642,-0.012954237,-0.01975586,-0.021443287,-0.015719019,0.0010611311,-0.0014951566,0.013564306,0.0020411361,-0.01182496,-0.022092296,0.0029205445,0.0056009553,0.029776573,0.00028556434,-0.019613078,0.011688668,-0.0069963266,0.012843906,-0.016355049,-0.017795851,-0.00042429022,0.01971692,0.019600099,0.019353475,0.017964594,-0.010870916,-0.0037739924,-0.025376286,-0.019236652,0.01443398,0.017250683,-0.017562207,-0.037798334,0.03621475,0.016134385,0.008716202,-0.025402246,0.0049649253,0.017484326,-0.0121364845,0.0077167274,0.0032775,-0.03154188,0.0024175618,0.006149369,0.006918445,0.0042996905,-0.001276927,0.0027144838,-0.00014917087,-0.012259796,-0.017588168,0.003803198,-0.0075804354,0.01900301,-0.03167168,0.0021952759,0.00989091,0.029698692,-0.016056504,0.023429256,-0.0275959,0.017640088,-0.016718494,0.022261038,0.012551851,0.018263139,0.02559695,0.013460465,-0.0042445245,-0.0040303515,0.00462095,0.012233837,0.008054213,-0.0071975198,-0.01580988,-0.015848821,-0.013655168,0.013888812,-0.030789029,-0.025363306,-0.0046404204,0.0035208785,0.01049449,0.019210692,-0.023935484,0.018821286,0.008190504,0.020651495,-0.0020151758,-0.02949101,-0.019197712,0.014304178,-0.00097270356,-0.0005646386,0.0101180645,-0.0031996188,0.017224722,0.001085469,0.031957246,-0.001771797,0.006373277,-0.033125464,0.0077881184,-0.010247866,0.004312671,-0.008372228,0.009793559,-0.015199811,-0.012889336,0.026946891,0.01249993,0.064070255,-0.0012574566,0.007547985,0.0025441188,0.020963019,0.0021222623,0.0032012411,0.006808114,-0.020872157,-0.022637464,-0.007366262,-0.005967646,0.005980626,-0.010098593,-0.02232594,0.020495731,-0.003923265,-0.01784777,-0.011098069,0.0036928663,0.03600707,0.0010619424,0.010163494,0.0052764504,-0.0024727276,0.022650445,0.028426632,0.007976332,-0.0050849924,-0.012675163,0.0010230019,-0.0054127425,-0.0591897,-0.011052638,0.020586593,-0.004734527,-0.0047572423,0.019548178,-0.021300504,0.024117207,0.00462095,0.0044976384,-0.015057029,0.004410022,0.008956336,-0.0013539968,0.0121364845,-0.0006141256,-0.008034742]'); +INSERT INTO omnivore.discover_topic_embedding_link (id, discover_topic_name, embedding_description, embedding) VALUES ('424165f6-a5da-11ee-8347-43477a2c8ac9', 'Gaming', 'this article is about Nintendo', '[0.007452096,-0.007818807,0.013581412,-0.020247698,-0.021780027,0.0014177317,-0.022487255,-0.016515102,0.00049849803,-0.038792808,0.02965122,0.013391508,-0.011034079,-0.007046094,0.007825355,0.012193148,0.023430228,0.0037489673,0.0495584,-0.019396404,0.0044954866,0.0065123984,-0.007949775,-0.0073407725,-0.0006798073,0.006790706,0.006888932,-0.027581923,0.016213875,-0.0054941196,0.019095177,-0.0066400925,0.004914585,-0.02763431,-0.022251513,-0.01193776,0.0047279554,0.0027274147,0.006934771,0.00019440606,0.025918625,0.014275543,-0.023037322,-0.0007542955,-0.0030237304,0.01994647,0.0014619336,0.0010207341,0.008722488,0.0048982142,-0.00768129,0.025250686,-0.050606146,-0.012009792,-0.008198615,-0.009940493,-0.007740226,-0.0063126716,0.012330664,-0.019461889,-0.013974316,0.013398056,-0.02957264,0.0052911188,-0.027791472,0.014616061,0.0043514213,-0.0036376442,-0.0009192337,-0.021256154,0.018217688,0.031746715,0.010745948,0.021334734,-0.00038860747,-0.029546447,-0.0063748816,0.001863024,0.0007551141,0.008977876,-0.0019710728,-0.022526545,-0.002827278,0.0031039484,0.015794776,0.017497364,-0.0030613837,-0.00094051607,0.00669248,0.004813085,0.0017680719,0.025905527,0.017877173,-0.003002448,-0.011957405,0.024975654,-0.011158498,0.015755486,0.0054941196,-0.0070526423,0.0073080305,0.027031856,-0.01833556,-0.011832985,-0.02061441,0.00226084,0.005729863,-0.0038930324,0.040573977,-0.019998858,-0.02453036,0.014799417,0.014773224,-0.032742072,-0.008873101,0.0076943873,0.024713717,-0.0024572925,0.015310193,-0.017366396,0.03572815,0.0151923215,0.012238987,0.00048867543,0.0089451345,-0.002702858,-0.028446313,-0.0016502005,-0.012821795,-0.008860005,0.034680404,0.00083533215,0.0077991616,-0.0033396913,-0.01676394,0.0056578303,0.00584446,0.008296841,0.001112412,-0.015847163,0.011643081,0.011911566,-0.011944308,-0.021583574,-0.006289752,0.01503516,0.0057134917,0.008748682,0.02610198,0.01263844,0.009056457,-0.0067023025,0.01449819,0.0013956309,0.010916207,0.0091874255,-0.005500668,0.016240068,0.0021740736,-0.022316996,-0.005955783,-0.0061817034,-0.013247442,-0.0020480168,-0.0013465177,0.040050104,0.031091873,0.028184377,0.0065811565,0.004724681,-0.014210059,0.016908007,-0.02433391,0.009835719,-0.010876916,0.0091874255,-0.012271729,0.0256043,-0.019265436,0.008696294,-0.02523759,0.0036900316,0.033318333,0.025617398,-0.014301738,0.0063781557,0.016750844,-0.0047279554,0.0071705137,0.021334734,0.016868716,0.041726496,0.022722999,-0.0008562052,-0.67391044,0.0050291824,-0.00017210052,0.003460837,-0.0030695694,0.021583574,0.027948633,0.01280215,-0.003712951,0.02771289,-0.010772142,-0.004659197,0.01854511,-0.004010904,-0.0029042219,-0.009357684,0.021125186,-0.014589868,0.0017189588,0.00016145935,-0.027529536,0.010392334,-0.009822622,-0.008002163,-0.00077230367,0.027817665,-0.00075306767,-0.001342425,0.011538306,0.0060507352,-0.019841697,0.02251345,0.0110078845,0.016698457,0.020457247,-0.0053827967,-0.008080743,0.031249035,0.004125501,0.047436714,-0.042852826,0.012448536,0.002386897,0.009809525,-0.018440336,-0.0042892117,0.026167465,0.0042728405,0.0033200462,-0.0024834862,0.0033085865,-0.006725222,0.004138598,-0.003048287,-0.010359592,0.019029694,0.0050193598,0.010261365,0.021924092,0.0005038186,-0.031772908,0.021243056,-0.040940687,0.00477052,-0.029389285,0.0015004055,-0.009652363,0.003742419,0.0072425464,-0.027031856,-0.009947042,0.00025845773,-0.025289977,0.015519743,0.0058084438,0.008833812,0.011053724,-0.008735585,-0.0148910945,0.015218516,-0.010595335,-0.0028731169,-0.029808383,-0.036042474,0.043167148,-0.013208152,-0.017850978,0.009390427,0.0059950734,0.014550577,0.014314834,0.004659197,-0.009324943,0.0031661585,-0.005890299,-0.007845,-0.011990147,0.0034149983,-0.005271474,-0.004282663,-0.014733933,0.0024785749,0.012317568,-0.014864901,0.014589868,0.009390427,-0.0066073504,0.035047114,0.026259143,-0.027870052,-0.0004571612,-0.01152521,-0.032951623,0.006561511,0.005467926,-0.031825297,0.015637614,-0.014799417,0.009324943,0.0001358796,0.032165814,0.009652363,-0.00036200453,-0.002100404,-0.026652047,0.026088884,-0.021164475,-0.020195311,-0.028393926,-0.024255328,0.012075276,-0.017104458,0.019880986,-0.012016341,0.0038340967,-0.012664634,0.0048621977,0.007740226,0.029808383,-0.021243056,-0.026180562,-0.0041713403,-0.01020243,0.011505565,-0.0024916718,-0.023561196,-0.0072359983,-0.003961791,-0.0053271353,0.017575944,-0.0036671122,-0.008106938,0.007504483,0.024870878,-0.011099563,-0.008290293,0.001137787,-0.014118382,-0.020470344,-0.00015480861,0.010569141,0.009331491,-0.025918625,-0.0030450127,-0.021046605,-0.018034333,-0.009246361,0.012985506,-0.0047017615,-0.008041454,0.018073624,0.012199696,0.0070984815,0.0045413254,-0.004151695,0.019186854,0.00024024496,-0.013267088,0.01676394,-0.00067244034,-0.0052616512,-0.016423423,-0.02416365,0.00793013,0.025368558,-0.02061441,0.044136316,0.030253675,-0.008251002,0.01226518,-0.0019399679,0.016999684,-0.014275543,-0.005376248,-0.015755486,-0.0021249605,0.005376248,0.012998603,0.014131479,0.020129826,0.01986789,-0.01272357,0.0047312295,-0.022683708,0.006489479,-0.03027987,0.009442814,0.0046984875,0.014681545,0.0012335576,0.03093471,-0.006289752,-0.009259459,-0.0015102281,0.014458899,0.009239813,-0.020064343,-0.0029975367,-0.023901714,-0.0029795286,0.003081029,-0.00031575636,-0.010392334,0.001691128,-0.00080913847,0.03523047,-0.001366163,0.028446313,0.005133957,-0.044136316,-0.0177593,0.018152205,-0.034785178,0.0091874255,0.022906354,0.009586879,0.033920787,-0.0036572895,0.027267598,-0.0007154143,0.0019383307,0.02692708,0.013633799,-0.0037064026,0.0075699673,-0.008048002,0.029310703,0.014616061,-0.015873358,-0.0030859404,-0.050868083,-0.014288641,-0.023823133,0.03035845,-0.0018826692,-0.018021237,-0.004610084,-0.0046952134,0.019763116,0.028891604,0.015297096,-0.014720836,0.01449819,0.027319986,0.00026541544,-0.0044594705,0.0052223606,0.0034084497,0.010274462,-0.0092922,-0.018243883,0.024962556,-0.017052071,-0.022316996,0.00016371037,0.0035263211,0.01259915,-0.01875466,-0.0016763941,0.032532524,-0.0007244184,-0.03027987,0.0077795167,0.025342364,-0.0046526487,-0.016410327,-0.023482615,-0.013024797,-0.017798591,0.017287815,0.013817155,0.032742072,0.03321356,-0.005304216,-0.0007047731,0.01342425,0.04274805,-0.010176236,0.0003644602,-0.0075896126,0.03714261,0.0015388774,-0.006017993,-0.007059191,0.014236254,0.0047672456,0.00020954927,-0.0054253615,0.011950857,0.0029467866,0.007412805,-0.0075110313,-0.011806792,-0.014432706,-0.0014905828,-0.0044038086,-0.021374024,-0.008192067,0.030698968,0.00051036704,-0.016790135,-0.016829425,-0.014485093,0.014052898,0.10315063,-0.01933092,-0.002748697,0.022605127,-0.017942656,-0.013149217,-0.0016632973,-0.0010076372,0.0061162193,-0.005602169,0.001375167,0.022041963,0.012173503,-0.018348658,-3.4404755e-05,0.0026275513,-0.013856445,-0.0008070921,0.0075634187,-0.009141587,0.007877743,0.0100976555,-0.01925234,0.029598834,0.012278277,-0.016331745,0.009423168,0.01305099,0.0006266014,-0.0151923215,-0.019029694,-0.02458275,-0.037771255,0.007386612,-0.018676078,0.013620703,0.0062832036,0.022644417,-0.008008711,0.009960138,0.0070657395,0.003791532,0.0068954807,-0.012592602,7.295343e-05,-0.031825297,-0.02387552,0.021007314,-0.022461062,-0.02965122,0.022631321,-0.028158182,-0.042643275,-0.015467355,-0.021295445,0.0053467806,-0.013633799,0.016960394,0.002686487,-0.047934394,-0.00048008063,-0.01193776,-0.011682372,0.0025031315,0.018885627,-0.031275228,-0.01313612,-0.010156591,0.0064174463,-0.0023836228,0.0070068035,-0.018741563,-0.03486376,-0.0067383186,0.027058048,0.0015241435,0.020208407,-0.00020115911,0.0006810351,0.0133718625,-0.0070329974,-0.0121866,-0.007825355,-0.028079601,-0.0025931722,-0.0050979406,0.0036114505,0.0035001277,-0.031563357,-0.009593427,0.038766615,2.6449456e-05,0.023967197,0.01503516,-0.0029647946,0.02692708,0.0032725702,0.00042196346,0.013123022,0.0033102236,-0.0037031285,-0.013339121,-0.008434358,-0.016292455,-0.014982773,-0.013450444,0.010503657,0.015428064,0.008565326,0.007903936,0.0053009414,-0.0044430993,-0.006967513,-0.001977621,0.01503516,0.010811432,-0.00095279433,-0.0059295893,-0.014183866,0.004246647,-0.00011398334,-0.037928417,0.013699283,0.008067647,-0.026232949,0.011210886,-0.011898469,-0.027791472,-0.028813025,0.007157417,-0.0025325993,0.016868716,-0.0075699673,-0.03151097,-0.024229134,-0.00613259,-0.0013882639,0.0024753008,-0.010248269,-0.02676992,-0.023600487,0.0063126716,0.015965035,-0.007059191,-0.008774876,-0.033239752,0.0114335315,0.003663838,0.01417077,0.004390712,0.017078266,-0.014105285,-0.019357113,-0.006947868,-0.009266007,-0.012284826,-0.01808672,-0.0121014705,0.015166128,0.01796885,0.04067875,-0.0056218137,-0.011787146,-0.0031923521,-0.0053598774,1.0474905e-05,-0.00053492363,0.019527372,-0.029520253,-0.0051536025,0.016292455,0.0055988943,0.024622038,-0.00041111765,0.0029287785,0.01086382,0.020954927,0.010693561,-0.03617344,-0.0066368184,0.0020562022,-0.0155590335,0.003300401,-0.004737778,-0.014314834,-0.02771289,0.034968533,0.0023197758,0.0068496414,-0.0016043616,-0.0051699732,-0.018466529,-0.004721407,0.020666797,0.00796942,-0.027058048,0.0093707815,-0.024202941,0.0037555157,0.012035986,0.0026144546,0.010045268,-0.018152205,0.010379237,0.0049833436,0.0239541,-0.03729977,-0.01317541,0.0050193598,-0.022853967,-0.011911566,-0.023102807,0.0050259084,-0.026141271,0.0073407725,0.012808699,-0.016554393,0.025303073,0.008499842,-0.05170628,0.013856445,0.01197705,0.05002989,0.0114335315,-0.00078826543,0.021413315,0.006001622,-0.028577281,-0.00698061,0.001524962,-0.01197705,0.017117556,0.027005661,-0.0114924675,-0.009933945,0.012913474,-0.0005930408,-0.009390427,-0.034549434,0.01850582,0.0033593366,-0.0054089907,-0.010896562,-0.003729322,-0.013817155,0.030489419,0.003411724,0.0012793965,-0.015467355,-0.025014944,-0.0032021748,0.023155194,0.011256725,0.021557381,-0.005107763,0.002668479,0.0012196422,0.01181334,-0.021059701,-0.009475556,-0.008473649,0.029913157,-0.018021237,0.007851549,0.021806221,0.0027061324,-0.011518661,-0.0073342244,0.017078266,0.026730629,0.0005860831,-0.0161091,0.0035525148,0.02226461,-0.0027454228,-0.011060272,-0.0065123984,-0.010700109,-0.028262958,-0.017536655,0.027974827,-0.03271588,-0.016344843,-0.0049211336,-0.014956579,-0.0123437615,-0.011957405,-0.007740226,-0.013450444,-0.0027143178,-0.01371238,-0.036147248,-0.020444151,-0.0040174522,0.0071443203,-0.0023607034,0.01961905,0.027896246,-0.02928451,-0.0015511557,-0.009816074,0.002683213,0.0017451525,0.003300401,-0.0031694327,-0.025132814,0.035492405,-0.022330094,-0.019710727,-0.007118127,-0.016292455,0.0064698337,0.01259915,-0.0040632915,-0.0032316425,0.013398056,-0.016868716,-0.015428064,-0.021334734,-0.032558717,0.0022673886,-0.00096016127,0.014105285,0.003978162,0.015231612,-0.011682372,-0.00017465849,-0.007714032,-0.023351647,-0.022657514,-0.015257806,0.013411153,-0.006947868,-0.010032171,-0.009894654,0.014655352,-0.018951112,-0.025630495,-0.01660678,0.00056848425,0.0033724336,0.019029694,0.008395067,0.0075634187,-0.007013352,-0.030227482,-0.017942656,-0.018741563,-0.035413828,0.003428095,-0.0074782893,0.034104142,0.0079759685,-0.005736411,-0.037928417,-0.020444151,-0.02928451,-0.0066400925,0.0054515554,0.016777039,0.02098112,-0.0034019013,0.008637358,0.020417957,-0.0056316364,-0.009442814,-0.025879335,0.0004788528,0.010962046,-0.009822622,-0.02345642,0.012042535,-0.0052812966,-0.011204338,0.02569598,0.012297923,-0.010248269,0.020483442,-0.0025489703,0.008539133,-0.04510548,-0.021871705,-0.011322209,0.01908208,0.0024785749,-0.025159009,-0.00012585234,0.018767755,-0.00087585044,-0.015781678,-6.435864e-05,0.02928451,0.011990147,0.013247442,-0.009266007,-0.009947042,-0.008657004,-0.023770746,0.004649374,-0.0017124104,-0.0040960335,0.028236764,-0.002224824,-0.020090535,-0.010019074,0.013024797,0.0010616618,-0.009567234,0.007877743,-0.015519743,0.0033446027,-0.010745948,-0.0035263211,-0.0020431054,-0.009901203,-0.007838452,-0.0069282227,-0.023443324,0.005955783,0.00018161618,-0.018165302,-0.010353044,0.00900407,0.031249035,0.012906925,-0.012730118,0.0016362851,-0.03350169,0.009030264,0.0027110437,-0.015978131,-0.014432706,0.009999429,0.0064698337,-0.016829425,-0.005605443,0.20357712,-0.00809384,0.012815247,0.012035986,0.010032171,0.002889488,0.028760636,-0.00032762537,-0.021282347,0.022788484,-0.0100976555,0.031065678,-0.00698061,-0.00429576,-0.0049669724,-0.031327616,-0.023888616,-0.014419609,-0.009135039,0.013221249,0.009534491,-0.030017933,-0.008912392,-0.0020512908,0.0015028612,-0.0194095,-0.024517264,0.011060272,0.026115077,0.027660504,-0.0023983568,-0.028184377,0.011387693,-0.00011613204,-0.013804058,-0.0016428335,0.020129826,-0.012278277,0.0057462337,-0.002038194,-0.0016084543,0.032899234,-0.005569427,0.003365885,-0.009023716,0.021112088,-0.019055886,-0.0021691623,0.0005627544,0.003493579,-0.032061037,-0.015414968,0.0049342304,0.014511286,-0.0050291824,-0.008617714,0.009095748,0.0013808969,-0.002719229,-0.00019184808,-0.0025178655,0.02834154,-0.009783331,0.017628333,-0.040154878,0.03250633,-0.01701278,0.027870052,0.014760126,-0.0010477463,-0.005448281,-0.00033560625,-0.028891604,-0.023587389,-0.024058875,-0.016672263,0.04777723,0.0030712064,0.047122393,0.0029631576,-0.015126837,0.012003244,0.0142231565,-0.003994533,-0.009076103,-0.0433767,0.003775161,-0.019880986,-0.0061358646,0.011865728,0.021832414,0.036435377,-0.0004555241,-0.0030204563,-0.005909944,0.0074979346,0.004325228,0.0144065125,-0.0045642448,-0.0062471875,-0.016082907,0.040626366,-0.0018008141,0.006934771,-0.032820653,0.01883324,-0.0005046372,0.050999053,-0.021072797,-0.0073735146,0.006551689,-0.003955242,0.011099563,-0.0050651985,0.009678557,0.014629158,0.0075110313,-0.014511286,0.008414713,-0.02606269,0.017444976,-0.0056872983,0.0036900316,-0.015480452,-0.013620703,-0.016318649,-0.004610084,0.002416365,-0.015113741,-0.012284826,0.041124042,-0.020784669,-0.004010904,-0.018034333,0.0068168994,0.017143749,0.019763116,0.0045740674,0.004551148,0.0024883975,-0.004377615,0.028236764,0.015912648,-0.0024130908,0.0070199003,-0.012566407,0.018767755,0.025407849,0.0028010844,0.005736411,-0.028158182,-0.012108019,0.0077271294,-0.0012507472,0.012055631,-0.01168892,-0.025722172,-0.026822306,-0.0039061294,0.02986077,-0.03457563,0.01482561,0.034601822,0.0019481534,-0.0091284895,0.0021986302,-0.16816328,0.011348402,0.0050979406,-0.01614839,0.02102041,-0.01417077,0.012808699,-0.0010894925,0.019317823,0.029782189,0.027817665,0.0023279614,-0.034208916,-0.017942656,0.019186854,0.017156847,-0.043298118,-0.0051306826,-0.0009192337,0.00268485,0.033449303,-0.011263273,0.0024933089,0.0061948,-0.008133131,-0.0019170484,-0.00596888,0.023521906,0.024294619,-0.00072319055,-0.010143494,-0.01478632,0.038190354,0.030017933,0.012304471,0.018885627,-0.0077009355,-0.0061162193,0.003382256,0.03093471,0.0073997085,-0.00071418646,0.0050259084,-0.007281837,0.016868716,0.014393415,0.014471997,-0.00578225,0.009455911,-0.02523759,0.013804058,-0.034785178,0.0045740674,-0.004485664,0.04060017,0.01586026,-0.0048065362,-0.0046984875,-0.0011975414,0.0032545622,-0.009475556,-0.021243056,0.025630495,-0.011636533,-0.007347321,-0.0010002704,0.0018499271,-0.0018302819,-0.028053408,0.0075241285,-0.020627506,-0.021216864,0.026180562,-0.010621528,0.010300656,-0.0050651985,-0.010994788,-0.014877998,0.005926315,0.0121014705,-0.0040076296,-0.0058673793,-0.021557381,-0.011859179,-0.0033085865,0.015205419,0.005055376,0.012153857,-0.0251983,0.0020087261,0.034785178,-0.039159518,0.003539418,-0.02308971,0.010935852,0.004865472,0.020745378,-0.014196963,0.0021495172,-0.024753006,0.005697121,-0.016056713,-0.0036278216,-0.009272555,0.043560054,-0.0029778916,0.018977305,0.011551403,0.037692674,0.010529851,0.02094183,0.02077157,0.013247442,-0.0029598833,-0.010320301,0.0002076052,0.020509634,-0.023783842,0.007386612,-0.025774559,0.06433163,0.0020643878,-0.0017795317,0.014236254,0.009338039,-0.0032496508,-0.08827263,-0.043167148,0.018099818,0.013024797,-0.013673089,0.022893257,0.009455911,0.026874693,0.010608432,0.016082907,0.008899296,-0.025748366,-0.0060212673,0.0017091362,0.006427269,0.0058673793,-0.009305297,-0.01937021,-0.015205419,0.03572815,-0.0049702465,-0.003523047,-0.012081825,-0.009802977,-0.008873101,0.011178143,-0.0383999,0.019553566,0.02834154,0.011656178,0.016685361,-0.007124675,-0.014314834,-0.0322182,-0.026363917,-0.013306378,-0.009848815,-0.010962046,0.025787657,-0.023142098,-0.005147054,-0.017798591,-0.03250633,-0.019841697,0.0056611043,-0.0017304185,-0.027267598,0.013489734,0.027346179,-0.03803319,0.00044119943,-0.013935026,-0.006240639,0.010091106,0.019514276,-0.008918941,0.0010935853,-0.008814166,-0.0020185488,0.0059492346,-0.018427238,-0.02176693,0.0091874255,0.015022063,0.025355462,0.0072425464,-0.03680209,-0.02295874,0.006142413,-0.009580331,-0.0032660218,-0.009396975,-0.030698968,0.028393926,-0.03316117,-0.014052898,-0.023535002,-0.013031345,0.023430228,0.02742476,-0.018112915,-0.012920022,-0.00054229057,-0.01639723,0.02552572,0.007772968,0.016161487,0.014118382,0.0046461,-0.002938601,0.007812259,0.027660504,0.020810861,-0.009200523,-0.016004326,-0.0040174522,-0.004122227,0.007314579,0.02366597,-0.006204623,0.0190035,-0.008100389,-0.07716652,0.016960394,-0.020928733,0.006299575,0.020208407,-0.011924663,-0.0077926135,-0.008820714,-0.0031808924,-0.032453943,-0.01701278,0.012147309,0.001665753,-0.0076027093,-0.0185844,-0.033554077,0.03172052,0.0024392845,0.004154969,0.013208152,-0.015637614,0.0058215405,0.040783525,0.011426983,-0.018846337,0.013620703,-0.01346354,-0.0077336775,-0.02433391,-0.023299258,-0.01251402,0.0010207341,-0.0004522499,0.0113745965,0.0086439075,0.00328403,-0.016908007,0.010588787,0.0077271294,0.028682055,-0.010516753,-0.0079759685,-0.0014422883,-0.023810035,-0.005467926,-0.008126583,-0.00850639,-0.00026009485,0.019763116,0.007484838,0.021675251,0.010372689,-0.007091933,-0.00995359,-0.03449705,-0.0117347585,0.020588215,0.014000511,-0.030201288,-0.016659167,0.019579759,0.010883465,0.004819633,-0.019383308,0.0061555095,0.0006744867,-0.011747856,0.018846337,0.005107763,-0.023757648,0.01032685,-0.011354951,0.013882639,0.013234346,-0.0021986302,0.010994788,0.00656806,-0.0081593245,-0.0251983,0.0007825355,-0.0068430933,0.009966687,-0.036409184,0.01660678,0.0094952015,0.033265945,-0.0023492437,0.022172932,-0.016096003,0.012913474,-0.025512623,0.01718304,0.0075699673,0.014930385,-0.0018548385,0.01796885,-0.013948123,-0.0026979467,0.019396404,-0.008296841,0.019553566,-0.0056611043,-0.0071639656,-0.03530905,0.0061849775,0.016724652,-0.031694327,-0.038347516,0.005749508,0.01478632,0.0017271444,0.037745062,-0.02151809,0.024661329,-0.005166699,0.028734444,-0.0025129542,-0.014537481,-0.0206537,0.02251345,-0.0030974,0.0015855349,0.016908007,-0.002542422,0.014052898,-0.0017909914,0.023548098,-0.01338496,8.9580266e-05,-0.03352788,0.011806792,0.009462459,-0.0123437615,-0.008905844,0.0025129542,-0.013882639,-0.014629158,0.010628077,-0.004980069,0.06742248,0.0068430933,0.0039585168,-0.0079759685,-0.003099037,0.011158498,0.0044300025,-0.0020676618,-0.0104643665,-0.019357113,-0.017746203,0.00018304866,-0.017405685,-0.0137385735,-0.032689687,0.00751758,0.0039355974,-0.0090892,-0.0113745965,0.005372974,0.02957264,-0.0022624773,0.004181163,0.001444744,-0.00082141673,0.015349484,0.039133325,-0.0042662923,-0.014864901,-0.008604617,0.0017517009,-0.008866553,-0.037771255,0.0015765309,0.01706517,0.0074651926,0.015532839,0.008061098,-0.017169943,0.031563357,0.01772001,0.017444976,-0.010929304,0.0043677925,-0.0050291824,-0.0042368243,0.012153857,-0.0018253706,-0.015794776]'); + +CREATE TABLE omnivore.discover_feed_articles ( + id uuid PRIMARY KEY, + feed_id uuid NOT NULL REFERENCES omnivore.discover_feed(id) ON DELETE CASCADE, + title text NOT NULL, + slug text NOT NULL, + description text, + url text NOT NULL, + author text, + image text, + published_at timestamptz NOT NULL DEFAULT current_timestamp, + embedding vector(1536), + UNIQUE(slug) +); + +GRANT SELECT ON omnivore.discover_feed_articles TO omnivore_user; + +CREATE TABLE omnivore.discover_feed_save_link ( + discover_article_id uuid NOT NULL REFERENCES omnivore.discover_feed_articles(id) ON DELETE CASCADE, + user_id uuid NOT NULL REFERENCES omnivore.user(id) ON DELETE CASCADE, + article_save_id uuid NOT NULL REFERENCES omnivore.library_item(id) ON DELETE CASCADE, + article_save_url text, + created_at timestamptz NOT NULL DEFAULT current_timestamp, + deleted bool NOT NULL DEFAULT false, + CONSTRAINT user_discover_feed_link UNIQUE(discover_article_id, user_id) +); + +GRANT SELECT, INSERT, UPDATE, DELETE ON omnivore.discover_feed_save_link to omnivore_user; + +CREATE TABLE omnivore.discover_feed_article_topic_link ( + discover_feed_article_id uuid NOT NULL REFERENCES omnivore.discover_feed_articles(id) ON DELETE CASCADE, + discover_topic_name text NOT NULL REFERENCES omnivore.discover_topics(name) ON DELETE CASCADE, + UNIQUE (discover_feed_article_id, discover_topic_name) +); + +GRANT SELECT ON omnivore.discover_feed_article_topic_link to omnivore_user; + + +INSERT INTO omnivore.discover_feed (id, title, link, description, type) VALUES('dacd3088-aadb-11ee-bbfe-5f5fa18779ea', 'ArsTechnica - All', 'https://feeds.arstechnica.com/arstechnica/index', 'All Stories from Ars Technica', 'rss'); +INSERT INTO omnivore.discover_feed (id, title, link, description, type) VALUES('405eb048-aadc-11ee-bbfe-ff801479b901', 'Wired', 'https://www.wired.com/feed/rss', 'The latest from www.wired.com', 'rss'); + + +INSERT INTO omnivore.discover_feed_subscription(user_id, feed_id, visible_name) +SELECT id, 'dacd3088-aadb-11ee-bbfe-5f5fa18779ea', 'ArsTechnica' +FROM omnivore.user +ON CONFLICT DO NOTHING; + + +INSERT INTO omnivore.discover_feed_subscription(user_id, feed_id, visible_name) +SELECT id, '405eb048-aadc-11ee-bbfe-ff801479b901', 'Wired' +FROM omnivore.user +ON CONFLICT DO NOTHING; + + +BEGIN; + +-- Create a trigger to Insert Default Feeds into Subscriptions on user create +CREATE OR REPLACE FUNCTION omnivore.create_discover_feed_subscription() + RETURNS trigger AS $$ + BEGIN + IF (NEW.status != 'DELETED') THEN + INSERT INTO omnivore.discover_feed_subscription(user_id, feed_id, visible_name) VALUES(NEW.id, 'dacd3088-aadb-11ee-bbfe-5f5fa18779ea', 'ArsTechnica'); + INSERT INTO omnivore.discover_feed_subscription(user_id, feed_id, visible_name) VALUES(NEW.id, '405eb048-aadc-11ee-bbfe-ff801479b901', 'Wired'); + END IF; + RETURN NEW; + END; +$$ LANGUAGE plpgsql; + +CREATE TRIGGER insert_discover_feed_new_user + AFTER INSERT ON omnivore.user + FOR EACH ROW EXECUTE PROCEDURE omnivore.create_discover_feed_subscription(); + +COMMIT; + +CREATE INDEX IF NOT EXISTS save_to_article_idx ON omnivore.discover_feed_save_link(discover_article_id); +CREATE INDEX IF NOT EXISTS user_to_save_idx ON omnivore.discover_feed_save_link(user_id); +CREATE INDEX IF NOT EXISTS feed_sub_to_user_idx ON omnivore.discover_feed_subscription(user_id); +CREATE INDEX IF NOT EXISTS articles_to_feed_idx on omnivore.discover_feed_articles(feed_id); +CREATE INDEX IF NOT EXISTS topic_idx ON omnivore.discover_feed_article_topic_link(discover_topic_name); +CREATE INDEX IF NOT EXISTS published_at_sort_idx ON omnivore.discover_feed_articles(published_at) diff --git a/packages/db/migrations/0153.undo.add_discover_feeds.sql b/packages/db/migrations/0153.undo.add_discover_feeds.sql new file mode 100755 index 000000000..8853a4dc0 --- /dev/null +++ b/packages/db/migrations/0153.undo.add_discover_feeds.sql @@ -0,0 +1,11 @@ +-- Type: UNDO +-- Name: add_discover_feed_tables +-- Description: Add Discovery Feed Tables, including counts. + +DROP TABLE omnivore.discover_feed; +DROP TABLE omnivore.discover_feed_subscription; +DROP TABLE omnivore.discover_feed_articles; +DROP TABLE omnivore.discover_feed_save_link CASCADE; +DROP TABLE omnivore.discover_feed_article_topic_link; +DROP TABLE omnivore.discover_topics CASCADE; +DROP TABLE omnivore.discover_topic_embedding_link; diff --git a/packages/discord/.env.test b/packages/discord/.env.test new file mode 100644 index 000000000..8610bab57 --- /dev/null +++ b/packages/discord/.env.test @@ -0,0 +1,2 @@ +API_ENV=local +DISCORD_BOT_KEY=BlaBlaBla diff --git a/packages/discord/.eslintrc b/packages/discord/.eslintrc new file mode 100644 index 000000000..11358f9c9 --- /dev/null +++ b/packages/discord/.eslintrc @@ -0,0 +1,11 @@ +{ + "extends": "../../.eslintrc", + "parserOptions": { + "project": "tsconfig.json" + }, + "ignorePatterns": ["**/index.ts"], + "rules": { + "@typescript-eslint/no-unsafe-argument": "off", + "@typescript-eslint/no-explicit-any": "off" + } +} diff --git a/packages/discord/Dockerfile b/packages/discord/Dockerfile new file mode 100644 index 000000000..563d9f772 --- /dev/null +++ b/packages/discord/Dockerfile @@ -0,0 +1,33 @@ + FROM node:18.16 as builder + +WORKDIR /app + +RUN apt-get update && apt-get install -y g++ make python3 + +COPY package.json . +COPY yarn.lock . +COPY tsconfig.json . +COPY .prettierrc . +COPY .eslintrc . + +COPY /packages/discord/src ./packages/discord/src +COPY /packages/discord/package.json ./packages/discord/package.json +COPY /packages/discord/tsconfig.json ./packages/discord/tsconfig.json + +RUN yarn install --pure-lockfile +RUN yarn workspace @omnivore/discord build + +FROM node:18.16 as runner + +WORKDIR /app + +ENV NODE_ENV production + +COPY --from=builder /app/packages/discord/dist /app/packages/discord/dist +COPY --from=builder /app/packages/discord/package.json /app/packages/discord/package.json +COPY --from=builder /app/packages/discord/node_modules /app/packages/discord/node_modules + +COPY --from=builder /app/node_modules /app/node_modules +COPY --from=builder /app/package.json /app/package.json + +CMD ["yarn", "workspace", "@omnivore/discord", "start"] diff --git a/packages/discord/package.json b/packages/discord/package.json new file mode 100644 index 000000000..aba00bc5a --- /dev/null +++ b/packages/discord/package.json @@ -0,0 +1,19 @@ +{ + "name": "@omnivore/discord", + "version": "1.0.0", + "description": "A Discord Bot to extract features to add to Community Picks", + "scripts": { + "build": "tsc", + "dev": "ts-node-dev --files src/index.ts", + "start": "node dist/index.js", + "lint": "eslint src --ext ts,js,tsx,jsx", + "lint:fix": "eslint src --fix --ext ts,js,tsx,jsx", + "test:typecheck": "tsc --noEmit" + }, + "dependencies": { + "discord.js": "^14.14.1", + "@google-cloud/pubsub": "^4.0.0" + }, + "author": "", + "license": "ISC" +} diff --git a/packages/discord/src/index.ts b/packages/discord/src/index.ts new file mode 100644 index 000000000..10cd14915 --- /dev/null +++ b/packages/discord/src/index.ts @@ -0,0 +1,73 @@ +// @ts-nocheck +import { + Client, + Partials, + GatewayIntentBits, + Events, + MessageReaction, + User, + Embed, +} from 'discord.js' +import { PubSub } from '@google-cloud/pubsub' +import { OmnivoreArticle } from './types/OmnivoreArticle' +import { slugify } from 'voca' + +const client = new Client({ + partials: [Partials.Message, Partials.Reaction], + intents: [ + GatewayIntentBits.GuildMessageReactions, + GatewayIntentBits.GuildMessages, + GatewayIntentBits.MessageContent, + GatewayIntentBits.Guilds, + ], +}) + +const pubSubClient = new PubSub() +const VALID_USERS = new Set([ + 'danielprindii', + 'riiku', + 'hongbowu', + 'mollydot', + 'jackson.harper', + 'podginator', +]) // Will have missed people here +const TOPIC_NAME = 'discordCommunityArticles' + +client.once(Events.ClientReady, () => { + console.log('Ready!') +}) + +const createMessageFromEmbed = (embed: Embed): OmnivoreArticle => { + return { + slug: slugify(embed.url), + title: embed.title, + description: embed.description, + image: embed.thumbnail?.url, + url: embed.url, + authors: embed.author?.name ?? new URL(embed.url).host, + publishedAt: new Date(), + site: embed.url, + type: 'community', + } +} + +client.on( + Events.MessageReactionAdd, + async (props: MessageReaction, user: User): Promise => { + const emoji = props.emoji.name + const message = props.message.partial + ? await props.message.fetch(true) + : props.message + const embed = message.embeds[0] + const userName = user.username + console.log(embed) + + if (emoji === '🦥' && VALID_USERS.has(userName) && embed) { + await pubSubClient + .topic(TOPIC_NAME) + .publishMessage({ json: createMessageFromEmbed(embed) }) + } + }, +) + +client.login(process.env.DISCORD_BOT_KEY) diff --git a/packages/discord/src/types/OmnivoreArticle.ts b/packages/discord/src/types/OmnivoreArticle.ts new file mode 100644 index 000000000..25e17ddc5 --- /dev/null +++ b/packages/discord/src/types/OmnivoreArticle.ts @@ -0,0 +1,11 @@ +export type OmnivoreArticle = { + slug: string + title: string + description: string + image?: string + authors: string + site: string + url: string + publishedAt: Date + type: 'community' +} diff --git a/packages/discord/tsconfig.json b/packages/discord/tsconfig.json new file mode 100644 index 000000000..a6793c1cf --- /dev/null +++ b/packages/discord/tsconfig.json @@ -0,0 +1,14 @@ +{ + "extends": "./../../tsconfig.json", + "compileOnSave": false, + "include": ["src/**/*"], + "ts-node": { + "files": true + }, + "exclude": ["**/node_modules"], + "compilerOptions": { + "baseUrl": "./", + "outDir": "dist", + } +} + diff --git a/packages/discord/tslint.json b/packages/discord/tslint.json new file mode 100644 index 000000000..db7169cd9 --- /dev/null +++ b/packages/discord/tslint.json @@ -0,0 +1,51 @@ +{ + "extends": "tslint:recommended", + "rulesDirectory": ["codelyzer"], + "rules": { + "array-type": false, + "arrow-parens": false, + "deprecation": { + "severity": "warn" + }, + "import-blacklist": [true, "rxjs/Rx"], + "interface-name": false, + "max-classes-per-file": false, + "max-line-length": [true, 140], + "member-access": false, + "member-ordering": [ + true, + { + "order": [ + "static-field", + "instance-field", + "static-method", + "instance-method" + ] + } + ], + "no-consecutive-blank-lines": false, + "no-console": [true, "debug", "info", "time", "timeEnd", "trace"], + "no-empty": false, + "no-inferrable-types": [true, "ignore-params"], + "no-non-null-assertion": true, + "no-redundant-jsdoc": true, + "no-switch-case-fall-through": true, + "no-use-before-declare": true, + "no-var-requires": false, + "object-literal-key-quotes": [true, "as-needed"], + "object-literal-sort-keys": false, + "ordered-imports": false, + "quotemark": [true, "single"], + "trailing-comma": false, + "no-output-on-prefix": true, + "no-inputs-metadata-property": true, + "no-outputs-metadata-property": true, + "no-host-metadata-property": true, + "no-input-rename": true, + "no-output-rename": true, + "use-life-cycle-interface": true, + "use-pipe-transform-interface": true, + "component-class-suffix": true, + "directive-class-suffix": true + } +} diff --git a/packages/discover/.env.test b/packages/discover/.env.test new file mode 100644 index 000000000..76e7943d2 --- /dev/null +++ b/packages/discover/.env.test @@ -0,0 +1,11 @@ +API_ENV=local +PG_HOST=localhost +PG_PORT=5432 +PG_USER=postgres +PG_PASSWORD=postgres +PG_POOL_MAX=20 +PG_DB=omnivore +IMAGE_PROXY_URL=http://localhost:8080 +IMAGE_PROXY_SECRET_KEY=some-secret +GCP_PROJECT_ID=omnivore-local +OPEN_AI_API_KEY=some-key diff --git a/packages/discover/.eslintrc b/packages/discover/.eslintrc new file mode 100644 index 000000000..30bce838f --- /dev/null +++ b/packages/discover/.eslintrc @@ -0,0 +1,13 @@ +{ + "extends": "../../.eslintrc", + "parserOptions": { + "project": "tsconfig.json" + }, + "rules": { + "@typescript-eslint/no-unsafe-argument": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/strictNullChecks": "off", + "@typescript-eslint/no-unsafe-member-access": "off", + "@typescript-eslint/no-unsafe-assignment": "off" + } +} diff --git a/packages/discover/.gitignore b/packages/discover/.gitignore new file mode 100644 index 000000000..b442f8ba9 --- /dev/null +++ b/packages/discover/.gitignore @@ -0,0 +1,131 @@ +.idea/ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp +.cache + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* \ No newline at end of file diff --git a/packages/discover/Dockerfile b/packages/discover/Dockerfile new file mode 100644 index 000000000..6c1f45ed0 --- /dev/null +++ b/packages/discover/Dockerfile @@ -0,0 +1,33 @@ + FROM node:18.16 as builder + +WORKDIR /app + +RUN apt-get update && apt-get install -y g++ make python3 + +COPY package.json . +COPY yarn.lock . +COPY tsconfig.json . +COPY .prettierrc . +COPY .eslintrc . + +COPY /packages/discover/src ./packages/discover/src +COPY /packages/discover/package.json ./packages/discover/package.json +COPY /packages/discover/tsconfig.json ./packages/discover/tsconfig.json + +RUN yarn install --pure-lockfile +RUN yarn workspace @omnivore/discover build + +FROM node:18.16 as runner + +WORKDIR /app + +ENV NODE_ENV production + +COPY --from=builder /app/packages/discover/dist /app/packages/discover/dist +COPY --from=builder /app/packages/discover/package.json /app/packages/discover/package.json +COPY --from=builder /app/packages/discover/node_modules /app/packages/discover/node_modules + +COPY --from=builder /app/node_modules /app/node_modules +COPY --from=builder /app/package.json /app/package.json + +CMD ["yarn", "workspace", "@omnivore/discover", "start"] diff --git a/packages/discover/README.md b/packages/discover/README.md new file mode 100644 index 000000000..f81304337 --- /dev/null +++ b/packages/discover/README.md @@ -0,0 +1,78 @@ +# omnivore-discover + + +## What is this? + +One of my bi ggest problems is actually discoverability of articles. I have my five sites, and my link aggregators like Reddit. This is a bubble, and I miss a lot this way. + +So I wanted to see if I could create something that would enable discoverability from Omnivore. + +I had a few goals when creating Omnivore Discover. + +![Example Screen](./docs/example.png) + +## Features + +### Automatic Categorisation + +A while ago I worked a proof of concept for automatically adding user tags to an article. I ultimately still need to work on that further, but the basics for it worked well. + +I wanted to take the learnings from this and use it to add automatic categorisation of stories. + +I created a few topics, and added some descriptions to them. I generate an Embedding from this using OpenAIs embedding. These can be seen below. + +![Topics](./docs/topic-tab.png) + +When ingesting articles (see Ingesting Articles) we use their title and small description to create an Embedding. We can then use Cosine Similarity to identify which category this story should be a part of. + +This is of course not 100% accurate, but it does a good enough job at categorising articles. + +### Social Features +#### Discord Integration. + +I created Omnivore Discover, and added it to the Omnivore WebApp. + +I wanted to also add some social features to this. We have a fantastic community within the Omnivore Discord. I have found a lot of interesting reads in the #recommendations channel. + +I wanted to be able to take these recommendations, and expose them to the Omnivore Community. + +We do this using a Discord Bot. In order to moderate these recommendations a moderator must add an emoji (🦥) to the story. + +This then gets ingested in the same way as the other stories. Meaning that it is also categorised. It also gets added to the Community Picks tab. + +![Tomnivore Slack](./docs/tomnivore.png) + +![community tab](./docs/community.png) + +#### Popularity + +There is also a popularity feed. This provides a score based on recent saves, weighting more heavily for newer articles. This allows us to have a popular tab, which shows in order the most popular stories on Omnivore Right now according to the community + +![Popular Items](./docs/popular.png) + +### Ingesting Articles + +I ensured that articles could come from multiple locations. This is why I chose an RXJS Poller. + +This project also started from the automatic labelling project. So that too was an important part of the decision to enable ingestion from multiple plages. Including a PubSub queue. + +I wanted one of the main sources of the articles to be RSS Feeds. + +I did this because I thought that some of this functionality might, in the future, be extendable to other RSS Feeds. + +I have chose 3 article sources for now, Wired, ArsTechnica, and The Atlantic. + +## Technologies + +Below is a list of the technologies that were used to design this feature. This repository represents the RXJS side. + +* RxJS +* Typescript +* Axios +* PGVector +* Discord Bot +* PubSub + +## Running + +Creation of the PubSub Topic and Subscription is external to this app. diff --git a/packages/discover/docs/community.png b/packages/discover/docs/community.png new file mode 100644 index 000000000..668b51887 Binary files /dev/null and b/packages/discover/docs/community.png differ diff --git a/packages/discover/docs/example.png b/packages/discover/docs/example.png new file mode 100644 index 000000000..f6458cb8f Binary files /dev/null and b/packages/discover/docs/example.png differ diff --git a/packages/discover/docs/popular.png b/packages/discover/docs/popular.png new file mode 100644 index 000000000..80a09a204 Binary files /dev/null and b/packages/discover/docs/popular.png differ diff --git a/packages/discover/docs/tomnivore.png b/packages/discover/docs/tomnivore.png new file mode 100644 index 000000000..b8567bb3e Binary files /dev/null and b/packages/discover/docs/tomnivore.png differ diff --git a/packages/discover/docs/topic-tab.png b/packages/discover/docs/topic-tab.png new file mode 100644 index 000000000..46119d11e Binary files /dev/null and b/packages/discover/docs/topic-tab.png differ diff --git a/packages/discover/package.json b/packages/discover/package.json new file mode 100644 index 000000000..2d709ebe5 --- /dev/null +++ b/packages/discover/package.json @@ -0,0 +1,44 @@ +{ + "name": "@omnivore/discover", + "version": "0.0.1", + "scripts": { + "build": "tsc", + "dev": "ts-node-dev --files src/index.ts", + "start": "node dist/index.js", + "lint": "eslint src --ext ts,js,tsx,jsx", + "lint:fix": "eslint src --fix --ext ts,js,tsx,jsx", + "test:typecheck": "tsc --noEmit" + }, + "dependencies": { + "aws4-axios": "^3.3.0", + "axios": "^1.5.1", + "dotenv": "^16.3.1", + "fast-xml-parser": "^4.3.2", + "html-to-text": "^9.0.5", + "lodash": "^4.17.21", + "linkedom": "^0.16.5", + "openai": "^4.11.1", + "pg": "^8.11.3", + "pg-format": "^1.0.4", + "pgvector": "^0.1.5", + "postgres": "^3.4.0", + "rxjs": "^7.8.1", + "@google-cloud/pubsub": "^4.0.0", + "uuid": "^9.0.1", + "urlsafe-base64": "^1.0.0" + + }, + "devDependencies": { + "@types/jsdom": "^21.1.3", + "@types/pg-format": "^1.0.3", + "@types/html-to-text": "^9.0.2", + "@types/lodash": "^4.14.201", + "@types/node": "^20.8.4", + "@types/pg": "^8.10.5", + "@types/voca": "^1.4.3", + "ts-node": "^10.9.1", + "tslib": "^2.6.2", + "@types/uuid": "^9.0.1", + "@types/urlsafe-base64": "^1.0.28" + } +} diff --git a/packages/discover/src/env.ts b/packages/discover/src/env.ts new file mode 100755 index 000000000..bccef06ef --- /dev/null +++ b/packages/discover/src/env.ts @@ -0,0 +1,67 @@ +import * as dotenv from 'dotenv' + +dotenv.config({ path: __dirname + '/./../env' }) + +interface BackendEnv { + pg: { + host: string + port: number + userName: string + password: string + dbName: string + pool: { + max: number + } + } + apiKey: string + openAiApiKey: string + imageProxy: { + url?: string + secretKey?: string + } +} + +const envParser = + (env: { [key: string]: string | undefined }) => + (varName: string, throwOnUndefined = true): string | undefined => { + const value = env[varName] + if (typeof value === 'string' && value) { + return value + } + + if (throwOnUndefined) { + throw new Error( + `Missing ${varName} with a non-empty value in process environment`, + ) + } + + return + } + +export function getEnv(): BackendEnv { + // Dotenv parses env file merging into proces.env which is then read into custom struct here. + dotenv.config({ path: __dirname + '/./../.env' }) + const parse = envParser(process.env) + const pg = { + host: parse('PG_HOST')!, + port: parseInt(parse('PG_PORT')!, 10), + userName: parse('PG_USER')!, + password: parse('PG_PASSWORD')!, + dbName: parse('PG_DB')!, + pool: { + max: parseInt(parse('PG_POOL_MAX')!, 10), + }, + } + + return { + pg, + apiKey: parse('OMNIVORE_API_KEY')!, + openAiApiKey: parse('OPEN_AI_KEY')!, + imageProxy: { + url: parse('IMAGE_PROXY_URL', false), + secretKey: parse('IMAGE_PROXY_SECRET', false), + }, + } +} + +export const env = getEnv() diff --git a/packages/discover/src/index.ts b/packages/discover/src/index.ts new file mode 100644 index 000000000..b32df7336 --- /dev/null +++ b/packages/discover/src/index.ts @@ -0,0 +1,26 @@ +import { addEmbeddingToArticle$, addTopicsToArticle$ } from './lib/ai/embedding' +import { + insertArticleToStore$, + removeDuplicateArticles$, +} from './lib/store/articles' +import { merge, Observable } from 'rxjs' +import { OmnivoreArticle } from './types/OmnivoreArticle' +import { rss$ } from './lib/inputSources/articles/rss/rssIngestor' +import { putImageInProxy$ } from './lib/clients/omnivore/imageProxy' +import { communityArticles$ } from './lib/inputSources/articles/communityArticles' + +const enrichedArticles$ = (): Observable => { + return merge(communityArticles$, rss$) as Observable +} + +;(() => { + enrichedArticles$() + .pipe( + removeDuplicateArticles$, + addEmbeddingToArticle$, + addTopicsToArticle$, + putImageInProxy$, + insertArticleToStore$, + ) + .subscribe((_it) => {}) +})() diff --git a/packages/discover/src/lib/ai/embedding.ts b/packages/discover/src/lib/ai/embedding.ts new file mode 100644 index 000000000..a66c539b0 --- /dev/null +++ b/packages/discover/src/lib/ai/embedding.ts @@ -0,0 +1,122 @@ +import { mergeMap } from 'rxjs/operators' +import { OmnivoreArticle } from '../../types/OmnivoreArticle' +import { OperatorFunction, pipe, share } from 'rxjs' +import { fromPromise } from 'rxjs/internal/observable/innerFrom' +import { client } from '../clients/ai/client' +import { onErrorContinue, rateLimiter } from '../utils/reactive' +import { Label } from '../../types/OmnivoreSchema' +import { sqlClient } from '../store/db' +import { toSql } from 'pgvector/pg' + +export type EmbeddedOmnivoreArticle = { + embedding: Array + article: OmnivoreArticle + topics: string[] +} + +export type EmbeddedOmnivoreLabel = { + embedding: Array + label: Label +} + +// Remove, for instance, "The Verge" and " - The Verge" to avoid the cosine similarity matching on that. +const prepareTitle = (article: OmnivoreArticle): string => + article.title + .replace(article.site, '') + .replace(/[`~!@#$%^&*()_|+\-=?;:'",.<>{}[]\\\/]/gi, '') + +const getEmbeddingForArticle = async ( + it: OmnivoreArticle, +): Promise => { + console.log(`${prepareTitle(it)}: ${it.description}`) + const embedding = await client.getEmbeddings( + `${prepareTitle(it)}: ${it.summary}`, + ) + + return { + embedding, + article: it, + topics: [], + } +} + +const addTopicsToArticle = async ( + it: EmbeddedOmnivoreArticle, +): Promise => { + const articleEmbedding = it.embedding + + const topics = await sqlClient.query( + `SELECT name, similarity + FROM (SELECT discover_topic_name as name, MAX(ABS(embed.embedding <#> $1)) AS "similarity" FROM omnivore.omnivore.discover_topic_embedding_link embed group by discover_topic_name) topics + ORDER BY similarity desc`, + [toSql(articleEmbedding)], + ) + + // OpenAI seems to cluster things around 0.7-0.9. Through trial and error I have found 0.77 to be a fairly accurate score. + const topicNames = topics.rows + .filter(({ similarity }) => similarity > 0.77) + .map(({ name }) => name as string) + + if (topicNames.length == 0) { + topicNames.push(topics.rows[0]?.name) + } + + if (it.article.type == 'community') { + topicNames.push('Community Picks') + } + + return { + ...it, + topics: topicNames, + } +} + +const getEmbeddingForLabel = async ( + label: Label, +): Promise => { + const embedding = await client.getEmbeddings( + `${label.name}${label.description ? ' : ' + label.description : ''}`, + ) + console.log( + `${label.name}${label.description ? ' : ' + label.description : ''}`, + ) + + return { + embedding, + label, + } +} + +export const rateLimitEmbedding = () => + pipe(share(), rateLimiter({ resetLimit: 1000, timeMs: 60_000 })) + +export const rateLimiting = rateLimitEmbedding() + +export const addEmbeddingToLabel: OperatorFunction< + Label, + EmbeddedOmnivoreLabel +> = pipe( + rateLimiting, + mergeMap((it: Label) => fromPromise(getEmbeddingForLabel(it))), +) + +export const addEmbeddingToArticle$: OperatorFunction< + OmnivoreArticle, + EmbeddedOmnivoreArticle +> = pipe( + rateLimiting, + onErrorContinue( + mergeMap((it: OmnivoreArticle) => fromPromise(getEmbeddingForArticle(it))), + ), +) + +export const addTopicsToArticle$: OperatorFunction< + EmbeddedOmnivoreArticle, + EmbeddedOmnivoreArticle +> = pipe( + onErrorContinue( + mergeMap((it: EmbeddedOmnivoreArticle) => + fromPromise(addTopicsToArticle(it)), + ), + ), +) diff --git a/packages/discover/src/lib/ai/enrich.ts b/packages/discover/src/lib/ai/enrich.ts new file mode 100644 index 000000000..0e949ecad --- /dev/null +++ b/packages/discover/src/lib/ai/enrich.ts @@ -0,0 +1,66 @@ +import { OmnivoreClient } from '../clients/omnivore/omnivore' +import { OmnivoreArticle } from '../../types/OmnivoreArticle' +import { mergeMap, OperatorFunction, pipe } from 'rxjs' +import { client } from '../clients/ai/client' +import { convert } from 'html-to-text' +import { fromPromise } from 'rxjs/internal/observable/innerFrom' +import { exponentialBackOff, rateLimiter } from '../utils/reactive' +import { env } from '../../env' + +const omnivoreClient = OmnivoreClient.createOmnivoreClient(env.apiKey) + +// A basic metric for now, we will see later if anything needs to be improved in this area. +// 10 Words is probably sufficient, and will reduce the need for the bill on the Summary side. +export const needsPopulating = (article: OmnivoreArticle) => { + return article.description?.split(' ').length <= 3 +} + +const setArticleDescription = async ( + article: OmnivoreArticle, +): Promise => { + const client = await omnivoreClient + const { content } = await client.fetchPage(article.slug) + return { + ...article, + description: convert(content).split(' ').slice(0, 25).join(' '), + } +} + +export const setArticleDescriptionAsSubsetOfContent: OperatorFunction< + OmnivoreArticle, + OmnivoreArticle +> = mergeMap( + (it: OmnivoreArticle) => fromPromise(setArticleDescription(it)), + 10, +) + +const enrichArticleWithAiSummary = (it: OmnivoreArticle) => + fromPromise( + (async (article: OmnivoreArticle): Promise => { + const omniClient = await omnivoreClient + const { content } = await omniClient.fetchPage(article.slug) + + try { + const tokens = convert(content).slice( + 0, + Math.floor(client.tokenLimit * 0.75), + ) + const description = await client.summarizeText(tokens) + return { ...article, description } + } catch (e) { + console.log(`Error article: ${article.title}`) + console.log(e) + throw e + } + })(it), + ) + +export const enrichArticleWithAiGeneratedDescription: OperatorFunction< + OmnivoreArticle, + OmnivoreArticle +> = pipe( + rateLimiter({ resetLimit: 50, timeMs: 60_000 }), + mergeMap((it: OmnivoreArticle) => + enrichArticleWithAiSummary(it).pipe(exponentialBackOff(30)), + ), +) diff --git a/packages/discover/src/lib/ai/label.ts b/packages/discover/src/lib/ai/label.ts new file mode 100644 index 000000000..25632c455 --- /dev/null +++ b/packages/discover/src/lib/ai/label.ts @@ -0,0 +1,82 @@ +import { EmbeddedOmnivoreLabel } from './embedding' + +export type PredefinedEmbeds = Partial< + EmbeddedOmnivoreLabel & { + children?: EmbeddedOmnivoreLabel[] + parent?: EmbeddedOmnivoreLabel + } +> + +// const importedEmbeddedLabels = fs +// .readFileSync(`${__dirname}/../../resources/embeddings.json`) +// .toString("utf-8"); +// const embeddedLabels: PredefinedEmbeds[] = JSON.parse(importedEmbeddedLabels); +// +// export const getRelatedConcepts = async (label: Label): Promise => { +// const labelEmbedding = await client.getEmbeddings(label.name.toLowerCase()); +// +// const predefined = (it: PredefinedEmbeds) => { +// console.log(label.name, it.label.name); +// const cosineSim = cosineSimilarity(it.embedding, labelEmbedding); +// console.log(cosineSim); +// return { sim: cosineSim, ...it }; +// }; +// +// const parentComparisons = embeddedLabels.reduce((acc, prev) => { +// return { ...acc, [prev.label.name]: predefined(prev) }; +// }, {}); +// +// const mostRelated = embeddedLabels +// .flatMap((parent) => { +// return parent.children.map((child) => ({ +// ...predefined(child), +// parent: parentComparisons[parent.label.name], +// })); +// }) +// .sort((a, b) => b.sim - a.sim) +// .slice(0, 2); +// +// return mostRelated.flatMap((it) => { +// return [ +// { +// ...label, +// name: `article is about ${label.name.toLowerCase()} in the category ${it.parent.label.name.toLowerCase()}`, +// }, +// { ...label, name: `article is about ${label.name.toLowerCase()}` }, +// { +// ...label, +// name: `${it.parent.label.name.toLowerCase()}: ${label.name.toLowerCase()}`, +// }, +// { +// ...label, +// name: `${it.parent.label.name.toLowerCase()}: ${label.name.toLowerCase()}, ${it.label.name.toLowerCase()}`, +// }, +// { +// ...label, +// name: `article is about ${label.name.toLowerCase()} in the category ${it.parent.label.name.toLowerCase()} related to ${it.label.name.toLowerCase()}`, +// }, +// { +// ...label, +// name: `article is about ${label.name.toLowerCase()} in the category ${it.label.name.toLowerCase()}`, +// }, +// ]; +// }); +// }; +// +// export const createRelatedConceptsIfNoDescription = ( +// observable: Observable