forked from mvanhorn/printing-press-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools-manifest.json
More file actions
107 lines (107 loc) · 2.96 KB
/
Copy pathtools-manifest.json
File metadata and controls
107 lines (107 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"api_name": "mixlayer",
"base_url": "https://models.mixlayer.ai/v1",
"description": "Privacy-first Mixlayer CLI for OpenAI-compatible chat, local PII redaction and vaulting, reasoning-aware model ladders, live model catalog refresh, and ledger-backed cost proofs.",
"mcp_ready": "full",
"http_transport": "standard",
"auth": {
"type": "bearer_token",
"header": "Authorization",
"format": "Bearer {MIXLAYER_API_KEY}",
"env_vars": [
"MIXLAYER_API_KEY"
],
"env_var_specs": [
{
"name": "MIXLAYER_API_KEY",
"kind": "per_call",
"required": true,
"sensitive": true,
"inferred": true
}
]
},
"required_headers": [],
"tools": [
{
"name": "chat_create_completion",
"description": "Create a chat completion for the given model and messages. Required: model, messages. Optional: tools, tool_choice, temperature (plus 3 more).",
"method": "POST",
"path": "/chat/completions",
"params": [
{
"name": "model",
"type": "string",
"location": "body",
"description": "ID of the model to use (e.g. qwen/qwen3.5-4b-free)",
"required": true
},
{
"name": "messages",
"type": "array",
"location": "body",
"description": "List of messages comprising the conversation so far",
"required": true
},
{
"name": "tools",
"type": "array",
"location": "body",
"description": "List of tools the model may call"
},
{
"name": "tool_choice",
"type": "string",
"location": "body",
"description": "Controls which tool, if any, the model calls"
},
{
"name": "temperature",
"type": "number",
"location": "body",
"description": "Sampling temperature to use"
},
{
"name": "top_p",
"type": "number",
"location": "body",
"description": "Nucleus sampling probability mass"
},
{
"name": "max_tokens",
"type": "integer",
"location": "body",
"description": "Maximum number of tokens to generate"
},
{
"name": "stream",
"type": "boolean",
"location": "body",
"description": "Whether to stream back partial progress"
}
]
},
{
"name": "models_get",
"description": "Retrieve a model by ID. Required: id.",
"method": "GET",
"path": "/models/{id}",
"params": [
{
"name": "id",
"type": "string",
"location": "path",
"description": "The model identifier",
"required": true
}
]
},
{
"name": "models_list",
"description": "List all available models. Returns array.",
"method": "GET",
"path": "/models",
"params": []
}
]
}