mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-10 12:10:14 +00:00
feat: add webpage documentation support (#650)
* feat: documentation support while chatting * feat: support managing web documentation entries
This commit is contained in:
parent
4df8c1478d
commit
b4ef573be2
33 changed files with 1132 additions and 610 deletions
|
|
@ -252,6 +252,12 @@ public class ChatToolWindowTabPanel implements Disposable {
|
|||
}
|
||||
message.setUserMessage(text);
|
||||
message.setWebSearchIncluded(webSearchIncluded);
|
||||
|
||||
var addedDocumentation = CodeGPTKeys.ADDED_DOCUMENTATION.get(project);
|
||||
if (addedDocumentation != null) {
|
||||
message.setDocumentationDetails(addedDocumentation);
|
||||
}
|
||||
|
||||
sendMessage(message, ConversationType.DEFAULT);
|
||||
return Unit.INSTANCE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue