import React from 'react';
import { useDispatch } from 'react-redux';
import { setText } from '~/store/textSlice';
export default function Landing() {
const dispatch = useDispatch();
const clickHandler = (e) => {
e.preventDefault();
const { innerText } = e.target;
const quote = innerText.split('"')[1].trim();
dispatch(setText(quote));
};
return (
ChatGPT Clone
Examples
Capabilities
-
Remembers what user said earlier in the conversation
-
Allows user to provide follow-up corrections
-
Trained to decline inappropriate requests
Limitations
-
May occasionally generate incorrect information
-
May occasionally produce harmful instructions or biased content
-
Limited knowledge of world and events after 2021
);
}