Skip to content

Commit

Permalink
switch to gtp3
Browse files Browse the repository at this point in the history
  • Loading branch information
mruwnik committed May 1, 2024
1 parent 96ecc18 commit 36ff70c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const shouldRevalidate: ShouldRevalidateFunction = () => false
export default function App() {
const [params] = useSearchParams()
const [showSettings, setShowSettings] = useState(false)
const [chatSettings, setChatSettings] = useState({mode: 'default'} as ChatSettings)
const [chatSettings, setChatSettings] = useState({mode: 'default', completions: 'gpt-3.5-turbo'} as ChatSettings)
const question = params.get('question') || undefined

const ModeButton = ({name, mode}: {name: string; mode: Mode}) => (
Expand Down

0 comments on commit 36ff70c

Please sign in to comment.