Skip to content

Commit

Permalink
updating api endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
pglez82 committed Feb 7, 2025
1 parent 6e056d6 commit 54babf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llmservice/llm-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ const llmConfigs = {
transformResponse: (response) => response.data.candidates[0]?.content?.parts[0]?.text
},
empathy: {
url: () => 'https://empathyai.staging.empathy.co/v1/chat/completions',
url: () => 'https://empathyai.prod.empathy.co/v1/chat/completions',
transformRequest: (question) => ({
model: "qwen/Qwen2.5-Coder-7B-Instruct",
model: "mistralai/Mistral-7B-Instruct-v0.3",
messages: [
{ role: "system", content: "You are a helpful assistant." },
{ role: "user", content: question }
Expand Down

0 comments on commit 54babf4

Please sign in to comment.