fix(lint): resolve prettier and dot-notation errors
Some checks failed
ci/woodpecker/push/ci Pipeline failed
Some checks failed
ci/woodpecker/push/ci Pipeline failed
This commit is contained in:
@@ -1,13 +1,4 @@
|
|||||||
import {
|
import { Body, Controller, HttpException, Logger, Post, Req, Res, UseGuards } from "@nestjs/common";
|
||||||
Body,
|
|
||||||
Controller,
|
|
||||||
HttpException,
|
|
||||||
Logger,
|
|
||||||
Post,
|
|
||||||
Req,
|
|
||||||
Res,
|
|
||||||
UseGuards,
|
|
||||||
} from "@nestjs/common";
|
|
||||||
import type { Response } from "express";
|
import type { Response } from "express";
|
||||||
import { AuthGuard } from "../auth/guards/auth.guard";
|
import { AuthGuard } from "../auth/guards/auth.guard";
|
||||||
import type { MaybeAuthenticatedRequest } from "../auth/types/better-auth-request.interface";
|
import type { MaybeAuthenticatedRequest } from "../auth/types/better-auth-request.interface";
|
||||||
|
|||||||
@@ -90,10 +90,7 @@ export class ChatProxyService {
|
|||||||
* - GUEST_LLM_API_KEY: API key (optional, for cloud providers)
|
* - GUEST_LLM_API_KEY: API key (optional, for cloud providers)
|
||||||
* - GUEST_LLM_MODEL: Model name to use
|
* - GUEST_LLM_MODEL: Model name to use
|
||||||
*/
|
*/
|
||||||
async proxyGuestChat(
|
async proxyGuestChat(messages: ChatMessage[], signal?: AbortSignal): Promise<Response> {
|
||||||
messages: ChatMessage[],
|
|
||||||
signal?: AbortSignal
|
|
||||||
): Promise<Response> {
|
|
||||||
const llmUrl = this.config.get<string>("GUEST_LLM_URL") ?? DEFAULT_GUEST_LLM_URL;
|
const llmUrl = this.config.get<string>("GUEST_LLM_URL") ?? DEFAULT_GUEST_LLM_URL;
|
||||||
const llmApiKey = this.config.get<string>("GUEST_LLM_API_KEY");
|
const llmApiKey = this.config.get<string>("GUEST_LLM_API_KEY");
|
||||||
const llmModel = this.config.get<string>("GUEST_LLM_MODEL") ?? DEFAULT_GUEST_LLM_MODEL;
|
const llmModel = this.config.get<string>("GUEST_LLM_MODEL") ?? DEFAULT_GUEST_LLM_MODEL;
|
||||||
@@ -103,7 +100,7 @@ export class ChatProxyService {
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (llmApiKey) {
|
if (llmApiKey) {
|
||||||
headers["Authorization"] = `Bearer ${llmApiKey}`;
|
headers.Authorization = `Bearer ${llmApiKey}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
const requestInit: RequestInit = {
|
const requestInit: RequestInit = {
|
||||||
|
|||||||
Reference in New Issue
Block a user