Skip to content

Commit

Permalink
updated openAI prompt + added title to projects for vis
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinusey committed Feb 6, 2024
1 parent 7518fe9 commit fe08bb0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/Components/Project.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ export default function Project(props) {
className=" w-fit px-6 py-4 font-normal whitespace-nowrap text-gray-500 dark:text-white"
scope="row"
>
<p className="duration-300 shorten2">{props.projectName}</p>
<p className="duration-300 shorten2" title={props.projectName}>
{props.projectName}
</p>
</th>
<td className="min-w-[200px] px-6 py-4 max-w-fit">
<p className="shorten1">{props.createdAt}</p>
Expand Down
2 changes: 1 addition & 1 deletion src/Components/ProjectTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function ProjectTable() {
messages: [
{
role: "user",
content: `I want to you to return a JSON object of an array named 'frontendProjects' of random, quick, beginner friendly frontend project ideas. ONLY return a JSON object. Please exclude any of these projects: Portfolio websites, Pomodoro timers, calculators, calendars or any of these: ${projects.map(
content: `I want to you to return a JSON object of an array named 'frontendProjects' of random, quick, beginner friendly frontend project ideas for my 100daysofcode challenege. ONLY return a JSON object. Please exclude any of these projects: Portfolio websites, Pomodoro timers, calculators, calendars or any of these: ${projects.map(
(proj) => proj.name
)}`,
},
Expand Down

0 comments on commit fe08bb0

Please sign in to comment.