├── .eslintrc.json ├── .example.env.local ├── .gitignore ├── README.md ├── app ├── api │ ├── read │ │ └── route.ts │ └── setup │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components └── ui │ └── button.tsx ├── config.ts ├── documents ├── Client SDK │ ├── client-sdk-reference.md │ └── client-sdk-types.md ├── Creating a Module │ ├── creating-a-module.md │ ├── module-interfaces.md │ ├── publishing-a-module.md │ └── testing-a-module.md ├── Deploying the Lens smart contracts │ ├── collecting-publications.md │ ├── creating-a-profile.md │ ├── creating-publications.md │ ├── deploying-the-protocol.md │ ├── following-a-profile.md │ ├── primer.md │ ├── quick-setup.md │ └── unpausing-the-protocol.md ├── Documentation │ ├── authentication-quickstart-api.md │ ├── authentication-quickstart.md │ ├── community-faq.md │ ├── deployed-contract-addresses.md │ ├── developer-quickstart-api.md │ ├── developer-quickstart.md │ ├── faq.md │ ├── lensverse.md │ ├── overview.md │ └── what-is-lens.md ├── Integrations │ ├── encrypted-dms.md │ ├── integrating-lens.md │ └── lens-widgets.md ├── Lens API │ ├── api-links.md │ ├── authentication.md │ ├── authentication │ │ ├── login.md │ │ ├── refresh-jwt.md │ │ └── verify-jwt.md │ ├── e2ee-dms.md │ ├── explore.md │ ├── explore │ │ ├── explore-profiles.md │ │ └── explore-publications.md │ ├── follow-api.md │ ├── follow-api │ │ ├── approve-follow.md │ │ ├── create-follow-typed-data.md │ │ ├── create-set-follow-module-typed-data.md │ │ ├── create-set-follow-nft-uri.md │ │ ├── create-unfollow-typed-data.md │ │ ├── does-follow.md │ │ ├── follower-nft-owned-token-ids.md │ │ ├── followers.md │ │ ├── following.md │ │ ├── is-followed-by-me.md │ │ ├── is-following.md │ │ └── pending-approval-follows.md │ ├── gasless.md │ ├── gasless │ │ ├── broadcast-data-availability-transaction.md │ │ ├── broadcast-transaction.md │ │ ├── dispatcher.md │ │ ├── proxy-action-gasless.md │ │ └── relay-queues.md │ ├── general-information.md │ ├── general-information │ │ ├── how-do-we-cache.md │ │ ├── how-do-we-index.md │ │ ├── what-database-do-we-use.md │ │ ├── what-is-the-backend-code.md │ │ ├── why-graphql.md │ │ └── why-our-own-indexer.md │ ├── getting-started-with-your-api.md │ ├── health.md │ ├── health │ │ └── ping.md │ ├── indexer.md │ ├── indexer │ │ └── has-transaction-been-indexed.md │ ├── introduction.md │ ├── media-snapshots.md │ ├── modules-api.md │ ├── modules-api │ │ ├── approved-allowance-of-modules.md │ │ ├── enabled-modules-currencies.md │ │ ├── enabled-modules.md │ │ └── generate-module-currency-approval-data.md │ ├── nfts.md │ ├── nfts │ │ ├── get-users-nfts.md │ │ ├── nft-galleries.md │ │ └── nft-ownership-challenge.md │ ├── notifications.md │ ├── notifications │ │ └── users-notifications.md │ ├── profiles.md │ ├── profiles │ │ ├── app-comment-total-1.md │ │ ├── create-burn-profile-typed-data.md │ │ ├── create-profile.md │ │ ├── create-set-default-profile-typed-data.md │ │ ├── create-set-profile-image-uri-typed-data.md │ │ ├── create-set-update-profile-metadata-typed-data.md │ │ ├── get-default-profile.md │ │ ├── get-profile.md │ │ ├── get-profiles.md │ │ ├── mutual-profile-follows.md │ │ ├── on-chain-identity.md │ │ ├── profile-interests.md │ │ └── recommended-profiles.md │ ├── protocol-stats.md │ ├── protocol-stats │ │ └── global-protocol-stats.md │ ├── public-big-query.md │ ├── publication-1.md │ ├── publication-1 │ │ ├── app-comment-total.md │ │ ├── can-comment-publication.md │ │ ├── can-mirror-publication.md │ │ ├── create-collected-typed-data.md │ │ ├── create-comment-typed-data.md │ │ ├── create-mirror-typed-data.md │ │ ├── create-post-typed-data.md │ │ ├── data-availability-comment.md │ │ ├── data-availability-mirror.md │ │ ├── data-availability-post.md │ │ ├── gated.md │ │ ├── get-publication.md │ │ ├── get-publications.md │ │ ├── has-collected-publication.md │ │ ├── has-mirrored-publication.md │ │ ├── hide-publication.md │ │ ├── media.md │ │ ├── metadata-publication-filters.md │ │ ├── metadata-standards.md │ │ ├── profile-publications-for-sale.md │ │ ├── publication-metadata-status.md │ │ ├── validate-metadata.md │ │ └── who-collected-publication.md │ ├── querying-from-an-application.md │ ├── querying-from-an-application │ │ ├── apollo-client.md │ │ ├── lensclient-sdk.md │ │ └── urql.md │ ├── reactions.md │ ├── reactions │ │ ├── add-reaction.md │ │ ├── get-reaction.md │ │ ├── remove-reaction.md │ │ └── who-reaction-publication.md │ ├── reporting.md │ ├── reporting │ │ └── report-publication.md │ ├── revenue.md │ ├── revenue │ │ ├── profile-follow-revenue.md │ │ ├── profile-publication-revenue.md │ │ └── publication-revenue.md │ ├── search.md │ ├── search │ │ └── search-profiles-and-publications.md │ ├── timeline.md │ ├── timeline │ │ └── profile-feed.md │ └── user.md ├── Major Concepts │ ├── built-in-governance.md │ ├── collect.md │ ├── comment.md │ ├── follow.md │ ├── mirror.md │ ├── multisig-governance.md │ ├── profile.md │ └── publication.md ├── React Hooks SDK │ ├── advanced.md │ ├── advanced │ │ └── error-handling.md │ ├── create-first-post.md │ ├── cyan-nails-turn-react-native-integration.md │ ├── discovery.md │ ├── discovery │ │ ├── use-explore-profiles.md │ │ ├── use-explore-publications.md │ │ ├── use-feed.md │ │ ├── use-search-profiles.md │ │ └── use-search-publications.md │ ├── follow-a-profile.md │ ├── hooks-authentication.md │ ├── profile-management.md │ ├── sdk-misc.md │ ├── sdk-misc │ │ ├── use-currencies.md │ │ ├── use-notifications.md │ │ └── use-unread-notification-count.md │ ├── sdk-profile.md │ ├── sdk-profile │ │ ├── use-active-profile.md │ │ ├── use-create-profile.md │ │ ├── use-follow.md │ │ ├── use-mutual-followers.md │ │ ├── use-profile-followers.md │ │ ├── use-profile-following.md │ │ ├── use-profile.md │ │ ├── use-profiles-owned-by-me.md │ │ ├── use-profiles-owned-by.md │ │ ├── use-profiles-to-follow.md │ │ ├── use-unfollow.md │ │ ├── use-update-dispatcher-config.md │ │ ├── use-update-profile-details.md │ │ └── use-update-profile-image.md │ ├── sdk-publication.md │ ├── sdk-publication │ │ ├── use-collected-publications.md │ │ ├── use-comments.md │ │ ├── use-create-comment.md │ │ ├── use-create-mirror.md │ │ ├── use-create-post.md │ │ ├── use-hide-publication.md │ │ ├── use-profile-publications-for-sale.md │ │ ├── use-publication.md │ │ ├── use-publications.md │ │ ├── use-reaction.md │ │ ├── use-report-publication.md │ │ ├── use-who-collected-publication.md │ │ ├── use-who-mirrored-publication.md │ │ └── use-who-reacted.md │ ├── sdk-react-getting-started.md │ ├── sdk-react-intro.md │ ├── sdk-revenue.md │ ├── sdk-revenue │ │ ├── use-profile-follow-revenue.md │ │ ├── use-profile-publication-revenue.md │ │ └── use-publication-revenue.md │ ├── sdk-wallet-authentication.md │ ├── sdk-wallet-authentication │ │ ├── use-wallet-login.md │ │ └── use-wallet-logout.md │ ├── self-funded-transactions.md │ └── troubleshooting.md └── Specification │ ├── events.md │ ├── icollectmodulesol.md │ ├── ifollowmodulesol.md │ ├── ireferencemodulesol.md │ ├── lenshub.md │ └── lenshub │ ├── functions.md │ └── view-functions.md ├── lib └── utils.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── tailwind.config.js ├── tsconfig.json ├── utils.ts └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.example.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/.example.env.local -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/README.md -------------------------------------------------------------------------------- /app/api/read/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/app/api/read/route.ts -------------------------------------------------------------------------------- /app/api/setup/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/app/api/setup/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/components.json -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/config.ts -------------------------------------------------------------------------------- /documents/Client SDK/client-sdk-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Client SDK/client-sdk-reference.md -------------------------------------------------------------------------------- /documents/Client SDK/client-sdk-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Client SDK/client-sdk-types.md -------------------------------------------------------------------------------- /documents/Creating a Module/creating-a-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Creating a Module/creating-a-module.md -------------------------------------------------------------------------------- /documents/Creating a Module/module-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Creating a Module/module-interfaces.md -------------------------------------------------------------------------------- /documents/Creating a Module/publishing-a-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Creating a Module/publishing-a-module.md -------------------------------------------------------------------------------- /documents/Creating a Module/testing-a-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Creating a Module/testing-a-module.md -------------------------------------------------------------------------------- /documents/Deploying the Lens smart contracts/collecting-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Deploying the Lens smart contracts/collecting-publications.md -------------------------------------------------------------------------------- /documents/Deploying the Lens smart contracts/creating-a-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Deploying the Lens smart contracts/creating-a-profile.md -------------------------------------------------------------------------------- /documents/Deploying the Lens smart contracts/creating-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Deploying the Lens smart contracts/creating-publications.md -------------------------------------------------------------------------------- /documents/Deploying the Lens smart contracts/deploying-the-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Deploying the Lens smart contracts/deploying-the-protocol.md -------------------------------------------------------------------------------- /documents/Deploying the Lens smart contracts/following-a-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Deploying the Lens smart contracts/following-a-profile.md -------------------------------------------------------------------------------- /documents/Deploying the Lens smart contracts/primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Deploying the Lens smart contracts/primer.md -------------------------------------------------------------------------------- /documents/Deploying the Lens smart contracts/quick-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Deploying the Lens smart contracts/quick-setup.md -------------------------------------------------------------------------------- /documents/Deploying the Lens smart contracts/unpausing-the-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Deploying the Lens smart contracts/unpausing-the-protocol.md -------------------------------------------------------------------------------- /documents/Documentation/authentication-quickstart-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/authentication-quickstart-api.md -------------------------------------------------------------------------------- /documents/Documentation/authentication-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/authentication-quickstart.md -------------------------------------------------------------------------------- /documents/Documentation/community-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/community-faq.md -------------------------------------------------------------------------------- /documents/Documentation/deployed-contract-addresses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/deployed-contract-addresses.md -------------------------------------------------------------------------------- /documents/Documentation/developer-quickstart-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/developer-quickstart-api.md -------------------------------------------------------------------------------- /documents/Documentation/developer-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/developer-quickstart.md -------------------------------------------------------------------------------- /documents/Documentation/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/faq.md -------------------------------------------------------------------------------- /documents/Documentation/lensverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/lensverse.md -------------------------------------------------------------------------------- /documents/Documentation/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/overview.md -------------------------------------------------------------------------------- /documents/Documentation/what-is-lens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Documentation/what-is-lens.md -------------------------------------------------------------------------------- /documents/Integrations/encrypted-dms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Integrations/encrypted-dms.md -------------------------------------------------------------------------------- /documents/Integrations/integrating-lens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Integrations/integrating-lens.md -------------------------------------------------------------------------------- /documents/Integrations/lens-widgets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Integrations/lens-widgets.md -------------------------------------------------------------------------------- /documents/Lens API/api-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/api-links.md -------------------------------------------------------------------------------- /documents/Lens API/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/authentication.md -------------------------------------------------------------------------------- /documents/Lens API/authentication/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/authentication/login.md -------------------------------------------------------------------------------- /documents/Lens API/authentication/refresh-jwt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/authentication/refresh-jwt.md -------------------------------------------------------------------------------- /documents/Lens API/authentication/verify-jwt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/authentication/verify-jwt.md -------------------------------------------------------------------------------- /documents/Lens API/e2ee-dms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/e2ee-dms.md -------------------------------------------------------------------------------- /documents/Lens API/explore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/explore.md -------------------------------------------------------------------------------- /documents/Lens API/explore/explore-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/explore/explore-profiles.md -------------------------------------------------------------------------------- /documents/Lens API/explore/explore-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/explore/explore-publications.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/approve-follow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/approve-follow.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/create-follow-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/create-follow-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/create-set-follow-module-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/create-set-follow-module-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/create-set-follow-nft-uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/create-set-follow-nft-uri.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/create-unfollow-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/create-unfollow-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/does-follow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/does-follow.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/follower-nft-owned-token-ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/follower-nft-owned-token-ids.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/followers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/followers.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/following.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/following.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/is-followed-by-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/is-followed-by-me.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/is-following.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/is-following.md -------------------------------------------------------------------------------- /documents/Lens API/follow-api/pending-approval-follows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/follow-api/pending-approval-follows.md -------------------------------------------------------------------------------- /documents/Lens API/gasless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/gasless.md -------------------------------------------------------------------------------- /documents/Lens API/gasless/broadcast-data-availability-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/gasless/broadcast-data-availability-transaction.md -------------------------------------------------------------------------------- /documents/Lens API/gasless/broadcast-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/gasless/broadcast-transaction.md -------------------------------------------------------------------------------- /documents/Lens API/gasless/dispatcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/gasless/dispatcher.md -------------------------------------------------------------------------------- /documents/Lens API/gasless/proxy-action-gasless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/gasless/proxy-action-gasless.md -------------------------------------------------------------------------------- /documents/Lens API/gasless/relay-queues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/gasless/relay-queues.md -------------------------------------------------------------------------------- /documents/Lens API/general-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/general-information.md -------------------------------------------------------------------------------- /documents/Lens API/general-information/how-do-we-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/general-information/how-do-we-cache.md -------------------------------------------------------------------------------- /documents/Lens API/general-information/how-do-we-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/general-information/how-do-we-index.md -------------------------------------------------------------------------------- /documents/Lens API/general-information/what-database-do-we-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/general-information/what-database-do-we-use.md -------------------------------------------------------------------------------- /documents/Lens API/general-information/what-is-the-backend-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/general-information/what-is-the-backend-code.md -------------------------------------------------------------------------------- /documents/Lens API/general-information/why-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/general-information/why-graphql.md -------------------------------------------------------------------------------- /documents/Lens API/general-information/why-our-own-indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/general-information/why-our-own-indexer.md -------------------------------------------------------------------------------- /documents/Lens API/getting-started-with-your-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/getting-started-with-your-api.md -------------------------------------------------------------------------------- /documents/Lens API/health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/health.md -------------------------------------------------------------------------------- /documents/Lens API/health/ping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/health/ping.md -------------------------------------------------------------------------------- /documents/Lens API/indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/indexer.md -------------------------------------------------------------------------------- /documents/Lens API/indexer/has-transaction-been-indexed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/indexer/has-transaction-been-indexed.md -------------------------------------------------------------------------------- /documents/Lens API/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/introduction.md -------------------------------------------------------------------------------- /documents/Lens API/media-snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/media-snapshots.md -------------------------------------------------------------------------------- /documents/Lens API/modules-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/modules-api.md -------------------------------------------------------------------------------- /documents/Lens API/modules-api/approved-allowance-of-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/modules-api/approved-allowance-of-modules.md -------------------------------------------------------------------------------- /documents/Lens API/modules-api/enabled-modules-currencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/modules-api/enabled-modules-currencies.md -------------------------------------------------------------------------------- /documents/Lens API/modules-api/enabled-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/modules-api/enabled-modules.md -------------------------------------------------------------------------------- /documents/Lens API/modules-api/generate-module-currency-approval-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/modules-api/generate-module-currency-approval-data.md -------------------------------------------------------------------------------- /documents/Lens API/nfts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/nfts.md -------------------------------------------------------------------------------- /documents/Lens API/nfts/get-users-nfts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/nfts/get-users-nfts.md -------------------------------------------------------------------------------- /documents/Lens API/nfts/nft-galleries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/nfts/nft-galleries.md -------------------------------------------------------------------------------- /documents/Lens API/nfts/nft-ownership-challenge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/nfts/nft-ownership-challenge.md -------------------------------------------------------------------------------- /documents/Lens API/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/notifications.md -------------------------------------------------------------------------------- /documents/Lens API/notifications/users-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/notifications/users-notifications.md -------------------------------------------------------------------------------- /documents/Lens API/profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/app-comment-total-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/app-comment-total-1.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/create-burn-profile-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/create-burn-profile-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/create-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/create-profile.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/create-set-default-profile-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/create-set-default-profile-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/create-set-profile-image-uri-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/create-set-profile-image-uri-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/create-set-update-profile-metadata-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/create-set-update-profile-metadata-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/get-default-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/get-default-profile.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/get-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/get-profile.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/get-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/get-profiles.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/mutual-profile-follows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/mutual-profile-follows.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/on-chain-identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/on-chain-identity.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/profile-interests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/profile-interests.md -------------------------------------------------------------------------------- /documents/Lens API/profiles/recommended-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/profiles/recommended-profiles.md -------------------------------------------------------------------------------- /documents/Lens API/protocol-stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/protocol-stats.md -------------------------------------------------------------------------------- /documents/Lens API/protocol-stats/global-protocol-stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/protocol-stats/global-protocol-stats.md -------------------------------------------------------------------------------- /documents/Lens API/public-big-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/public-big-query.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/app-comment-total.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/app-comment-total.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/can-comment-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/can-comment-publication.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/can-mirror-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/can-mirror-publication.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/create-collected-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/create-collected-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/create-comment-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/create-comment-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/create-mirror-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/create-mirror-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/create-post-typed-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/create-post-typed-data.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/data-availability-comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/data-availability-comment.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/data-availability-mirror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/data-availability-mirror.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/data-availability-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/data-availability-post.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/gated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/gated.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/get-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/get-publication.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/get-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/get-publications.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/has-collected-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/has-collected-publication.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/has-mirrored-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/has-mirrored-publication.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/hide-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/hide-publication.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/media.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/metadata-publication-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/metadata-publication-filters.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/metadata-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/metadata-standards.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/profile-publications-for-sale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/profile-publications-for-sale.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/publication-metadata-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/publication-metadata-status.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/validate-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/validate-metadata.md -------------------------------------------------------------------------------- /documents/Lens API/publication-1/who-collected-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/publication-1/who-collected-publication.md -------------------------------------------------------------------------------- /documents/Lens API/querying-from-an-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/querying-from-an-application.md -------------------------------------------------------------------------------- /documents/Lens API/querying-from-an-application/apollo-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/querying-from-an-application/apollo-client.md -------------------------------------------------------------------------------- /documents/Lens API/querying-from-an-application/lensclient-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/querying-from-an-application/lensclient-sdk.md -------------------------------------------------------------------------------- /documents/Lens API/querying-from-an-application/urql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/querying-from-an-application/urql.md -------------------------------------------------------------------------------- /documents/Lens API/reactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/reactions.md -------------------------------------------------------------------------------- /documents/Lens API/reactions/add-reaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/reactions/add-reaction.md -------------------------------------------------------------------------------- /documents/Lens API/reactions/get-reaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/reactions/get-reaction.md -------------------------------------------------------------------------------- /documents/Lens API/reactions/remove-reaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/reactions/remove-reaction.md -------------------------------------------------------------------------------- /documents/Lens API/reactions/who-reaction-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/reactions/who-reaction-publication.md -------------------------------------------------------------------------------- /documents/Lens API/reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/reporting.md -------------------------------------------------------------------------------- /documents/Lens API/reporting/report-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/reporting/report-publication.md -------------------------------------------------------------------------------- /documents/Lens API/revenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/revenue.md -------------------------------------------------------------------------------- /documents/Lens API/revenue/profile-follow-revenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/revenue/profile-follow-revenue.md -------------------------------------------------------------------------------- /documents/Lens API/revenue/profile-publication-revenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/revenue/profile-publication-revenue.md -------------------------------------------------------------------------------- /documents/Lens API/revenue/publication-revenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/revenue/publication-revenue.md -------------------------------------------------------------------------------- /documents/Lens API/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/search.md -------------------------------------------------------------------------------- /documents/Lens API/search/search-profiles-and-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/search/search-profiles-and-publications.md -------------------------------------------------------------------------------- /documents/Lens API/timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/timeline.md -------------------------------------------------------------------------------- /documents/Lens API/timeline/profile-feed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/timeline/profile-feed.md -------------------------------------------------------------------------------- /documents/Lens API/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Lens API/user.md -------------------------------------------------------------------------------- /documents/Major Concepts/built-in-governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Major Concepts/built-in-governance.md -------------------------------------------------------------------------------- /documents/Major Concepts/collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Major Concepts/collect.md -------------------------------------------------------------------------------- /documents/Major Concepts/comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Major Concepts/comment.md -------------------------------------------------------------------------------- /documents/Major Concepts/follow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Major Concepts/follow.md -------------------------------------------------------------------------------- /documents/Major Concepts/mirror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Major Concepts/mirror.md -------------------------------------------------------------------------------- /documents/Major Concepts/multisig-governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Major Concepts/multisig-governance.md -------------------------------------------------------------------------------- /documents/Major Concepts/profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Major Concepts/profile.md -------------------------------------------------------------------------------- /documents/Major Concepts/publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Major Concepts/publication.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/advanced.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/advanced/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/advanced/error-handling.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/create-first-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/create-first-post.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/cyan-nails-turn-react-native-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/cyan-nails-turn-react-native-integration.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/discovery.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/discovery/use-explore-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/discovery/use-explore-profiles.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/discovery/use-explore-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/discovery/use-explore-publications.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/discovery/use-feed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/discovery/use-feed.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/discovery/use-search-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/discovery/use-search-profiles.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/discovery/use-search-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/discovery/use-search-publications.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/follow-a-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/follow-a-profile.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/hooks-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/hooks-authentication.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/profile-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/profile-management.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-misc.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-misc/use-currencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-misc/use-currencies.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-misc/use-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-misc/use-notifications.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-misc/use-unread-notification-count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-misc/use-unread-notification-count.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-active-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-active-profile.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-create-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-create-profile.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-follow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-follow.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-mutual-followers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-mutual-followers.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-profile-followers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-profile-followers.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-profile-following.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-profile-following.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-profile.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-profiles-owned-by-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-profiles-owned-by-me.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-profiles-owned-by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-profiles-owned-by.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-profiles-to-follow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-profiles-to-follow.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-unfollow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-unfollow.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-update-dispatcher-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-update-dispatcher-config.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-update-profile-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-update-profile-details.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-profile/use-update-profile-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-profile/use-update-profile-image.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-collected-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-collected-publications.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-comments.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-create-comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-create-comment.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-create-mirror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-create-mirror.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-create-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-create-post.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-hide-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-hide-publication.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-profile-publications-for-sale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-profile-publications-for-sale.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-publication.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-publications.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-reaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-reaction.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-report-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-report-publication.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-who-collected-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-who-collected-publication.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-who-mirrored-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-who-mirrored-publication.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-publication/use-who-reacted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-publication/use-who-reacted.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-react-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-react-getting-started.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-react-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-react-intro.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-revenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-revenue.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-revenue/use-profile-follow-revenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-revenue/use-profile-follow-revenue.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-revenue/use-profile-publication-revenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-revenue/use-profile-publication-revenue.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-revenue/use-publication-revenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-revenue/use-publication-revenue.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-wallet-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-wallet-authentication.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-wallet-authentication/use-wallet-login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-wallet-authentication/use-wallet-login.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/sdk-wallet-authentication/use-wallet-logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/sdk-wallet-authentication/use-wallet-logout.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/self-funded-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/self-funded-transactions.md -------------------------------------------------------------------------------- /documents/React Hooks SDK/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/React Hooks SDK/troubleshooting.md -------------------------------------------------------------------------------- /documents/Specification/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Specification/events.md -------------------------------------------------------------------------------- /documents/Specification/icollectmodulesol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Specification/icollectmodulesol.md -------------------------------------------------------------------------------- /documents/Specification/ifollowmodulesol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Specification/ifollowmodulesol.md -------------------------------------------------------------------------------- /documents/Specification/ireferencemodulesol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Specification/ireferencemodulesol.md -------------------------------------------------------------------------------- /documents/Specification/lenshub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Specification/lenshub.md -------------------------------------------------------------------------------- /documents/Specification/lenshub/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Specification/lenshub/functions.md -------------------------------------------------------------------------------- /documents/Specification/lenshub/view-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/documents/Specification/lenshub/view-functions.md -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/utils.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/semantic-search-nextjs-pinecone-langchain-chatgpt/HEAD/yarn.lock --------------------------------------------------------------------------------