Skip to content

Commit

Permalink
feat: support for GPT-4 Turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
arshad-yaseen committed Nov 7, 2023
1 parent 23c1454 commit 4e2e8ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import SiteHero from "@/components/site-hero"
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center">
<div className="jumbo absolute -inset-[10px] opacity-[8%]"></div>
<div className="jumbo absolute -inset-[10px] opacity-[7%]"></div>
<SiteHero />
<SiteFeatures />
<OpenSource />
Expand Down
2 changes: 1 addition & 1 deletion components/site-hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function SiteHero() {
<section className="flex w-full flex-col items-center ">
<div className="gradient-box mt-4 rounded-full px-6 py-2.5 text-sm font-medium">
<span className="relative z-30">
Now featuring support for GPT-4{" "}
Now featuring support for GPT-4 Turbo{" "}
<SparklesIcon className="mb-1 inline-block h-4 w-4" />
</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion config/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const defaultEditorContent = {
section: "Introduction",
content: `# Project Title\n\nA brief description of what this project does.`,
}
export const openai_model = "gpt-4"
export const openai_model = "gpt-4-1106-preview"

export const PROMPT = {
standardize_format: "Standardize the format of the following markdown.",
Expand Down

1 comment on commit 4e2e8ca

@vercel
Copy link

@vercel vercel bot commented on 4e2e8ca Nov 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.