Skip to content

Commit 3721a0d

Browse files
committed
Add LiteLLM Wrapper support (AST-113982)
1 parent 8d872a4 commit 3721a0d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ func CallAIandPrintResponse(aiServer, model, systemPrompt, userPrompt string, ch
121121

122122
// Create proper metadata for the request
123123
metaData := &message.MetaData{
124-
RequestID: "example-request-" + chatId.String(),
124+
RequestID: chatId.String(),
125125
TenantID: "default-tenant",
126126
UserAgent: "gen-ai-wrapper-example",
127127
Feature: "chat-completion",

internal/gpt.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package internal
33
import (
44
"errors"
55
"fmt"
6-
"net/url"
76

87
"github.com/Checkmarx/gen-ai-wrapper/pkg/message"
98
"github.com/Checkmarx/gen-ai-wrapper/pkg/role"

0 commit comments

Comments
 (0)