Added initial Greeting

This commit is contained in:
Chris Kent 2024-02-08 11:22:12 -05:00
parent e35e1b642c
commit f4dcbfe26c
1 changed files with 4 additions and 1 deletions

View File

@ -21,7 +21,10 @@ export default class ChatStreaming extends React.Component<IChatStreamingProps,
this.state = {
userQuery: '',
sessionMessages: [],
sessionMessages: [{
role: 'assistant',
text: 'Hello! I am your AI assistant. How can I help you today?'
}],
thinking: false
}