mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-31 03:12:16 +00:00
- Add build_tool_descriptions() shared builder for enriched agent system
prompts (NativeReAct, NativeOpenHands, RLM, Orchestrator structured mode)
- Normalize tool_calls to flat {id, name, arguments} across CloudEngine
(OpenAI/Anthropic/Google), LiteLLM, and Ollama
- Add Anthropic tool_use extraction and input_schema conversion
- Add Google function_call extraction
- Make ReAct/OpenHands parsing case-insensitive
- Add telemetry efficiency, GPU monitor, and vLLM metrics modules
- Add TOML-based eval suite config system
- Update documentation and changelog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
288 B
Python
7 lines
288 B
Python
"""Backward-compat shim -- canonical location is agents.native_react."""
|
|
|
|
from openjarvis.agents.native_react import REACT_SYSTEM_PROMPT # noqa: F401
|
|
from openjarvis.agents.native_react import NativeReActAgent as ReActAgent # noqa: F401
|
|
|
|
__all__ = ["ReActAgent", "REACT_SYSTEM_PROMPT"]
|