We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6283156 commit e314293Copy full SHA for e314293
apps/chatbot-server/packages/server/src/index.ts
@@ -32,18 +32,13 @@ const {
32
// Create the OpenAI client
33
// for interacting with the OpenAI API (ChatGPT API and Embedding API)
34
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
-// });
39
40
// Chatbot LLM for responding to the user's query.
41
const llm = makeOpenAiChatLlm({
42
openAiClient,
43
deployment: OPENAI_CHAT_COMPLETION_MODEL,
44
openAiLmmConfigOptions: {
45
temperature: 0.5,
46
- // max_tokens: 500,
47
},
48
});
49
0 commit comments