mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-28 16:07:46 +00:00
5ba5e8356c
* feat: init pydantic ai agent & context 7 mcp * feat: integrate MCP documentation search into data science pipeline evaluation * fix: disable MCP documentation search and update related docstrings and defaults * lint * fix: correct prompt formatting and conditional blocks in pipeline_eval section * lint * feat: add query method to PAIAgent for synchronous agent execution * fix: apply nest_asyncio for agent and update context7 query method * lint * lint * lint * lint * docs: update MCP folder docstring and rename test class in test_pydantic.py * refactor: centralize completion kwargs logic and update pydantic_ai integration * fixbug * typo * fix: bug triggered by padantic-ai version backtracking. --------- Co-authored-by: Linlang <Lv.Linlang@hotmail.com>
11 lines
433 B
Python
11 lines
433 B
Python
"""
|
|
Here are a list of MCP servers.
|
|
|
|
The MCP server is a individual RESTful API. So the only following things are included in the folder:
|
|
- Settings.
|
|
- e.g., mcp/<mcp_name>.py:class Settings(BaseSettings); then it is initialized as a global variable SETTINGS.
|
|
- It only defines the format of the settings in Python Class (i.e., Pydantic BaseSettings).
|
|
- health_check:
|
|
- e.g., mcp/<mcp_name>.py:def health_check() -> bool;
|
|
"""
|