forked from phoenix/litellm-mirror
fixing mypy linting errors
This commit is contained in:
parent
223fb81b06
commit
c4e869a15e
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
import threading
|
import threading
|
||||||
from typing import Callable, List, Optional
|
from typing import Callable, List, Optional, Dict
|
||||||
|
|
||||||
input_callback: List[str] = []
|
input_callback: List[str] = []
|
||||||
success_callback: List[str] = []
|
success_callback: List[str] = []
|
||||||
|
@ -23,7 +23,7 @@ vertex_location: Optional[str] = None
|
||||||
togetherai_api_key: Optional[str] = None
|
togetherai_api_key: Optional[str] = None
|
||||||
caching = False
|
caching = False
|
||||||
caching_with_models = False # if you want the caching key to be model + prompt
|
caching_with_models = False # if you want the caching key to be model + prompt
|
||||||
model_alias_map = {}
|
model_alias_map: Dict[str, str] = {}
|
||||||
debugger = False
|
debugger = False
|
||||||
model_cost = {
|
model_cost = {
|
||||||
"babbage-002": {
|
"babbage-002": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue