| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
✨Feat: Add AIDP search tool https://github.com/ModelEngine-Group/nexent/issues/2788 (#3241) * ✨Feat:add aidp search tool * 🗑️ Remove: Delete the standalone AIDP mock server implementation from the project. * 🐛Bugfix: Update AIDP API endpoint parameters and enhance error logging * 🔧 Refactor: Implement autouse fixture for supabase mock to ensure structured attributes are preserved during test execution * 🔧 Refactor: Enhance stubbing of file management service in tests to ensure compatibility with LLM model retrieval and configuration management * 🐛 Fix stub for file_management_service: look up patched names from sys.modules The previous stub captured `backend_file_management_module` (the stub itself) in `_stub_get_llm_model`, so `@patch` decorators modifying `sys.modules['backend.services.file_management_service']` were never visible. This caused `TestGetLlmModel` tests to return an unpached MagicMock instead of the expected mock_model_instance. Two changes: 1. `_stub_get_llm_model` now looks up all dependencies from `sys.modules['backend.services.file_management_service']` so that runtime patches from `@patch(...)` decorators are respected. 2. The stub module provides MagicMock defaults for all attributes that `@patch` needs to call `get_original()` on (tenant_config_manager etc.). * 🔧 Refactor: Update test_get_llm_model to improve patching and ensure consistent behavior across environments. Simplified test structure by directly patching `get_llm_model` and its dependencies, enhancing clarity and reliability of test cases. | 3 个月前 | |
feat(agent-repository): remove categories and allow custom emoji icons (#3367) * Release/v2.2.1 (#3269) * add_greeting_fields_to_agent-develop * feat(knowledge-base): add preserve_source_file and post-index source cleanup Let knowledge bases opt out of keeping uploaded MinIO copies after indexing while retaining Elasticsearch chunks for retrieval. Default behavior remains preserve_source_file=true for backward compatibility. - Add preserve_source_file column (init.sql + v2.2.0_0601 migration) - Accept preserve_source_file on create/update and northbound/vector APIs - Support document DELETE scope=source_only and source_available in listings - Run cleanup_source Celery task when preserve_source_file is false - UI: create-KB toggle, list tag, knowledge-base preview when copy is missing - Update vector-database SDK docs and backend tests * test(data_process): stub knowledge_db, redis_service, and redis in test_worker Align setup_mocks_for_worker with test_tasks so importing backend.data_process.worker loads package __init__ without real DB/redis deps. * test(data_process): shim cleanup_source for submit_process_forward_chain tests * remove duplicate import * fix: update unit tests for greeting_message and example_questions fields * add init.sql to sonar.properites * ♻️ Improvement: API to MCP conversion service supports configuring headers. (#3194) * ♻️ Improvement: API to MCP conversion service supports configuring headers. [Specification Details] 1. Front-end and back-end modifications * ♻️ Improvement: API to MCP conversion service supports configuring headers. [Specification Details] 1. Modify the frontend, after adding, set the HTTP headers to empty. 2. Modify test cases. * ♻️ Improvement: Enhance processing of ES index names in memory banks. (#3196) [Specification Details] 1. Replace all symbols in the index name that do not meet the rules with "_". 2. Modify test cases. * feat: add active memory tools (StoreMemoryTool, SearchMemoryTool) (#3197) - Implement StoreMemoryTool for explicit memory storage during agent reasoning - Implement SearchMemoryTool for on-demand memory retrieval during conversations - Integrate tools into agent creation flow (create_agent_info.py) - Register tools in nexent_agent.py and tools/__init__.py - Add MEMORY_OPERATION tool sign for proper categorization - Fix memory_core.py cache key to include event loop ID (prevents cross-loop conflicts) - Add comprehensive test coverage for both tools - Add procedural memory verification documentation Tools follow existing patterns: lazy imports, observer integration, error handling, and respect user memory preferences (agent_share_option, disabled_agent_ids). Co-authored-by: Dallas98 <40557804+Dallas98@users.noreply.github.com> * 🐛 Bugfix: skill names and descriptions never load to context (#3205) * 🐛 Bugfix: skill names and descriptions never load to context * 🐛 Bugfix: skill names and descriptions never load to context * 🐛 Bugfix: skill names and descriptions never load to context * 🐛 Bugfix: official skills not copied to target directory * 🐛 Bugfix: official skills not copied to target directory * Feat: add selected count badges to tool/skill pool labels (#3206) Co-authored-by: chase <byzhangxin11@126.com> * 🐛 Bugfix: Fix attribution error when tool calling error (#3208) * ✨ Feat: Add support for Word document generation, preview, and download (#3191) * Feat: Add support for Word document generation, preview, and download * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Restrict uploads to a known safe workspace/output directory * 修改单元测试 * 修复单元测试 * Bugfix: Store uploaded files in Minio for conversation messages to enable file visibility in history --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * ✨Feat:Enhance prompt optimization by integrating openjiuwen and fix related bugs (#3190) * ✨Feat:add prompt optimization * 🐛Bugfix: dockerbuild failed when running pipefail in python3_11 * 🔨Optimize: Optimize prompt optimization display page and interaction methods * 🐛Bugfix: fix dependencies replication * 🎨:Optimize frontend prompts and loading interface * 🔧 Refactor: Update imports and remove redundant ENABLE_JIUWEN_SDK import in prompt_service.py * 🔧 Refactor: Correct import path for NexentCapabilityError and enhance test coverage for prompt optimization service * 🔧 Refactor: Update import paths for exception handling and improve logging formatting in prompt_service.py * 🔧 Refactor: Simplify lazy imports in jiuwen_sdk_adapter.py and update import paths in prompt_service.py * 🔧 Refactor: Enhance Jiuwen SDK adapter handling and improve test stubs in prompt_service.py and related test files * 🧪test:Pydantic model for PromptTemplateRequest in test_prompt_template_app.py * 🔧 Refactor: Remove unnecessary dependency exclusions from pyproject.toml * 🔧 Update: Upgrade huggingface_hub dependency version in pyproject.toml * 🔧 Update: Exclude unnecessary transitive dependencies and adjust huggingface_hub version in pyproject.toml * 🔧 Test: Add mock modules for unstructured inference and set up package paths in test files * 🔧 Test: Enhance test setup by adding optional SDK mocks and cleaning up module imports in data processing tests * 🔧 Test: Consolidate mock module setup for unstructured inference across multiple test files * 🔧 Test: Remove unused optional SDK mocks from test configuration * 🔧 Refactor: Clean up imports and enhance dynamic loading of fastmcp components in Docker client * 📦update:sdk dependence update * Add CAS SSO integration and improve logout handling (#3072) * feat: add CAS SSO integration * Skip CAS logout when CAS_LOGOUT_URL is unset * 取消转义 * Improve CAS logout handling and confirm user logout * Disable account deletion for CAS users * Add CAS session init SQL and k8s config * clean code * Remove agent guardrails design doc from tracking * 补充文档 --------- Co-authored-by: hhhhsc <name> * 🐛Bugfix: Remove unnecessary dependency exclusions and upgrade huggingface_hub version in pyproject.toml (#3211) * refactor: move current time from system prompt to user message for prompt cache stability (#3203) Remove {{time}} from all 4 prompt YAML templates (manager/managed × en/zh) and strip time_str from the context_utils pipeline (_format_app_context, build_skeleton_header_component, build_context_components, build_app_context_string). Also remove time from create_agent_info render kwargs and build_context_components call. In CoreAgent.run, prepend [Current time: ...] to self.task so the timestamp travels with the user message instead of being baked into the system prompt. This makes the rendered system prompt fully deterministic per (agent_id, tenant_id, version_no, language) — enabling prompt/KV cache hits across requests for the same agent config. Sync test_context_utils.py: drop time_str= from 3 test cases. Remove unused datetime imports from context_utils.py and create_agent_info.py. * 🐛 Bugfix: Fixed the issue of being unable to add MCP services via containerization. (#3213) [Specification Details] 1. Modify the DEFAULT_NETWORK_NAME when starting the MCP service in the container to match the name in docker-compose. 2. Modify the parameters passed to the add_mcp_service method; custom_headers defaults to None. * 🐛 Bugfix: Fixed the issue where uploaded text files could not be parsed during a session. (#3219) * 🐛 Bugfix: Fixed the issue where uploaded text files could not be parsed during a session. [Specification Details] 1. The return parameter of the file_process method has changed and needs to be unpacked. * 🐛 Bugfix: Fixed the issue where uploaded text files could not be parsed during a session. [Specification Details] 1. Modify test case. * 🐛 Bugfix: Fixed an issue where the MCP service could not be added correctly after updating the FastMCP version. (#3222) [Specification Details] 1. Add `kwargs` to the `create_httpx_client` function to accept all additional parameters. * 🐛 Bugfix: Fix incomplete display of tenant resources page after window resize (#3215) * Move non-shadcn ui component to other folder * Bugfix: Fix incomplete display of tenant resources page after window resize * Bugfix: Fix incomplete display of tenant resources page after window resize * Add agent marketplace repository and version pinning for sub-agents (#3239) * feat: add agent marketplace repository and pin sub-agent versions at publish Introduce ag_agent_repository_t with list/status/publish/import APIs for frozen agent snapshots. Pin selected_agent_version_no on agent relations when publishing so sub-agents resolve to a fixed version at runtime. Extend agent export/import to bundle skills in ZIP payloads and add embedding model fallback when no model name is provided. * feat: add agent marketplace repository and pin sub-agent versions at publish Introduce ag_agent_repository_t with list/status/publish/import APIs for frozen agent snapshots. Pin selected_agent_version_no on agent relations when publishing so sub-agents resolve to a fixed version at runtime. Extend agent export/import to bundle skills in ZIP payloads and add embedding model fallback when no model name is provided. * feat: add agent marketplace repository and pin sub-agent versions at publish Introduce ag_agent_repository_t with list/status/publish/import APIs for frozen agent snapshots. Pin selected_agent_version_no on agent relations when publishing so sub-agents resolve to a fixed version at runtime. Extend agent export/import to bundle skills in ZIP payloads and add embedding model fallback when no model name is provided. * feat: add agent marketplace repository and pin sub-agent versions at publish Introduce ag_agent_repository_t with list/status/publish/import APIs for frozen agent snapshots. Pin selected_agent_version_no on agent relations when publishing so sub-agents resolve to a fixed version at runtime. Extend agent export/import to bundle skills in ZIP payloads and add embedding model fallback when no model name is provided. * feat(agent): add verification configuration for agents and update related components (#3174) * feat(agent): add verification configuration for agents and update related components * feat(model): update model type labels and add monitoring dashboard translations * 🐛 Bugfix: Fix inability to select agent from agent space to edit (#3240) * Move non-shadcn ui component to other folder * Bugfix: Fix incomplete display of tenant resources page after window resize * Bugfix: Fix incomplete display of tenant resources page after window resize * Bugfix: Fix inability to select agent from agent space to edit * Bugfix: Display correct version info when viewing agent details * Update data agent and ME CAS integration documentation (#3242) * 补充dataagent对接文档 * 补充ME cas对接文档 * 补充ME cas对接文档 --------- Co-authored-by: hhhhsc <name> * ✨ Add several northbound apis (#3223) * ✨ Add several northbound apis * ✨ Add several northbound apis * ✨ Add several northbound apis * ✨ Add several northbound apis * ✨ Add several northbound apis * refactor: simplify deployment script by removing unused variables and functions (#3245) * feat(agent): add verification configuration for agents and update related components * feat(model): update model type labels and add monitoring dashboard translations * refactor(build_offline_package): simplify deployment script by removing unused variables and functions * 🐛 Bugfix: Adjust agent detail UI layout to accommodate newly added "self-verification" field (#3246) * Move non-shadcn ui component to other folder * Bugfix: Fix incomplete display of tenant resources page after window resize * Bugfix: Fix incomplete display of tenant resources page after window resize * Bugfix: Fix inability to select agent from agent space to edit * Bugfix: Display correct version info when viewing agent details * Bugfix: Adjust agent detail UI layout to accommodate newly added "self-verification" field * 补充sql (#3248) * 补充sql * 扩大limit限制 * 🐛 Bugfix: Fixed an issue where the MCP service failed to start in a Kubernetes container. (#3254) [Specification Details] 1. Modify the pod naming logic to convert all non-compliant characters to -. 2. Modify test cases. * 🐛 Bugfix: knowledge_base_search_tool called with TypeError: argument of type 'FieldInfo' is not iterable (#3259) * 🐛 Bugfix: Fixed an issue where the one-click rename function failed after importing an agent. (#3258) [Specification Details] 1. The frontend does not pass `agent_id` when calling the `regenerate_name` API. * Bugfix: Exclude attachments from assistant when saving conversation history (#3261) * Bump APP_VERSION from v2.2.0 to v2.2.1 (#3268) The default setting for client-side self-validation is "False". --------- Co-authored-by: chase <byzhangxin11@126.com> Co-authored-by: Chenlifeng <174292121+Lifeng-Chen@users.noreply.github.com> Co-authored-by: Dallas98 <40557804+Dallas98@users.noreply.github.com> Co-authored-by: Jason Wang <56037774+JasonW404@users.noreply.github.com> Co-authored-by: Xia Yichen <iamjasonxia@126.com> Co-authored-by: JeffWu <45140512+jeffwu-1999@users.noreply.github.com> Co-authored-by: WMC001 <46217886+WMC001@users.noreply.github.com> Co-authored-by: xuyaqi <xuyaqist@gmail.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: DongJiBao2001 <120021235+DongJiBao2001@users.noreply.github.com> Co-authored-by: hhhhsc701 <56435672+hhhhsc701@users.noreply.github.com> Co-authored-by: Dallas98 <990259227@qq.com> Co-authored-by: frr <64584192+wuyuanfr@users.noreply.github.com> * Revert "Release/v2.2.1 (#3269)" (#3272) This reverts commit 9ff420ecce6b2ca21a67ce51053205860a76e41a. * feat(agent-repository): remove categories and allow custom emoji icons * feat(agent-space): improve mine tab UX with delete, navigation, and author display - Add delete action for agents in mine tab with confirmation modal - Navigate back to agent repository when editing from agent-space - Persist agent-space tab state via URL query params (?tab=mine) - Display author in repository detail modal and map author field - Auto-fill agent author from user email on create - Adjust agents page header layout to accommodate back button * fix conflict * fix conflict * fix: delete test ts file --------- Co-authored-by: panyehong <91180085+YehongPan@users.noreply.github.com> Co-authored-by: chase <byzhangxin11@126.com> Co-authored-by: Dallas98 <40557804+Dallas98@users.noreply.github.com> Co-authored-by: Jason Wang <56037774+JasonW404@users.noreply.github.com> Co-authored-by: Xia Yichen <iamjasonxia@126.com> Co-authored-by: JeffWu <45140512+jeffwu-1999@users.noreply.github.com> Co-authored-by: WMC001 <46217886+WMC001@users.noreply.github.com> Co-authored-by: xuyaqi <xuyaqist@gmail.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: DongJiBao2001 <120021235+DongJiBao2001@users.noreply.github.com> Co-authored-by: hhhhsc701 <56435672+hhhhsc701@users.noreply.github.com> Co-authored-by: Dallas98 <990259227@qq.com> Co-authored-by: frr <64584192+wuyuanfr@users.noreply.github.com> | 2 个月前 | |
✨ Feat: add ASSET_OWNER role, enforce asset visibility, and refine no… (#3042) * ✨ Feat: add ASSET_OWNER role, enforce asset visibility, and refine northbound knowledge APIs * Introduce ASSET_OWNER role with virtual tenant scope (asset_owner_tenant_id) and invitation bootstrap flow * Add/adjust role permissions and tenant migrations for ASSET_OWNER-scoped resources (agents, skills, models, tools, invitations) * Enforce visibility rules: hide ASSET_OWNER agent prompts for non-ASSET_OWNER callers (prompts_hidden) and restrict ASSET_OWNER skills/docs/files to asset-owner scope * Tighten attachment access control for attachments/asset_owner/{user_id} while keeping knowledge_base files readable for authenticated users * Refine /nb/v1/knowledge endpoints and parameters for index and file operations (list/create/delete indices, list files, delete documents, upload/download) * feat(asset-owner): add invitation & user management support - Add tenant_id migration and asset owner permissions/menu SQL - Expose northbound knowledge/vector database updates for asset owner visibility - Add backend auth/utils and invitation/agent/user management services - Update invitation list UI * feat(asset-owner): add invitation & user management support - Add tenant_id migration and asset owner permissions/menu SQL - Expose northbound knowledge/vector database updates for asset owner visibility - Add backend auth/utils and invitation/agent/user management services - Update invitation list UI * feat(asset-owner): add invitation & user management support - Add tenant_id migration and asset owner permissions/menu SQL - Expose northbound knowledge/vector database updates for asset owner visibility - Add backend auth/utils and invitation/agent/user management services - Update invitation list UI * feat(asset-owner): add invitation & user management support - Add tenant_id migration and asset owner permissions/menu SQL - Expose northbound knowledge/vector database updates for asset owner visibility - Add backend auth/utils and invitation/agent/user management services - Update invitation list UI * feat(asset-owner): add invitation & user management support - Add tenant_id migration and asset owner permissions/menu SQL - Expose northbound knowledge/vector database updates for asset owner visibility - Add backend auth/utils and invitation/agent/user management services - Update invitation list UI | 3 个月前 | |
♻️ Front-end services, hooks, chat page related constants and types are placed in specific files | 1 年前 | |
✨ Feature: Added tools for uploading and downloading files from S3 buckets, ensuring that skills and tools can directly process local files. (#3724) * ✨ Feature: Added tools for uploading and downloading files from S3 buckets, ensuring that skills and tools can directly process local files. * ✨ Feature: Added tools for uploading and downloading files from S3 buckets, ensuring that skills and tools can directly process local files. * ✨ Feature: Added tools for uploading and downloading files from S3 buckets, ensuring that skills and tools can directly process local files. * ✨ Feature: Added tools for uploading and downloading files from S3 buckets, ensuring that skills and tools can directly process local files. [Specification Details] 1. Add test cases. | 29 天前 | |
feat: interactive retrieval citations with unified hover cards (#3654) * feat: show retrieval citation chunks * fix: guide automatic retrieval citations * fix: focus cited chunks in legacy chat * fix: scope citation highlights by evidence section * style: unify newchat source card with legacy /chat card style * fix: improve citation chunk highlighting * fix: include heading sections in citation highlights * feat: highlight exact retrieval terms in citations * feat: add citation write guard to control citation markers in tool output * feat: remove citation write guard and refine citation marker interactions - Remove the CitationWriteGuard tool and the agent-level 'preserve citations in tool output' toggle from backend, SDK, SQL migrations and frontend UI - Show a source-card hover popover on citation markers in both chat pages - Keep click-to-select source card working; gate sentence-level highlight behind ENABLE_CITATION_CLICK_HIGHLIGHT flag (default off) * refactor: dedupe citation helpers and fix marker keyboard accessibility - Extract shared highlight helpers (escapeRegExp, extractHighlightTerms, splitSourceTextIntoSentences) into frontend/lib/citationHighlight.ts, removing duplication between the /chat right panel and /newchat sources panel - Add keyboard activation (Enter/Space, role=button, aria-label) to citation markers in markdownRenderer so interactive elements are accessible - Consolidate the three duplicated search-result formatting loops in knowledge_base_search_tool.py into one _format_search_results helper - Extend unit tests to cover score/highlight-term merging, no-mutation guarantees, and source_search persistence of retrieval highlight terms * refactor: extract shared citation UI parts and polish accessibility - Extract CiteIndexBadge and HighlightedChunkText into components/common/highlightedSourceText.tsx, removing duplicated copies from the /chat right panel, /newchat sources panel, and cite marker - Unify the three source-card variants in sources-panel around a shared SourceCardBody - Split extractHighlightTerms into focused helpers to reduce cognitive complexity and share the term merge/dedupe pipeline via mergeHighlightTerms - Use a native <button> for citation markers in markdownRenderer and flatten nested ternaries flagged by SonarCloud - Replace escaped string regexes with String.raw / RegExp.exec in getCitedAnswerContext * refactor: fold citation docs into start-chat guide and merge sql migrations * docs: add citation feature section to English start-chat guide * test: fix citation persistence assertions * docs: remove citation screenshots * test: remove stale context utility import * fix: keep citation schema changes incremental | 12 天前 | |
🐛 Bugfix: Auto-clean account when exists in Supabase but not in postgresql (#3002) * Bugfix: Auto-clean account when exists in Supabase but not in postgresql database * Bugfix: Remove type field from A2A v1.0 as it should not exist * 修复文档图片大小 * Bugfix: Prevent session expiration while user is active * 修改测试用例 * 修改测试用例 * Bugfix: Immediately show login page on 401 response | 3 个月前 | |
🐛 Fix:In-Flight Knowledge-File and Knowledge-Base Deletion (#3842) * fix: coordinate in-flight knowledge file deletion * test: cover document deletion coordination * test: reduce coverage test duplication * fix: guard knowledge base deletion during ingestion * fix: finish knowledge-base deletion cleanup * fix: adapt knowledge-base deletion guard to management services * ci: exclude test fixtures from duplication gate * ci: document test fixture duplication exclusion * fix: preserve document deletion response messages * test: cover deletion response and cancellation branches * fix: propagate knowledge-base deletion errors * chore: remove unrelated Sonar config changes * chore: align Sonar config with develop | 12 天前 | |
🐛 Fix: fail knowledge ingestion on non-retryable errors (#3778) * fix: fail knowledge ingestion on non-retryable errors * fix: preserve ingestion error response compatibility * fix: preserve task error code parsing compatibility * test: cover ingestion error handling branches | 24 天前 | |
✨ Add FastAPI application factory and unit tests: Implemented a new app_factory module for creating FastAPI applications with common configurations and exception handling. Added comprehensive unit tests to validate the functionality of the create_app and register_exception_handlers functions. | 6 个月前 | |
fix: align AIDP knowledge base name validation (#3864) | 12 天前 | |
feat: Support image extraction & retrieval for office/PDF documents (#2720) * ✨add_image_retrieval * ✨add_image_retrieval * ✨add_image_retrieval * ✨add_image_retrieval * ✨add_image_retrieval * ✨add_image_retrieval * ✨add_image_retrieval * ✨add_image_retrieval * ✨add_image_retrieval * ✨add_image_retrieval * add_image_retrieval * add_image_retrieval * add_image_retrieval * add_image_retrieval * add_image_retrieval * modify unit test file * modify unit test file * modify fix the bug * modify test file * modify test files * cancel downloading models and modifying test files * modify the image configuration file * resolve conflict * modify test files * modify test file * improve test coverage * remove unnecessary input parameter * modify test file * modify test files * modify test file * modify test file * modify test files * modify test file | 3 个月前 | |
Fix: delete chat page margin | 8 个月前 | |
⭐️ Add Agent Space categories logo | 9 个月前 | |
fix: delete MCP Registry (#3757) * 调整mcp添加mcp和编辑页面,与mcp配置页面保持一致; mcp容器化启动点击后就展示日志,配置页面和仓库页面都修改; 修复mcp服务更新后,无法刷新工具的问题; * mcp仓库增加分页; fix test case * fix test case * fix test case * Update custom.json * 修复本地镜像上传部署日志显示问题 * fix bug * fix bug * add test case * add test case * 删除mcp市场 * 优化前端页面 * Update custom.json * Normalize custom locale file endings * Fix MCP registry endpoint typing * Remove obsolete MCP registry frontend code * 修改本地镜像上传MCP错误提示 * 修复mcp提交审核后不及时显示问题 | 25 天前 | |
♻️ Front-end agent configuration, chat page related constants and types are placed in specific files | 1 年前 | |
♻️ Refactor: remove deprecated app config stuff (#3841) * ♻️ Remove deprecated app config stuff * 🧪 Add test files * 🧪 Add test files * 🧪 Add test files | 16 天前 | |
feat: add prompt template management for agent generation (#2925) * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation * feat: add prompt template management for agent generation | 3 个月前 | |
Feat: support build nexent-web with base url (#3529) * Refactor: Consolidate all API endpoints into api.ts * feat: support build nexent-web with base url * Feat: support add nexent-web build args to define base url * fix | 1 个月前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 3 个月前 | ||
| 2 个月前 | ||
| 3 个月前 | ||
| 1 年前 | ||
| 29 天前 | ||
| 12 天前 | ||
| 3 个月前 | ||
| 12 天前 | ||
| 24 天前 | ||
| 6 个月前 | ||
| 12 天前 | ||
| 3 个月前 | ||
| 8 个月前 | ||
| 9 个月前 | ||
| 25 天前 | ||
| 1 年前 | ||
| 16 天前 | ||
| 3 个月前 | ||
| 1 个月前 |