Spaces:
Running
Running
File size: 346 Bytes
9f54862 96e57e5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from multi_agent_sdlc.llm.config import MODEL_CONFIG
from multi_agent_sdlc.llm.factory import create_chat_model
from multi_agent_sdlc.tools.coder.registry import CODER_TOOLS
base_coder_model = create_chat_model(
MODEL_CONFIG.coder,
)
coder_llm = base_coder_model.bind_tools(CODER_TOOLS, strict=True).with_retry(
stop_after_attempt=3
)
|