chore: version up to 2.80.35 and package with experience memory
This commit is contained in:
@@ -155,6 +155,19 @@ describe('local project path preflight', () => {
|
||||
expect(agent.isThinkingPartnerRequest(prompt)).toBe(true);
|
||||
});
|
||||
|
||||
it('classifies short greetings as casual conversation so RAG can be skipped', () => {
|
||||
const context: any = {
|
||||
globalStorageUri: { fsPath: path.join(root, '.storage') },
|
||||
workspaceState: stateStore(),
|
||||
globalState: stateStore()
|
||||
};
|
||||
const agent = new AgentExecutor(context) as any;
|
||||
|
||||
expect(agent.isCasualConversationPrompt('안녕')).toBe(true);
|
||||
expect(agent.isCasualConversationPrompt('hello!')).toBe(true);
|
||||
expect(agent.isCasualConversationPrompt('안녕, 이 프로젝트 구조 분석해줘')).toBe(false);
|
||||
});
|
||||
|
||||
it('adds concrete Astra mode architecture context for Guard and MA design questions', () => {
|
||||
const context: any = {
|
||||
globalStorageUri: { fsPath: path.join(root, '.storage') },
|
||||
|
||||
Reference in New Issue
Block a user