mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 22:03:45 +00:00
fix: use template literal in test.ts
This commit is contained in:
parent
7a5cfdaed0
commit
7caa08999e
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ function streamGitLabDuo(
|
|||
console.log("streamGitLabDuo called");
|
||||
console.log(" model.id:", model.id);
|
||||
console.log(" options.apiKey present:", !!gitlabAccessToken);
|
||||
console.log(" options.apiKey (first 20):", gitlabAccessToken?.substring(0, 20) + "...");
|
||||
console.log(" options.apiKey (first 20):", `${gitlabAccessToken?.substring(0, 20)}...`);
|
||||
|
||||
if (!gitlabAccessToken) {
|
||||
throw new Error("No GitLab access token provided in options.apiKey");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue