Thinking to add in open-source lib a support of any model and MCP

1 points by kateyan 2 days ago

Hey,

I have a platform to test and improve prompts, with observability. It has its own SDK.

I'm thinking to add in the context of the model rules, like:

You have next skills: ``` - web_call({'query': '...query'}) - make_plan({"step1": {"expected_results": "", actions: "", "where_we_are": }}) - update_plan("step_name": {"expected_results": "", actions: "", "where_we_are": }) ```

If you wish to make a call you need to make a call: ``` <tool_call> { "tool_name": "", "parameters": { // parameters of the tool }, } </tool_call> ```

---- It's a prompting technique which i use for models like deepseek. But, i wonder if ppl here are iinterested to have a python lib which will support MCP in the same similar way with all other models, and it will help to choose easily whoich model performs best.