fix(providers): correct conol-web fallback-models import depth (#10140)

* fix(providers): correct conol-web fallback-models import depth

The registry entry resolved `../../../services/conolModels.ts`, which points at
`open-sse/config/services/` -- a directory that does not exist. Every sibling
registry (hyperagent, notion-web, promptql) uses four levels. The wrong depth makes
any suite that loads the provider registry fail to resolve, including the translator
tests this PR needs.

* docs(changelog): add fragment for #10140
This commit is contained in:
James
2026-08-13 12:55:14 +09:00
committed by GitHub
parent d085a0e693
commit b9319d05aa

View File

@@ -0,0 +1,3 @@
- fix(providers): correct the conol-web registry fallback-models import depth, which pointed at a
non-existent `open-sse/config/services/` and made any suite loading the provider registry fail to
resolve (#10140)