mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-20 17:52:23 +00:00
fix: use personas only within current chat session context
This commit is contained in:
parent
43a1f8d8d7
commit
e36e954276
7 changed files with 42 additions and 22 deletions
|
|
@ -1,6 +1,7 @@
|
|||
package ee.carlrobert.codegpt;
|
||||
|
||||
import com.intellij.openapi.util.Key;
|
||||
import ee.carlrobert.codegpt.settings.persona.PersonaDetails;
|
||||
import ee.carlrobert.codegpt.ui.DocumentationDetails;
|
||||
import ee.carlrobert.llm.client.codegpt.CodeGPTUserDetails;
|
||||
import java.util.List;
|
||||
|
|
@ -17,4 +18,6 @@ public class CodeGPTKeys {
|
|||
Key.create("codegpt.userDetails");
|
||||
public static final Key<DocumentationDetails> ADDED_DOCUMENTATION =
|
||||
Key.create("codegpt.addedDocumentation");
|
||||
public static final Key<PersonaDetails> ADDED_PERSONA =
|
||||
Key.create("codegpt.addedPersona");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue