-
Notifications
You must be signed in to change notification settings - Fork 119
chore(eng-docs): add docs for knowledge gaps #3976
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
{ | ||
type: "add", | ||
path: "packages/paste-core/{{component-type}}/{{kebabCase component-name}}/CHANGELOG.md", | ||
templateFile: "tools/plop-templates/CHANGELOG.hbs", | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a mandatory file that is needed when developing the website section for new components. Good to add it in at gen level to stop getting caught out and manually having to update the components package later.
☁️ Nx Cloud ReportCI is running/has finished running commands for commit c9bd6e9. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 2 targetsSent with 💌 from NxCloud. |
@@ -16,7 +16,7 @@ The same happens with Github discussions. The discussion is a page and is split | |||
|
|||
We can then perform a similarity search using the user input as the query. | |||
|
|||
Embeddings are generated using the the [embedding script](../../../packages/paste-website/scripts/search/). | |||
Embeddings are generated using the the [embedding script](../../../packages/paste-website/scripts/search/). For a more detailed explanation of generating embeddings and running locally refernce [generating-embeddings](./generating-embeddings.md). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[misspell] reported by reviewdog 🐶
"refernce" is a misspelling of "references"
- **page**: Stores the metadata of the entry. Key columns are the checksum (used to determine whether to update the record), path (either the url of the page or the github discussion), type (github-discussion or markdown) | ||
- **page_sections**: contains the search embeddings. Key columns are content (plain text headings/titles), embedding (the vector spaces created from OpenAI), slug (yo string of content or the discussion/answer in GitHub). | ||
|
||
Both tables are related with page being thge parent. They are joined by `page.id on page_section.page_id`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[misspell] reported by reviewdog 🐶
"thge" is a misspelling of "the"
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit c9bd6e9:
|
Size Change: 0 B Total Size: 1.07 MB ℹ️ View Unchanged
|
Passing run #8179 ↗︎Details:
Review all test suite changes for PR #3976 ↗︎ |
Passing run #8182 ↗︎Details:
Review all test suite changes for PR #3976 ↗︎ |
I have reviewed the repo and identified areas that are missing documentation. This focusses on areas outside of the core development such as generating OpenAI embeddings and developing with the backend locally.