mirror of
https://github.com/open-webui/open-webui
synced 2024-11-17 22:12:51 +00:00
Merge pull request #3217 from theasp/better-body-logging
chore: Log API request bodies at debug level
This commit is contained in:
commit
c8418da8c1
@ -850,8 +850,7 @@ async def generate_chat_completion(
|
|||||||
|
|
||||||
url = app.state.config.OLLAMA_BASE_URLS[url_idx]
|
url = app.state.config.OLLAMA_BASE_URLS[url_idx]
|
||||||
log.info(f"url: {url}")
|
log.info(f"url: {url}")
|
||||||
|
log.debug(payload)
|
||||||
print(payload)
|
|
||||||
|
|
||||||
return await post_streaming_url(f"{url}/api/chat", json.dumps(payload))
|
return await post_streaming_url(f"{url}/api/chat", json.dumps(payload))
|
||||||
|
|
||||||
|
@ -430,13 +430,11 @@ async def generate_chat_completion(
|
|||||||
# Convert the modified body back to JSON
|
# Convert the modified body back to JSON
|
||||||
payload = json.dumps(payload)
|
payload = json.dumps(payload)
|
||||||
|
|
||||||
print(payload)
|
log.debug(payload)
|
||||||
|
|
||||||
url = app.state.config.OPENAI_API_BASE_URLS[idx]
|
url = app.state.config.OPENAI_API_BASE_URLS[idx]
|
||||||
key = app.state.config.OPENAI_API_KEYS[idx]
|
key = app.state.config.OPENAI_API_KEYS[idx]
|
||||||
|
|
||||||
print(payload)
|
|
||||||
|
|
||||||
headers = {}
|
headers = {}
|
||||||
headers["Authorization"] = f"Bearer {key}"
|
headers["Authorization"] = f"Bearer {key}"
|
||||||
headers["Content-Type"] = "application/json"
|
headers["Content-Type"] = "application/json"
|
||||||
|
@ -776,7 +776,7 @@ async def generate_title(form_data: dict, user=Depends(get_verified_user)):
|
|||||||
"title": True,
|
"title": True,
|
||||||
}
|
}
|
||||||
|
|
||||||
print(payload)
|
log.debug(payload)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
payload = filter_pipeline(payload, user)
|
payload = filter_pipeline(payload, user)
|
||||||
@ -905,7 +905,7 @@ Message: """{{prompt}}"""
|
|||||||
"task": True,
|
"task": True,
|
||||||
}
|
}
|
||||||
|
|
||||||
print(payload)
|
log.debug(payload)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
payload = filter_pipeline(payload, user)
|
payload = filter_pipeline(payload, user)
|
||||||
|
Loading…
Reference in New Issue
Block a user