bee-agent-framework
bee-agent-framework copied to clipboard
feat(providers): add session support for ACP
Description
Supports session for ACP client.
Checklist
General
- [x] I have read the appropriate contributor guide: Python / TypeScript
- [x] I have signed off on my commit: Python instructions / TypeScript instructions
- [x] Commit messages and PR title follow conventional commits
- [x] Appropriate label(s) added to PR:
Pythonfor Python changes,TypeScriptfor TypeScript changes
Code quality checks
- [x] Linting passes: Python
poe lintorpoe lint --fix/ TypeScriptyarn lintoryarn lint:fix - [x] Formatting is applied: Python
poe formatorpoe format --fix/ TypeScript:yarn formatoryarn format:fix - [x] Static type checks pass: Python
poe type-check
Testing
- [x] Unit tests pass: Python
poe test --type unit/ TypeScriptyarn test:unit - [ ] E2E tests pass: Python
poe test --type e2e/ TypeScript:yarn test:e2e - [ ] Integration tests pass: Python
poe test --type integration - [ ] Tests are included (for bug fixes or new features)
Documentation
- [x] Documentation is updated
- [x] Embedme embeds code examples in docs. To update after edits, run: Python
poe docs --type build