mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 03:34:10 +00:00
11 lines
228 B
Python
11 lines
228 B
Python
from typing import List
|
|
|
|
class OpenrouterConfig():
|
|
"""
|
|
Reference: https://openrouter.ai/docs#format
|
|
|
|
"""
|
|
# OpenRouter-only parameters
|
|
transforms: List[str] = []
|
|
models: List[str] = []
|
|
route: str = ''
|