Commit graph

60 commits

Author SHA1 Message Date
jinli.yl
e92a8f7e0b chore(version): update project version to 0.2.0.0 2025-11-11 00:09:43 +08:00
jinli.yl
d587dbfd56 docs(readme): update python version and pypi version badges- Updated Python version badge from 3.12+ to 3.10+ 2025-11-07 14:57:30 +08:00
jinli.yl
27561aa94f docs(vector_store): update vector store configuration guide 2025-11-07 14:53:14 +08:00
jinli.yl
73668f051e feat(core): add pre-commit hooks and improve module documentation 2025-11-07 14:14:11 +08:00
dengjiaji
d87dbb65f9 docs(config): update source repository URL 2025-11-04 16:48:10 +08:00
jinli.yl
e5b2cd9f28 docs(index): update citation information 2025-11-04 16:19:48 +08:00
jinli.yl
e7d4f00c9f docs(config): update github repository links to agentscope-ai 2025-11-04 16:17:40 +08:00
jinli.yl
8984f973ab docs(readme): update project name in README 2025-11-04 16:01:12 +08:00
jinli.yl
6a863122f7 docs(readme): reorganize latest updates section 2025-11-04 15:56:20 +08:00
jinli.yl
d9f332ece2 docs(readme): update project name to memory management kit 2025-10-29 15:43:58 +08:00
jinli.yl
a4be28606b chore(version): bump version to 0.1.10.7 2025-10-28 15:17:00 +08:00
jinli.yl
7e82a3179e feat(reme_ai): update version to 0.1.10.6 and enhance tool memory operations 2025-10-27 21:12:11 +08:00
dengjiaji
b9841bc88a docs(memory): rename library references to memory throughout documentation 2025-10-27 17:36:50 +08:00
jinli.yl
02ed621b36 chore(release): bump version to 0.10.5 2025-10-27 17:23:02 +08:00
jinli.yl
b5ccd0eac1 chore(version): bump version to 0.10.4 2025-10-27 17:02:44 +08:00
jinli.yl
be3d48f9ac docs(_toc.yml): remove future_work and contribution files from toc 2025-10-23 18:07:32 +08:00
jinli.yl
c314a82039 docs: update documentation structure and content 2025-10-23 17:58:25 +08:00
dengjiaji
82d0adc86e docs(config): update documentation config and quick start examples 2025-10-23 17:32:59 +08:00
jinli.yl
ac72e6e021 feat(vector_store): add QdrantVectorStore implementation with async support
- Added QdrantVectorStore backend with native async operations
- Implemented advanced filtering capabilities for metadata queries
- Added support for Qdrant Cloud and local deployments- Updated vector store comparison table with Qdrant features
- Enhanced documentation with Qdrant setup and usage examples
- Fixed code block formatting in vector store API guide
- Updated embedding model integration for Qdrant compatibility
2025-10-23 17:15:12 +08:00
dengjiaji
fdb242ff5d docs(config): update documentation styling and logo 2025-10-23 15:13:59 +08:00
dengjiaji
2c54d0b04e docs(config): update project title and index page heading 2025-10-23 14:11:03 +08:00
dengjiaji
c625181666 docs: reconstruct JupyterBook-style documentation 2025-10-23 12:08:35 +08:00
jinli.yl
1412fa9ed1 feat(reme): implement ReMeApp and decouple flowllm dependencies 2025-10-22 21:53:59 +08:00
jinli.yl
4697070068 chore(version): bump version to 0.1.10.1
- Updated __version__ in reme_ai/__init__.py
- Updated project version in pyproject.toml- Changed flowllm dependency to include reme extra
- Fixed typo in README.md query example
2025-10-22 20:24:55 +08:00
dengjiaji
04692b1473 docs(index): restructure memory sections and improve formatting 2025-10-22 13:17:19 +08:00
jinli.yl
327f96f069 docs(tool_memory): remove redundant see also section 2025-10-22 12:24:52 +08:00
jinli.yl
103f388877 docs(docs): rename todo.md to future_work.md 2025-10-22 12:20:53 +08:00
jinliyl
97a314d9f8
Merge branch 'main' into tool_memory 2025-10-22 12:13:11 +08:00
jinli.yl
d9938c6a43 feat(docs): add tool memory documentation and update ReMe memory model
- Introduce tool memory as a new memory type in ReMe framework
- Update agent memory formula to include tool memory- Add comprehensive tool memory documentation with usage examples
- Include tool memory API usage guides for Python, curl, and Node.js
- Add tool memory benchmark results showing 14.88% improvement- Create new tool memory demo and benchmark resources
- Update documentation structure to reflect three memory capabilities- Add TODO list with planned features including automatic tool exploration- Fix mermaid diagram numbering in tool memory documentation
- Remove outdated latest updates section from main documentation
- Update resource links to include tool memory references
2025-10-22 12:11:20 +08:00
jinli.yl
594495de9e feat(memory): add is_summarized flag to track tool call summarization
- Add is_summarized boolean field to ToolCallResult schema
- Implement logic to mark tool calls as summarized after processing
- Skip summarization for tools with all recent calls already summarized
- Update summary operation to process only tools with unsummarized calls
- Enhance logging to show summarization and skip statistics
- Modify response to include count of summarized vs skipped tools
- Add documentation for smart skip logic and is_summarized feature
- Include test scenarios for skip logic and incremental summarization
2025-10-22 11:19:43 +08:00
jinli.yl
49819a8e54 feat(tool): implement tool memory management and mock search tools- Added RetrieveToolMemoryOp for retrieving tool memory guidelines- Implemented LLM-based mock search tools with configurable complexity levels
- Enhanced tool call result parsing with improved scoring logic (0.0 or 1.0)
- Updated tool memory schema to reflect binary success/failure scoring
- Added deterministic behavior support via seed configuration in mock tools
- Improved evaluation prompts to focus on result quality over success flags
- Extended README with tool memory documentation and usage examples- Added utility functions for generating mock tool call results
- Removed deprecated test file for UseMockSearchOp- Updated default configurations to include use_mock_search operation- Bumped version to0.1.10 and updated flowllm dependency requirement
- Moved deprecation warnings to main init file
- Simplified tool memory summary formatting by removing redundant statistics
- Fixed tool call result processing to handle multiple tool names concurrently
2025-10-21 21:03:14 +08:00
jinli.yl
12f0b7d124 feat(agent): implement mock search tools and tool memory benchmark
- Added LLMMockSearchOp for simulating search operations with configurable complexity- Created SearchToolA, SearchToolB, and SearchToolC with distinct performance profiles- Implemented UseMockSearchOp for intelligent tool selection based on query analysis
- Added test scripts and query datasets for evaluating tool memory effectiveness
- Integrated tool memory service for storing and retrieving tool performance data
- Created documentation for tool memory benchmark testing methodology
- Refactored agent module structure and imports
- Increased summary tool memory recent call count from20 to 30
2025-10-16 23:31:50 +08:00
jinli.yl
40538f974a docs(task_memory): simplify documentation and remove redundant content
- Removed detailed data structure definitions for TaskMemory and Trajectory
- Eliminated extensive examples and usage instructions for record_task_memory and delete_task_memory
- Removed comparison table with Tool Memory and best practices section
- Simplified build_query_op and rewrite_memory_op documentation by removing processing flows
- Removed detailed examples and parameter descriptions for simple_summary_op- Added new tool_memory.md documentation with complete tool memory implementation
- Added new tool_retrieve_ops.md documentation with detailed retrieval operations- Created comprehensive tool memory data structures and API documentation
- Added usage examples and integration workflows for tool memory operations
- Documented configuration parameters and best practices for tool memory management
2025-10-16 16:39:40 +08:00
jinli.yl
82405c4a7c docs(task_memory): enhance documentation with data structures and usage examples
- Add TaskMemory and Trajectory data structure definitions
- Include detailed processing flows for record and delete operations
- Add comparison table between Task Memory and Tool Memory
- Provide best practices for trajectory scoring and maintenance
- Enhance build_query_op documentation with processing flow
- Add format examples for rewrite_memory_op with and without LLM
- Include usage examples for simple_summary_op and comparative summary
- Add comparison table between simple and full summary pipelines
- Improve parameter descriptions and when-to-use guidance
- Add Chinese translations for key concepts and examples
2025-10-16 16:36:40 +08:00
dengjiaji
1b927525d8 feat(library): Add "contribute" tag & Update display 2025-09-17 16:07:12 +08:00
dengjiaji
37051406c5 add finance task memory (beta version) 2025-09-17 15:48:59 +08:00
dengjiaji
c1ae740eba feat(library): implement category view 2025-09-17 15:48:29 +08:00
dengjiaji
31143caae8 docs(cookbook): update frozenlake figure path 2025-09-17 12:24:59 +08:00
dengjiaji
0bb6728ecd docs: add format 2025-09-17 12:22:09 +08:00
dengjiaji
d5871c11ed docs: Move experiment_overview &Modify mkdocs.yml 2025-09-16 21:12:54 +08:00
dengjiaji
785e78a7a1 docs(restructure): reorganize documentation , add experiment overview & use library guide 2025-09-16 20:30:06 +08:00
jinli.yl
6eff6e5cd9 rm FLOW_USE_FRAMEWORK env 2025-09-16 16:51:12 +08:00
jinliyl
560e746cea
reformat code, support flowllm 0.1.9 (#26)
* reformat code, support flowllm 0.1.9

* Update README.md

add FLOW_USE_FRAMEWORK=true

* Update README_ZH.md

add FLOW_USE_FRAMEWORK=true

* Update index.md

add FLOW_USE_FRAMEWORK=true

* add env FLOW_APP_NAME=ReMe
2025-09-16 16:49:56 +08:00
jinliyl
00b81ebb7e
Update index.md
add FLOW_USE_FRAMEWORK=true
2025-09-16 15:35:48 +08:00
dengjiaji
5bdd6f9062 docs: update homepage resource links 2025-09-16 11:06:03 +08:00
dengjiaji
4811f72e59 docs: update homepage layout and add repository links 2025-09-15 15:50:30 +08:00
dengjiaji
1257c30e1a docs: update experiment tutorials and documentation structure 2025-09-15 15:44:23 +08:00
dengjiaji
9da6a14fcb fix bug: update site_url to point to GitHub Pages 2025-09-15 15:16:16 +08:00
dengjiaji
805b7520ec docs(library):
- Deleted the entire library.html file from the docs/library directory
- Updated library.md file to include a new heading and a placeholder for memory library content
2025-09-15 15:09:55 +08:00
dengjiaji
57f505752d docs(library): add new marker 2025-09-15 14:59:29 +08:00