Merge pull request 'Request context prompt fixes and improvements.' (#12) from fix_context_prompt into main
Reviewed-on: #12
This commit is contained in:
commit
ec56188332
|
@ -28,10 +28,10 @@ func (c RequestContext) Prompt() string {
|
|||
prompt += "Chat description is \"" + c.Chat.Description + "\". "
|
||||
}
|
||||
|
||||
prompt += "According to their profile, first name of the user who wrote you is \"" + c.User.FirstName + "\". "
|
||||
if c.User.Username != "" {
|
||||
prompt += "The user who wrote you has username \"@" + c.User.Username + "\". "
|
||||
prompt += "Their username is @" + c.User.Username + ". "
|
||||
}
|
||||
prompt += "Their first name is \"" + c.User.FirstName + "\". "
|
||||
if c.User.LastName != "" {
|
||||
prompt += "Their last name is \"" + c.User.LastName + "\". "
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue