forked from agent0ai/agent-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.py
More file actions
586 lines (484 loc) · 20.3 KB
/
models.py
File metadata and controls
586 lines (484 loc) · 20.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
from dataclasses import dataclass, field
from enum import Enum
import logging
import os
from typing import (
Any,
Awaitable,
Callable,
List,
Optional,
Iterator,
AsyncIterator,
Tuple,
TypedDict,
)
from litellm import completion, acompletion, embedding
import litellm
from python.helpers import dotenv
from python.helpers.dotenv import load_dotenv
from python.helpers.providers import get_provider_config
from python.helpers.rate_limiter import RateLimiter
from python.helpers.tokens import approximate_tokens
from langchain_core.language_models.chat_models import SimpleChatModel
from langchain_core.outputs.chat_generation import ChatGenerationChunk
from langchain_core.callbacks.manager import (
CallbackManagerForLLMRun,
AsyncCallbackManagerForLLMRun,
)
from langchain_core.messages import (
BaseMessage,
AIMessageChunk,
HumanMessage,
SystemMessage,
)
from langchain.embeddings.base import Embeddings
from sentence_transformers import SentenceTransformer
# disable extra logging, must be done repeatedly, otherwise browser-use will turn it back on for some reason
def turn_off_logging():
os.environ["LITELLM_LOG"] = "ERROR" # only errors
litellm.suppress_debug_info = True
# Silence **all** LiteLLM sub-loggers (utils, cost_calculator…)
for name in logging.Logger.manager.loggerDict:
if name.lower().startswith("litellm"):
logging.getLogger(name).setLevel(logging.ERROR)
# init
load_dotenv()
turn_off_logging()
class ModelType(Enum):
CHAT = "Chat"
EMBEDDING = "Embedding"
@dataclass
class ModelConfig:
type: ModelType
provider: str
name: str
api_base: str = ""
ctx_length: int = 0
limit_requests: int = 0
limit_input: int = 0
limit_output: int = 0
vision: bool = False
kwargs: dict = field(default_factory=dict)
def build_kwargs(self):
kwargs = self.kwargs.copy() or {}
if self.api_base and "api_base" not in kwargs:
kwargs["api_base"] = self.api_base
return kwargs
class ChatChunk(TypedDict):
"""Simplified response chunk for chat models."""
response_delta: str
reasoning_delta: str
rate_limiters: dict[str, RateLimiter] = {}
api_keys_round_robin: dict[str, int] = {}
def get_api_key(service: str) -> str:
# get api key for the service
key = (
dotenv.get_dotenv_value(f"API_KEY_{service.upper()}")
or dotenv.get_dotenv_value(f"{service.upper()}_API_KEY")
or dotenv.get_dotenv_value(f"{service.upper()}_API_TOKEN")
or "None"
)
# if the key contains a comma, use round-robin
if "," in key:
api_keys = [k.strip() for k in key.split(",") if k.strip()]
api_keys_round_robin[service] = api_keys_round_robin.get(service, -1) + 1
key = api_keys[api_keys_round_robin[service] % len(api_keys)]
return key
def get_rate_limiter(
provider: str, name: str, requests: int, input: int, output: int
) -> RateLimiter:
key = f"{provider}\\{name}"
rate_limiters[key] = limiter = rate_limiters.get(key, RateLimiter(seconds=60))
limiter.limits["requests"] = requests or 0
limiter.limits["input"] = input or 0
limiter.limits["output"] = output or 0
return limiter
async def apply_rate_limiter(model_config: ModelConfig|None, input_text: str, rate_limiter_callback: Callable[[str, str, int, int], Awaitable[bool]] | None = None):
if not model_config:
return
limiter = get_rate_limiter(
model_config.provider,
model_config.name,
model_config.limit_requests,
model_config.limit_input,
model_config.limit_output,
)
limiter.add(input=approximate_tokens(input_text))
limiter.add(requests=1)
await limiter.wait(rate_limiter_callback)
return limiter
def apply_rate_limiter_sync(model_config: ModelConfig|None, input_text: str, rate_limiter_callback: Callable[[str, str, int, int], Awaitable[bool]] | None = None):
if not model_config:
return
import asyncio, nest_asyncio
nest_asyncio.apply()
return asyncio.run(apply_rate_limiter(model_config, input_text, rate_limiter_callback))
class LiteLLMChatWrapper(SimpleChatModel):
model_name: str
provider: str
kwargs: dict = {}
class Config:
arbitrary_types_allowed = True
extra = "allow" # Allow extra attributes
validate_assignment = False # Don't validate on assignment
def __init__(self, model: str, provider: str, model_config: Optional[ModelConfig] = None, **kwargs: Any):
model_value = f"{provider}/{model}"
super().__init__(model_name=model_value, provider=provider, kwargs=kwargs) # type: ignore
# Set A0 model config as instance attribute after parent init
self.a0_model_conf = model_config
@property
def _llm_type(self) -> str:
return "litellm-chat"
def _convert_messages(self, messages: List[BaseMessage]) -> List[dict]:
result = []
# Map LangChain message types to LiteLLM roles
role_mapping = {
"human": "user",
"ai": "assistant",
"system": "system",
"tool": "tool",
}
for m in messages:
role = role_mapping.get(m.type, m.type)
message_dict = {"role": role, "content": m.content}
# Handle tool calls for AI messages
tool_calls = getattr(m, "tool_calls", None)
if tool_calls:
# Convert LangChain tool calls to LiteLLM format
new_tool_calls = []
for tool_call in tool_calls:
# Ensure arguments is a JSON string
args = tool_call["args"]
if isinstance(args, dict):
import json
args_str = json.dumps(args)
else:
args_str = str(args)
new_tool_calls.append(
{
"id": tool_call.get("id", ""),
"type": "function",
"function": {
"name": tool_call["name"],
"arguments": args_str,
},
}
)
message_dict["tool_calls"] = new_tool_calls
# Handle tool call ID for ToolMessage
tool_call_id = getattr(m, "tool_call_id", None)
if tool_call_id:
message_dict["tool_call_id"] = tool_call_id
result.append(message_dict)
return result
def _call(
self,
messages: List[BaseMessage],
stop: Optional[List[str]] = None,
run_manager: Optional[CallbackManagerForLLMRun] = None,
**kwargs: Any,
) -> str:
import asyncio
msgs = self._convert_messages(messages)
# Apply rate limiting if configured
apply_rate_limiter_sync(self.a0_model_conf, str(msgs))
# Call the model
resp = completion(
model=self.model_name, messages=msgs, stop=stop, **{**self.kwargs, **kwargs}
)
# Parse output
parsed = _parse_chunk(resp)
return parsed["response_delta"]
def _stream(
self,
messages: List[BaseMessage],
stop: Optional[List[str]] = None,
run_manager: Optional[CallbackManagerForLLMRun] = None,
**kwargs: Any,
) -> Iterator[ChatGenerationChunk]:
import asyncio
msgs = self._convert_messages(messages)
# Apply rate limiting if configured
apply_rate_limiter_sync(self.a0_model_conf, str(msgs))
for chunk in completion(
model=self.model_name,
messages=msgs,
stream=True,
stop=stop,
**{**self.kwargs, **kwargs},
):
parsed = _parse_chunk(chunk)
# Only yield chunks with non-None content
if parsed["response_delta"]:
yield ChatGenerationChunk(
message=AIMessageChunk(content=parsed["response_delta"])
)
async def _astream(
self,
messages: List[BaseMessage],
stop: Optional[List[str]] = None,
run_manager: Optional[AsyncCallbackManagerForLLMRun] = None,
**kwargs: Any,
) -> AsyncIterator[ChatGenerationChunk]:
msgs = self._convert_messages(messages)
# Apply rate limiting if configured
await apply_rate_limiter(self.a0_model_conf, str(msgs))
response = await acompletion(
model=self.model_name,
messages=msgs,
stream=True,
stop=stop,
**{**self.kwargs, **kwargs},
)
async for chunk in response: # type: ignore
parsed = _parse_chunk(chunk)
# Only yield chunks with non-None content
if parsed["response_delta"]:
yield ChatGenerationChunk(
message=AIMessageChunk(content=parsed["response_delta"])
)
async def unified_call(
self,
system_message="",
user_message="",
messages: List[BaseMessage] | None = None,
response_callback: Callable[[str, str], Awaitable[None]] | None = None,
reasoning_callback: Callable[[str, str], Awaitable[None]] | None = None,
tokens_callback: Callable[[str, int], Awaitable[None]] | None = None,
rate_limiter_callback: Callable[[str, str, int, int], Awaitable[bool]] | None = None,
**kwargs: Any,
) -> Tuple[str, str]:
turn_off_logging()
if not messages:
messages = []
# construct messages
if system_message:
messages.insert(0, SystemMessage(content=system_message))
if user_message:
messages.append(HumanMessage(content=user_message))
# convert to litellm format
msgs_conv = self._convert_messages(messages)
# Apply rate limiting if configured
limiter = await apply_rate_limiter(self.a0_model_conf, str(msgs_conv), rate_limiter_callback)
# call model
_completion = await acompletion(
model=self.model_name,
messages=msgs_conv,
stream=True,
**{**self.kwargs, **kwargs},
)
# results
reasoning = ""
response = ""
# iterate over chunks
async for chunk in _completion: # type: ignore
parsed = _parse_chunk(chunk)
# collect reasoning delta and call callbacks
if parsed["reasoning_delta"]:
reasoning += parsed["reasoning_delta"]
if reasoning_callback:
await reasoning_callback(parsed["reasoning_delta"], reasoning)
if tokens_callback:
await tokens_callback(
parsed["reasoning_delta"],
approximate_tokens(parsed["reasoning_delta"]),
)
# Add output tokens to rate limiter if configured
if limiter:
limiter.add(output=approximate_tokens(parsed["reasoning_delta"]))
# collect response delta and call callbacks
if parsed["response_delta"]:
response += parsed["response_delta"]
if response_callback:
await response_callback(parsed["response_delta"], response)
if tokens_callback:
await tokens_callback(
parsed["response_delta"],
approximate_tokens(parsed["response_delta"]),
)
# Add output tokens to rate limiter if configured
if limiter:
limiter.add(output=approximate_tokens(parsed["response_delta"]))
# return complete results
return response, reasoning
class BrowserCompatibleChatWrapper(LiteLLMChatWrapper):
"""
A wrapper for browser agent that can filter/sanitize messages
before sending them to the LLM.
"""
def __init__(self, *args, **kwargs):
turn_off_logging()
super().__init__(*args, **kwargs)
# Browser-use may expect a 'model' attribute
self.model = self.model_name
def _call(
self,
messages: List[BaseMessage],
stop: Optional[List[str]] = None,
run_manager: Optional[CallbackManagerForLLMRun] = None,
**kwargs: Any,
) -> str:
turn_off_logging()
result = super()._call(messages, stop, run_manager, **kwargs)
return result
async def _astream(
self,
messages: List[BaseMessage],
stop: Optional[List[str]] = None,
run_manager: Optional[AsyncCallbackManagerForLLMRun] = None,
**kwargs: Any,
) -> AsyncIterator[ChatGenerationChunk]:
turn_off_logging()
async for chunk in super()._astream(messages, stop, run_manager, **kwargs):
yield chunk
class LiteLLMEmbeddingWrapper(Embeddings):
model_name: str
kwargs: dict = {}
a0_model_conf: Optional[ModelConfig] = None
def __init__(self, model: str, provider: str, model_config: Optional[ModelConfig] = None, **kwargs: Any):
self.model_name = f"{provider}/{model}" if provider != "openai" else model
self.kwargs = kwargs
self.a0_model_conf = model_config
def embed_documents(self, texts: List[str]) -> List[List[float]]:
# Apply rate limiting if configured
apply_rate_limiter_sync(self.a0_model_conf, " ".join(texts))
resp = embedding(model=self.model_name, input=texts, **self.kwargs)
return [
item.get("embedding") if isinstance(item, dict) else item.embedding # type: ignore
for item in resp.data # type: ignore
]
def embed_query(self, text: str) -> List[float]:
# Apply rate limiting if configured
apply_rate_limiter_sync(self.a0_model_conf, text)
resp = embedding(model=self.model_name, input=[text], **self.kwargs)
item = resp.data[0] # type: ignore
return item.get("embedding") if isinstance(item, dict) else item.embedding # type: ignore
class LocalSentenceTransformerWrapper(Embeddings):
"""Local wrapper for sentence-transformers models to avoid HuggingFace API calls"""
def __init__(self, provider: str, model: str, model_config: Optional[ModelConfig] = None, **kwargs: Any):
# Clean common user-input mistakes
model = model.strip().strip('"').strip("'")
# Remove the "sentence-transformers/" prefix if present
if model.startswith("sentence-transformers/"):
model = model[len("sentence-transformers/") :]
self.model = SentenceTransformer(model, **kwargs)
self.model_name = model
self.a0_model_conf = model_config
def embed_documents(self, texts: List[str]) -> List[List[float]]:
# Apply rate limiting if configured
apply_rate_limiter_sync(self.a0_model_conf, " ".join(texts))
embeddings = self.model.encode(texts, convert_to_tensor=False) # type: ignore
return embeddings.tolist() if hasattr(embeddings, "tolist") else embeddings # type: ignore
def embed_query(self, text: str) -> List[float]:
# Apply rate limiting if configured
apply_rate_limiter_sync(self.a0_model_conf, text)
embedding = self.model.encode([text], convert_to_tensor=False) # type: ignore
result = (
embedding[0].tolist() if hasattr(embedding[0], "tolist") else embedding[0]
)
return result # type: ignore
def _get_litellm_chat(
cls: type = LiteLLMChatWrapper,
model_name: str = "",
provider_name: str = "",
model_config: Optional[ModelConfig] = None,
**kwargs: Any,
):
# use api key from kwargs or env
api_key = kwargs.pop("api_key", None) or get_api_key(provider_name)
# Only pass API key if key is not a placeholder
if api_key and api_key not in ("None", "NA"):
kwargs["api_key"] = api_key
provider_name, model_name, kwargs = _adjust_call_args(
provider_name, model_name, kwargs
)
return cls(provider=provider_name, model=model_name, model_config=model_config, **kwargs)
def _get_litellm_embedding(model_name: str, provider_name: str, model_config: Optional[ModelConfig] = None, **kwargs: Any):
# Check if this is a local sentence-transformers model
if provider_name == "huggingface" and model_name.startswith(
"sentence-transformers/"
):
# Use local sentence-transformers instead of LiteLLM for local models
provider_name, model_name, kwargs = _adjust_call_args(
provider_name, model_name, kwargs
)
return LocalSentenceTransformerWrapper(
provider=provider_name, model=model_name, model_config=model_config, **kwargs
)
# use api key from kwargs or env
api_key = kwargs.pop("api_key", None) or get_api_key(provider_name)
# Only pass API key if key is not a placeholder
if api_key and api_key not in ("None", "NA"):
kwargs["api_key"] = api_key
provider_name, model_name, kwargs = _adjust_call_args(
provider_name, model_name, kwargs
)
return LiteLLMEmbeddingWrapper(model=model_name, provider=provider_name, model_config=model_config, **kwargs)
def _parse_chunk(chunk: Any) -> ChatChunk:
delta = chunk["choices"][0].get("delta", {})
message = chunk["choices"][0].get("message", {}) or chunk["choices"][0].get(
"model_extra", {}
).get("message", {})
response_delta = (
delta.get("content", "")
if isinstance(delta, dict)
else getattr(delta, "content", "")
) or (
message.get("content", "")
if isinstance(message, dict)
else getattr(message, "content", "")
)
reasoning_delta = (
delta.get("reasoning_content", "")
if isinstance(delta, dict)
else getattr(delta, "reasoning_content", "")
)
return ChatChunk(reasoning_delta=reasoning_delta, response_delta=response_delta)
def _adjust_call_args(provider_name: str, model_name: str, kwargs: dict):
# for openrouter add app reference
if provider_name == "openrouter":
kwargs["extra_headers"] = {
"HTTP-Referer": "https://agent-zero.ai",
"X-Title": "Agent Zero",
}
# remap other to openai for litellm
if provider_name == "other":
provider_name = "openai"
return provider_name, model_name, kwargs
def _merge_provider_defaults(
provider_type: str, original_provider: str, kwargs: dict
) -> tuple[str, dict]:
provider_name = original_provider # default: unchanged
cfg = get_provider_config(provider_type, original_provider)
if cfg:
provider_name = cfg.get("litellm_provider", original_provider).lower()
# Extra arguments nested under `kwargs` for readability
extra_kwargs = cfg.get("kwargs") if isinstance(cfg, dict) else None # type: ignore[arg-type]
if isinstance(extra_kwargs, dict):
for k, v in extra_kwargs.items():
kwargs.setdefault(k, v)
# Inject API key based on the *original* provider id if still missing
if "api_key" not in kwargs:
key = get_api_key(original_provider)
if key and key not in ("None", "NA"):
kwargs["api_key"] = key
return provider_name, kwargs
def get_chat_model(provider: str, name: str, model_config: Optional[ModelConfig] = None, **kwargs: Any) -> LiteLLMChatWrapper:
orig = provider.lower()
provider_name, kwargs = _merge_provider_defaults("chat", orig, kwargs)
return _get_litellm_chat(LiteLLMChatWrapper, name, provider_name, model_config, **kwargs)
def get_browser_model(
provider: str, name: str, model_config: Optional[ModelConfig] = None, **kwargs: Any
) -> BrowserCompatibleChatWrapper:
orig = provider.lower()
provider_name, kwargs = _merge_provider_defaults("chat", orig, kwargs)
return _get_litellm_chat(
BrowserCompatibleChatWrapper, name, provider_name, model_config, **kwargs
)
def get_embedding_model(
provider: str, name: str, model_config: Optional[ModelConfig] = None, **kwargs: Any
) -> LiteLLMEmbeddingWrapper | LocalSentenceTransformerWrapper:
orig = provider.lower()
provider_name, kwargs = _merge_provider_defaults("embedding", orig, kwargs)
return _get_litellm_embedding(name, provider_name, model_config, **kwargs)