TonyGeez
TonyGeez
You need to add your WebDAV endpoint to allowed list in `../../app/constant.ts` ```js // some famous webdav endpoints export const internalAllowedWebDavEndpoints = [ "https://dav.jianguoyun.com/dav/", "https://dav.dropdav.com/", "https://dav.box.com/dav", "https://nanao.teracloud.jp/dav/", "https://bora.teracloud.jp/dav/", "https://webdav.4shared.com/", "https://dav.idrivesync.com",...
> I've found the solution how to connect Z.ai properly here: [#760 (comment)](https://github.com/musistudio/claude-code-router/issues/760#issuecomment-3266069700) > > Please, add this to the README.md, it works (I've checked with my z.ai subscription api...
> I trired setting `https://api.z.ai/api/anthropic` in ccr. but it doesn't work. I want to use z.ai in claude code router for changing models easier. My previous example was for direct...
@nikitakot `...v1/messages` is OpenAI style. You need to use ``` "api_base_url": "https://api.z.ai/api/anthropic", ``` Also you need to replace `"api_key": "${ANTHROPIC_AUTH_TOKEN}",` with z.ai API key. It fine to just paste your...
It slower because Claude is Anthropic style, that the point of using Claude-code-router which take OpenAI style format and transform to Anthropic style. That the reason of delay. But if...