(user: string)
| 410 | const aiProviderConfigsPath = "/api/v2/ai/providers"; |
| 411 | const chatModelConfigsPath = "/api/experimental/chats/model-configs"; |
| 412 | const userSkillsPath = (user: string) => |
| 413 | `/api/experimental/users/${encodeURIComponent(user)}/skills`; |
| 414 | const userSkillPath = (user: string, name: string) => |
| 415 | `${userSkillsPath(user)}/${encodeURIComponent(name)}`; |
| 416 | const userAIProviderKeysPath = (user = "me") => |
no outgoing calls
no test coverage detected