Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
mckaywrigley committed Mar 2, 2023
1 parent 6ff1fc4 commit 7b0df84
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export const Navbar: FC = () => {
return (
<div className="flex h-[60px] border-b border-gray-300 py-2 px-8 items-center justify-between">
<div className="font-bold text-2xl flex items-center">
<div className="ml-2">Paul Graham GPT</div>
<a
className="hover:opacity-50"
href="https://paul-graham-gpt.vercel.app"
>
Paul Graham GPT
</a>
</div>
<div>
<a
Expand Down
2 changes: 1 addition & 1 deletion utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const OpenAIStream = async (prompt: string, apiKey: string) => {
}
],
max_tokens: 150,
temperature: 0.2,
temperature: 0.0,
stream: true
})
});
Expand Down

0 comments on commit 7b0df84

Please sign in to comment.