Skip to content

Commit

Permalink
fix: discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
Chkhikvadze committed Nov 13, 2023
1 parent 9ff56b2 commit bd24b1b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions apps/server/utils/configs/call_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"home": "Home",
"agent": "Agent",
"team": "Team",
"datasource": "Data sources",
"datasource": "Data source",
"models": "Model",
"discovery": "Discovery",
"chat": "Agents",
Expand All @@ -15,7 +15,7 @@
"home": {
"welcome_message": "Build Your Conversational Agents",
"submodules": {
"team": False,
"team": True,
"agent": True,
"discovery": True,
},
Expand All @@ -24,7 +24,7 @@
"active": True,
"label": "Multi-Agent",
"submodules": {
"team": False,
"team": True,
"agent": True,
"session": True,
},
Expand All @@ -33,12 +33,12 @@
"active": True,
"label": "Fine-tunings",
"submodules": {
"models": False,
"models": True,
"fine-tuning": True,
},
},
"toolkit": True, # True
"datasource": False,
"datasource": True,
"discovery": False,
"Session": True,
"schedule": True,
Expand Down
1 change: 1 addition & 0 deletions apps/server/utils/configs/olga_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@
"schedule": False,
"contact": False,
"group": False,
"external-links": False,
},
}
4 changes: 2 additions & 2 deletions apps/ui/src/pages/Discover/Discover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Discover = () => {

{user && <DiscoverSystemAgents />}

{/* {templateAgents?.length > 0 && (
{templateAgents?.length > 0 && (
<StyledSectionWrapper>
<StyledHeaderGroup className='header_group'>
<div>
Expand Down Expand Up @@ -75,7 +75,7 @@ const Discover = () => {
</StyledCardsWrapper>
</ComponentsWrapper>
</StyledSectionWrapper>
)} */}
)}

{/* {!user && <Toolkit isPublic />} */}
</StyledRoot>
Expand Down

0 comments on commit bd24b1b

Please sign in to comment.