Skip to content

Commit

Permalink
Text updates
Browse files Browse the repository at this point in the history
  • Loading branch information
gabehamilton committed May 3, 2024
1 parent c7cbe26 commit c3f8a87
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion nexus/components/src/AI/Nexus.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ return (
<Widget
src={`${REPL_ACCOUNT}/widget/AI.Navigation`}
props={{
title: "NEAR AI",
title: "Ecosystem AI Directory",
activeTab: activeGroup,
items: sidebarItems(schema),
additionalContent: (
Expand Down
16 changes: 8 additions & 8 deletions nexus/components/src/AI/Overview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -456,14 +456,14 @@ return (
<ButtonLink
value="agents"
icon="ph-bold ph-binoculars"
title="Find an Agent"
text="Put AI Agents to work for you"
title="AI Agents"
text="Find or Build an Agent to work for you."
/>
<ButtonLink
value="agents"
value="datasets"
icon="ph-bold ph-git-fork"
title="Build an Agent"
text="Create an Agent or other community resources."
title="Training Data"
text="Datasets to train on or share your own."
/>
</Flex>
</Grid>
Expand Down Expand Up @@ -535,7 +535,7 @@ return (
</p>
<p>
For example, if you are building an open source NEAR Co-pilot you
might share many of the pieces for others to compose with. That
might share pieces for others to compose with. That
could be training datasets of Contract or Component code. You might
share a trained model by uploading the weights; then separate out
the framework code and finally add the Co-pilot to the agent
Expand All @@ -551,7 +551,7 @@ return (
</p>
<TrendingApp
href="https://github.com/near/ai-platform/tree/develop/nexus/components/src/AI/Schema"
url="https://near.org/_next/static/media/near-icon.2e682d59.svg"
url="https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png"
name="ai-platform"
loading={false}
/>
Expand All @@ -562,7 +562,7 @@ return (
</p>
<TrendingApp
href="https://github.com/near/near-discovery-components/tree/develop/src/Entities/Examples"
url="https://near.org/_next/static/media/near-icon.2e682d59.svg"
url="https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png"
name="entity-components"
loading={false}
/>
Expand Down
32 changes: 16 additions & 16 deletions nexus/components/src/AI/Schema/Nexus.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,22 @@ const schema = {
icon: "ph ph-list-checks",
defaultValue: "trainingDataset",
items: [
{
{
name: "Training Datasets",
value: "trainingDataset",
content: (contentProps) => (
<Widget
src="${REPL_ACCOUNT}/widget/Entities.Template.GenericEntityConfig"
props={{
entityType: "trainingDataset",
schemaFile: "${REPL_ACCOUNT}/widget/AI.Schema.TrainingDataset",
...contentProps,
}}
/>
),
icon: "ph ph-chart-bar-horizontal",
},
{
name: "Crowdsourcing",
value: "crowdsourcedDataset",
content: (contentProps) => (
Expand Down Expand Up @@ -52,21 +67,6 @@ const schema = {
icon: "ph ph-basket",
disabled: true,
},
{
name: "Training Datasets",
value: "trainingDataset",
content: (contentProps) => (
<Widget
src="${REPL_ACCOUNT}/widget/Entities.Template.GenericEntityConfig"
props={{
entityType: "trainingDataset",
schemaFile: "${REPL_ACCOUNT}/widget/AI.Schema.TrainingDataset",
...contentProps,
}}
/>
),
icon: "ph ph-chart-bar-horizontal",
},
],
},
models: {
Expand Down

0 comments on commit c3f8a87

Please sign in to comment.