{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/eidolon-resource/_shared/latest--Toolhouse.json",
  "title": "Toolhouse",
  "description": "A configurable tool backed by Toolhouse.ai that can be added to Eidolon Agents.\nToolhouse is the complete cloud infrastructure to equip LLMs with actions and knowledge.",
  "x-lintel": {
    "source": "https://www.eidolonai.com/json_schema/v1/schemas/LogicUnit/Toolhouse.json",
    "sourceSha256": "fc65ab3fa3426dd8e2ca39e5c36099d1a9b404ebdcac52b8eb6834855b242453"
  },
  "type": "object",
  "properties": {
    "implementation": {
      "const": "Toolhouse",
      "title": "Implementation"
    },
    "api_key": {
      "description": "Toolhouse API_KEY to connect toolhouse.",
      "title": "Api Key",
      "type": "string"
    },
    "bundle": {
      "default": "default",
      "description": "groups of tools you want to pass to the LLM based on specific contextual need of each LLM call or agent.",
      "title": "Bundle",
      "type": "string"
    },
    "base_url": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Base Url"
    }
  },
  "additionalProperties": false,
  "required": [
    "implementation"
  ],
  "reference_details": {
    "clz": "eidolon_ai_sdk.builtins.logic_units.toolhouse_logic_unit.Toolhouse",
    "groups": [
      "LogicUnit"
    ],
    "name": "Toolhouse",
    "overrides": {}
  }
}
