Skip to content

Commit

Permalink
fix: fix Unsupport authentication type error for Ollama (#2018)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahwooders authored Nov 9, 2024
1 parent 85e5fe3 commit 1166db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion letta/local_llm/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def post_json_auth_request(uri, json_payload, auth_type, auth_key):
"""Send a POST request with a JSON payload and optional authentication"""

# By default most local LLM inference servers do not have authorization enabled
if auth_type is None:
if auth_type is None or auth_type == "":
response = requests.post(uri, json=json_payload)

# Used by OpenAI, together.ai, Mistral AI
Expand Down

0 comments on commit 1166db1

Please sign in to comment.