Skip to main content
Glama
test_dashscope_deep_research.py799 B
"""Integration test for the Dashscope-powered deep research operator. This script runs `DashscopeDeepResearchOp` with a fixed query and streams the intermediate research output to stdout, allowing manual inspection of the end-to-end research flow. """ import asyncio from finance_mcp.core.agent import DashscopeDeepResearchOp from finance_mcp.core.utils import run_stream_op async def main() -> None: """Execute the deep-research pipeline for a single example query.""" query = "茅台公司未来业绩" op = DashscopeDeepResearchOp() async for _ in run_stream_op( op, enable_print=True, query=query, ): # The helper prints streaming content; we just consume the iterator. pass if __name__ == "__main__": asyncio.run(main())

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/FlowLLM-AI/finance-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server