-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…-and-knowledge Issue/#28/description for skill and knowledge
- Loading branch information
Showing
4 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
src/components/Contribute/Knowledge/KnowledgeDescription.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import { Button } from '@patternfly/react-core/dist/dynamic/components/Button'; | ||
import { ExternalLinkAltIcon } from '@patternfly/react-icons/dist/dynamic/icons/external-link-alt-icon'; | ||
|
||
const KnowledgeDescription: React.FunctionComponent = () => { | ||
return ( | ||
<div> | ||
<p> | ||
Knowledge in InstructLab is represented by question and answer pairs that involve facts, data, or references. This knowledge is represented in | ||
the taxonomy tree and each node of this tree contains a qna.yaml file. | ||
</p> | ||
<div> | ||
<a href="https://github.com/instructlab/taxonomy/blob/main/docs/KNOWLEDGE_GUIDE.md" target="_blank"> | ||
<Button variant="plain" aria-label="Learn more about what InstructLab Knowledge is"> | ||
Learn More | ||
<ExternalLinkAltIcon style={{ padding: '3px' }}></ExternalLinkAltIcon> | ||
</Button> | ||
</a> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default KnowledgeDescription; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React from 'react'; | ||
import { Button } from '@patternfly/react-core/dist/dynamic/components/Button'; | ||
import { ExternalLinkAltIcon } from '@patternfly/react-icons/dist/dynamic/icons/external-link-alt-icon'; | ||
|
||
const SkillDescription: React.FunctionComponent = () => { | ||
return ( | ||
<div> | ||
<p>Skills in InstructLab come in two main types:</p> | ||
<p> | ||
1) Compositional Skills - These are skills that are performative and you are teaching the model how to do tasks like "write me a | ||
song" or "summarize an email". | ||
</p> | ||
<p>2) Core Skills - Core skills are foudational like math, reasoning and coding.</p> | ||
<div> | ||
<a href="https://github.com/instructlab/taxonomy/blob/main/docs/SKILLS_GUIDE.md" target="_blank"> | ||
<Button variant="plain" aria-label="Learn more about what Skills are in InstructLab"> | ||
Learn More | ||
<ExternalLinkAltIcon style={{ padding: '3px' }}></ExternalLinkAltIcon> | ||
</Button> | ||
</a> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default SkillDescription; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters