Skip to content

Commit

Permalink
Merge pull request #12 from davidgao7/main
Browse files Browse the repository at this point in the history
add database agent project
  • Loading branch information
davidgao7 authored May 17, 2024
2 parents 10382c5 + 36cf06a commit 5fb5027
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/assets/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import tripguide from "./tripguide.png";
import profolio from "./profolio.png";

import researchAssistant from "./research-assistant.png";
import structureRAresult from "./result-response.png"

export {
logo,
Expand Down Expand Up @@ -71,5 +72,6 @@ export {
dfm,
haskell,
profolio,
researchAssistant
researchAssistant,
structureRAresult
};
Binary file added src/assets/result-response.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 32 additions & 2 deletions src/constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ import {
haskell,
profolio,
python,
researchAssistant
researchAssistant,
structureRAresult
} from "../assets";

export const navLinks = [
Expand Down Expand Up @@ -197,7 +198,7 @@ const projects = [
source_code_link: "https://github.com/davidgao7/Portfolio_x",
},
{
name: "research assistant",
name: "Research Assistant",
description:
"a research assistant chat bot to help you get the latest and greatest research papers in a second!",
tags: [
Expand All @@ -217,6 +218,35 @@ const projects = [
image: researchAssistant,
source_code_link: "https://github.com/davidgao7/research_assistant",
},
{
name: "Structure RA",
description:
"Your personal assistant on structure data!",
tags: [
{
name: "agent",
color: "blue-text-gradient",
},
{
name: "rag",
color: "green-text-gradient",
},
{
name: "langchain",
color: "pink-text-gradient",
},
{
name: "langsmith",
color: "purple-text-gradient",
},
{
name: "langserve",
color: "red-text-gradient",
}
],
image: structureRAresult,
source_code_link: "https://github.com/davidgao7/StructureRA",
},
];

export { services, technologies, experiences, testimonials, projects };
Expand Down

0 comments on commit 5fb5027

Please sign in to comment.