Commit a52a56e7 authored by Your Name's avatar Your Name

Fix fake key

parent e654c9f4
......@@ -81,7 +81,7 @@ class LiteLLMBackend:
self.model = model
# Use provided API key, or generate a fake one if not provided
# This allows litellm to proceed without requiring an API key
self.api_key = api_key if api_key else "fake-key-for-local-testing"
self.api_key = api_key if api_key else "sk-fakekey"
self.base_url = base_url or api_base # Use either base_url or api_base
self.context_window = context_window
self.model_manager = model_manager
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment