Skip to content

Instantly share code, notes, and snippets.

@Juraj-Sulimanovic
Last active April 5, 2024 10:34
Show Gist options
  • Save Juraj-Sulimanovic/4cd969fbd12c630b04503924eb3a8a3f to your computer and use it in GitHub Desktop.
Save Juraj-Sulimanovic/4cd969fbd12c630b04503924eb3a8a3f to your computer and use it in GitHub Desktop.
const [messageState, setMessageState] = useState<{
messages: Message[];
pending?: string;
history: [string, string][];
pendingSourceDocs?: Document[];
}>({
messages: [
{
message: 'Hi, my name is Ante, ask me what you want to know!',
type: 'apiMessage',
},
],
history: [],
});
const { messages, history } = messageState;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment