Files
wehub-resource-sync e64161ec32
Release / release_and_publish (push) Waiting to run
CI / ci (3.11) (push) Has been cancelled
CI / ci (3.10) (push) Has been cancelled
CI / dependabot (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:36:15 +08:00

36 lines
1.3 KiB
Python

import unittest
from rdagent.oai.llm_utils import APIBackend
from rdagent.utils.agent.ret import PythonAgentOut
from rdagent.utils.agent.tpl import T
class TestAgentInfra(unittest.TestCase):
def test_agent_infra(self):
# NOTE: It is not serious. It is just for testing
sys_prompt = T("components.proposal.prompts:hypothesis_gen.system_prompt").r(
targets="targets",
scenario=T("scenarios.qlib.experiment.prompts:qlib_model_background").r(),
hypothesis_output_format=PythonAgentOut.get_spec(),
hypothesis_specification=PythonAgentOut.get_spec(),
)
user_prompt = T("components.proposal.prompts:hypothesis_gen.user_prompt").r(
hypothesis_and_feedback="No Feedback",
RAG="No RAG",
targets="targets",
)
resp = APIBackend().build_messages_and_create_chat_completion(user_prompt=user_prompt, system_prompt=sys_prompt)
code = PythonAgentOut.extract_output(resp)
print(code)
def test_include(self):
parent = T("components.coder.data_science.raw_data_loader.prompts:spec.user.data_loader").r(latest_spec=None)
child = T("scenarios.data_science.share:component_spec.DataLoadSpec").r()
assert child in parent
print(parent)
if __name__ == "__main__":
unittest.main()