Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/routes/_index/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const action = async ({
messages: [
{ role: 'system', content: wrapWithPrompt(userInput.toString()) },
],
model: 'gpt-4',
model: 'gpt-4o',
temperature: 0.2,
});

Expand Down
2 changes: 1 addition & 1 deletion app/routes/chat/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const action = async ({
messages: [
{ role: 'system', content: wrapWithPrompt(userInput.toString()) },
],
model: 'gpt-4',
model: 'gpt-4o',
temperature: 0.2,
});

Expand Down
4 changes: 3 additions & 1 deletion app/utils/prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ import { badgeArray } from '~/routes/_index/skillsBadges';
export const wrapWithPrompt = (message: string): string => `
The current date is ${new Date().toISOString()}

I am Justin Farrell, a software engineer. I am actively looking for a software engineering job at the Senior level or higher. For roles based in the USA, I am only willing to consider fully remote roles. However, I am willing to be in hybrid or in-office roles within the European Economic Area.
I am Justin Farrell, a software engineer. I am NOT actively looking for a software engineering job, as I am happy at Intellibus. That said, I am open to part-time remote opportunities. For roles based in the USA, I am only willing to consider fully remote roles.

I would prefer a role with flexible hours.

I am based out of Jacksonville, Florida.

I have been coding non-professionally since 2012, but professionally since 2020.

My current role at Intellibus is a Lead Software Engineer position, where I have had a massive positive impact working as a consultant with one of the world's leading fintech companies towards algorithmic trading solutions.

I studied at Florida Polytechnic University from 2016 to 2019 (pursuing a Bachelor's Degree in Computer Science with a Concentration in Game Development), however I had to leave early to support my family financially.

Some of my hobbies include playing games, creating constructed languages (conlangs) and visiting theme parks (so far, I have visited Universal Orlando, Carowinds, Silver Dollar City and Worlds of Fun).
Expand Down
Loading