forked from phoenix/litellm-mirror
(test) proxy - pass metadata to openai client
This commit is contained in:
parent
8b29f9a48b
commit
694956b44e
1 changed files with 16 additions and 5 deletions
|
@ -5,11 +5,22 @@
|
|||
# )
|
||||
|
||||
# # request sent to model set on litellm proxy, `litellm --model`
|
||||
# response = client.chat.completions.create(model="gpt-3.5-turbo", messages = [
|
||||
# {
|
||||
# "role": "user",
|
||||
# "content": "this is a test request, write a short poem"
|
||||
# response = client.chat.completions.create(
|
||||
# model="azure/chatgpt-v-2",
|
||||
# messages = [
|
||||
# {
|
||||
# "role": "user",
|
||||
# "content": "this is a test request, write a short poem"
|
||||
# }
|
||||
# ],
|
||||
# extra_body={
|
||||
# "metadata": {
|
||||
# "generation_name": "ishaan-generation-openai-client",
|
||||
# "generation_id": "openai-client-gen-id22",
|
||||
# "trace_id": "openai-client-trace-id22",
|
||||
# "trace_user_id": "openai-client-user-id2"
|
||||
# }
|
||||
# }
|
||||
# ])
|
||||
# )
|
||||
|
||||
# print(response)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue