Skip to content

Commit d99fbbf

Browse files
committed
changes
1 parent 465dbe1 commit d99fbbf

File tree

14 files changed

+9
-7
lines changed

14 files changed

+9
-7
lines changed

data/data.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export const additionalAgents:Agent[] = [
181181
}, {
182182
"longDescription": "Pandas Agent facilitates data manipulation and analysis using the powerful pandas library in Python. It enables efficient handling of large datasets, providing tools for data cleaning, transformation, and analysis.",
183183
"createdByUser": "dataScientist01",
184-
"avatarSrc": "/images/avatars/pandas_agent.jpeg",
184+
"avatarSrc": "/images/avatars/pandas_agent.png",
185185
"action": [
186186
{
187187
"detailDescription": "Cleans data by handling missing values, duplicates, and data type conversions.",
@@ -246,7 +246,7 @@ export const additionalAgents:Agent[] = [
246246
{
247247
"longDescription": "Codium AI Agent aids in the development and deployment of AI models within coding environments. It integrates seamlessly with popular coding platforms to enhance AI-driven functionalities.",
248248
"createdByUser": "devTeam",
249-
"avatarSrc": "/images/avatars/codium_ai.jpeg",
249+
"avatarSrc": "/images/avatars/codium.png",
250250
"action": [
251251
{
252252
"detailDescription": "Generates AI models based on user-provided datasets and parameters.",
@@ -335,7 +335,7 @@ export const additionalAgents:Agent[] = [
335335
}, {
336336
"longDescription": "SAP Assistant Agent aids in automating routine tasks within SAP environments. It helps streamline workflows, automate repetitive tasks, and enhance productivity by integrating seamlessly with SAP systems.",
337337
"createdByUser": "adminUser",
338-
"avatarSrc": "/images/avatars/SAP.jpeg",
338+
"avatarSrc": "/images/avatars/SAP.png",
339339
"action": [
340340
{
341341
"detailDescription": "Automates data entry processes in SAP modules such as finance, HR, and logistics.",

pages/agents/index.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ const AgentsPage = ({agents, additionalAgents}: {agents: Agent[], additionalAgen
109109
<Link className="flex flex-col overflow-hidden bg-white dark:bg-slate-900" key={index} href={`/agents/${item.slug}`} >
110110
<div className="rounded-md">
111111
<Avatar style={{ width: '4.3rem', height: '4.2rem' }} {...config} />
112+
112113
</div>
113114
<div className="py-5 px-3 pt-3">
114115
<h3 className="text-xl font-semibold">{item.title}</h3>
@@ -131,11 +132,12 @@ const AgentsPage = ({agents, additionalAgents}: {agents: Agent[], additionalAgen
131132
const config = genConfig(item.title);
132133
return (
133134
<div className="flex flex-col overflow-hidden bg-white dark:bg-slate-900" key={index}>
134-
<div className="rounded-md">
135-
<Avatar style={{ width: '4.3rem', height: '4.2rem' }} {...config} />
136-
{/* <Image width={64} height={64} src={item.avatarSrc} /> */}
135+
<div className="rounded-md " style={{ "width":"80px","height":"80px" ,"display":"flex","alignItems":"center","justifyContent":"center" }}>
136+
137+
{/* <Avatar style={{ width: '4.3rem', height: '4.2rem' }} {...config} /> */}
138+
<Image width={80} height={80} src={item.avatarSrc} alt='Logo' />
137139
</div>
138-
<div className="py-5 px-3 pt-3">
140+
<div className="py-5 px-3 pt-3 " style={{ "width": "70%"}}>
139141
<h3 className="text-xl font-semibold">{item.title}</h3>
140142
<h3 className="text-xs" style={{
141143
overflow: "hidden",

public/images/avatars/SAP.png

11 KB
Loading

public/images/avatars/angular.png

4.59 KB
Loading
-25.9 KB
Binary file not shown.
5.74 KB
Loading

public/images/avatars/codium.png

12.5 KB
Loading
9.88 KB
Loading
-4.33 KB
Binary file not shown.
5.1 KB
Loading

0 commit comments

Comments
 (0)