Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-03-03 | 10.6 kB | |
v0.0.15 source code.tar.gz | 2025-03-03 | 46.1 MB | |
v0.0.15 source code.zip | 2025-03-03 | 47.2 MB | |
Totals: 3 Items | 93.3 MB | 0 |
[0.0.15] - 2025-03-03
Added
- New embedding components
- Azure-OpenAI embedding component
- Gemini embedding component
- Doubao embedding component
- New knowledge loading reader components
- Web page reader component based on BeautifulSoup (bs4)
- Image reader component based on OCR technology
- CSV format reader component
- New tool plugins
- Arxiv paper retrieval and query tool plugin
- Jina AI intelligent search tool plugin
- Added standard LLM output parser for reasoning-type models
- Added standard logger sink for agents, LLMs, and tools
- Added retry function annotation
Changed
- Improved project configuration experience, with the following key optimizations:
- Project configuration now supports global PACKAGE path replacement. For details, see the PACKAGE_PATH_INFO parameter in the sample project's config.toml file.
- Supports user-defined configuration extensions and YAML function extensions. For details, see the EXTENSION_MODULES parameter in the sample project's config.toml file.
- Updated custom_key.toml.sample with more detailed parameter content.
- Submit a set of commonly used model configuration YAML files. For details, see the llm directory in the sample project.
- YAML configuration now supports user-defined loading of attributes using environment variables and extension functions. For details, see the api_key comments in the llm sample of the sample project.
- Simplified LLM configuration. By default, it reads the global default_llm configuration. For details, see the default_llm.toml configuration in the llm sample of the sample project.
- Simplified component extension configuration. The module part in the component metadata can be left blank, and it will default to searching for a Python extension file with the same name in the same directory.
- Optimized project startup process, with the following key improvements:
- Improved LLM component startup registration. Only LLM instances that are dependent on by components like agents and tools are started.
- Enhanced error info during project startup.
- Other changes:
- Renamed LocalMemoryStorage to RamMemoryStorage for memory storage objects.
Note
- Added image_build image packaging files and tutorial documents for application projects.
- Added CONTRIBUTING.md documentation for the project.
- Standardized PR and ISSUE templates for the project.
- Added a sample practice for agents based on multimodal capabilities. For details, see the examples/multimodal_app directory in the project.
- Our project was included in the awesome-deepseek-integration list released by DeepSeek in February.
More Details
What's Changed
- Merge master to dev_fanen by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/240
- merge fix_sample to dev_fanen by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/242
- merge dev_chongshi to dev_fanen by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/243
- Merge dev_chongshi to dev_fanen by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/246
- add tracing by @weizjajj in https://github.com/antgroup/agentUniverse/pull/269
- docs: update docs by @LandJerry in https://github.com/antgroup/agentUniverse/pull/271
- improvement: tweaking monitor module and trace annotation in aU. by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/273
- Add: Core Brain Agent, Change: Trace use log sink now by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/275
- add csv reader by @z4656207 in https://github.com/antgroup/agentUniverse/pull/268
- improvement: tweaking the deep copy logic of the component model in aU. by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/276
- merge dev to dev_fanen by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/282
- Change: Rename core brain agent to cerebrum agent by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/283
- Change: Add cerebrum agent script in doc by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/284
- 修复windows下文件名不规范 by @wozhapen in https://github.com/antgroup/agentUniverse/pull/278
- Dev deepseek test case by @weizjajj in https://github.com/antgroup/agentUniverse/pull/280
- fix: Modify the components in the difizen platform. by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/285
- Change: Make cerebrum agent example more flexible by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/286
- add website bs4 reader by @z4656207 in https://github.com/antgroup/agentUniverse/pull/277
- add image reader. resolves [#247] by @wozhapen in https://github.com/antgroup/agentUniverse/pull/279
- improvement: support auto-loading for agent YAML and prompt versions by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/287
- Add Google Gemini llm. resolves [#250] by @wozhapen in https://github.com/antgroup/agentUniverse/pull/281
- chore: add ISSUE_TEMPLATE by @LandJerry in https://github.com/antgroup/agentUniverse/pull/288
- Dev fix trace by @weizjajj in https://github.com/antgroup/agentUniverse/pull/290
- chore: Add CONTRIBUTING file & pr template by @LandJerry in https://github.com/antgroup/agentUniverse/pull/291
- chore: update issue_template-bug.md by @LandJerry in https://github.com/antgroup/agentUniverse/pull/292
- chore: update issue_template-bug.yaml by @LandJerry in https://github.com/antgroup/agentUniverse/pull/293
- chore: add new pull-request-template yaml by @LandJerry in https://github.com/antgroup/agentUniverse/pull/294
- chore: modify pull-request-template by @LandJerry in https://github.com/antgroup/agentUniverse/pull/295
- chore: modify pull-request-template by @LandJerry in https://github.com/antgroup/agentUniverse/pull/296
- chore: update CONTRIBUTING file by @LandJerry in https://github.com/antgroup/agentUniverse/pull/298
-
- add common tool dir by @weizjajj in https://github.com/antgroup/agentUniverse/pull/303
- add default config by @weizjajj in https://github.com/antgroup/agentUniverse/pull/304
- FIX: pyproject.toml spell mistake FIX: store's default create_copy method only return itself by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/310
- Dev deepseek test case by @weizjajj in https://github.com/antgroup/agentUniverse/pull/297
- feat: add peer cases for canvas-based development platform in aU. by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/312
- feat: add multimodal agent examples. by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/308
- add file ignore for vscode by @keithkiden in https://github.com/antgroup/agentUniverse/pull/316
- docs: Update agentUniverse structure diagram by @LandJerry in https://github.com/antgroup/agentUniverse/pull/317
- fix deepseek by @weizjajj in https://github.com/antgroup/agentUniverse/pull/319
- Weizjajj/api doc by @weizjajj in https://github.com/antgroup/agentUniverse/pull/320
- Add Google gemini embedding. resolves [#251] by @wozhapen in https://github.com/antgroup/agentUniverse/pull/289
- feat: add image reader. resolves [#247] by @zhjuzi in https://github.com/antgroup/agentUniverse/pull/299
- CHANGE: Move image reader from file folder to image folder @zhouxiaoji by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/321
- merge dev to dev_fanen by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/322
- ADD: aU project image package shell by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/324
- DELETE: delete cerebrum agent temporarily by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/325
- feat: add Azure OpenAI embedding. resolves [#251] by @XuXinyuan2019 in https://github.com/antgroup/agentUniverse/pull/314
- feat: add doubao embedding. resolves [#251] by @zhjuzi in https://github.com/antgroup/agentUniverse/pull/300
- feat: add arxiv tool. resolves [#252] by @zhjuzi in https://github.com/antgroup/agentUniverse/pull/301
- add gemini example video resolves [#256] , fix react agent tool_name build by @wozhapen in https://github.com/antgroup/agentUniverse/pull/305
- add jina.ai tool support webpage read, search, check fact. [#252] by @z4656207 in https://github.com/antgroup/agentUniverse/pull/315
- FIX: jina ai module path bug CHANGE: move retry annotation int arxiv_tool to annotation path CHANGE: DoubaoEmbedding read env variable ARK_ENDPOINT_ID instead of ENDPOINT_ID by @AniviaTn in https://github.com/antgroup/agentUniverse/pull/326
- enhancement: added CustomizedFuncUtil and YAML functionality along with a series of other improvements. by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/323
- Fix: Initialize GeminiEmbedding client by @hiromesh in https://github.com/antgroup/agentUniverse/pull/327
- enhancement: added CustomizedFuncUtil and YAML functionality along wi… by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/329
- enhancement: added CustomizedFuncUtil and YAML functionality along wi… by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/331
- feat: add llm examples by @LandJerry in https://github.com/antgroup/agentUniverse/pull/333
- enhancement: added CustomizedFuncUtil and YAML functionality along wi… by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/334
- chore: update wenxin LLM attributes by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/336
- fix: regression test bug fixes before new release by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/337
- fix: regression test bug fixes before new release by @EdwinInAu in https://github.com/antgroup/agentUniverse/pull/338
- Merge dev branch into master branch by @LandJerry in https://github.com/antgroup/agentUniverse/pull/335
New Contributors
- @wozhapen made their first contribution in https://github.com/antgroup/agentUniverse/pull/278
- @keithkiden made their first contribution in https://github.com/antgroup/agentUniverse/pull/316
- @zhjuzi made their first contribution in https://github.com/antgroup/agentUniverse/pull/299
- @XuXinyuan2019 made their first contribution in https://github.com/antgroup/agentUniverse/pull/314
- @hiromesh made their first contribution in https://github.com/antgroup/agentUniverse/pull/327
Full Changelog: https://github.com/antgroup/agentUniverse/compare/v0.0.14...v0.0.15