Skip to content

Commit e314293

Browse files
authored
Fix (#2846)
1 parent 6283156 commit e314293

File tree

1 file changed

+0
-5
lines changed
  • apps/chatbot-server/packages/server/src

1 file changed

+0
-5
lines changed

apps/chatbot-server/packages/server/src/index.ts

-5
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,13 @@ const {
3232
// Create the OpenAI client
3333
// for interacting with the OpenAI API (ChatGPT API and Embedding API)
3434
const openAiClient = new OpenAI({ apiKey: OPENAI_API_KEY });
35-
// const openAiClient = new OpenAI({
36-
// baseURL: "https://api.braintrust.dev/v1/proxy",
37-
// apiKey: "sk-TML74DZxKZRCSWBjpYku134xXzYRSx08LZQ0qz0LPIylC5hK",
38-
// });
3935

4036
// Chatbot LLM for responding to the user's query.
4137
const llm = makeOpenAiChatLlm({
4238
openAiClient,
4339
deployment: OPENAI_CHAT_COMPLETION_MODEL,
4440
openAiLmmConfigOptions: {
4541
temperature: 0.5,
46-
// max_tokens: 500,
4742
},
4843
});
4944

0 commit comments

Comments
 (0)