Commit
·
8690dbe
1
Parent(s):
ba71442
- runners/service.py +3 -3
runners/service.py
CHANGED
|
@@ -2,9 +2,9 @@ import asyncio
|
|
| 2 |
from typing import Dict, Optional
|
| 3 |
from collections import defaultdict
|
| 4 |
|
| 5 |
-
from
|
| 6 |
-
from
|
| 7 |
-
from
|
| 8 |
|
| 9 |
class LLMService:
|
| 10 |
def __init__(self, publisher: RabbitRepo, runner_factory):
|
|
|
|
| 2 |
from typing import Dict, Optional
|
| 3 |
from collections import defaultdict
|
| 4 |
|
| 5 |
+
from rabbit_repo import RabbitRepo
|
| 6 |
+
from config import settings
|
| 7 |
+
from runners.base import ILLMRunner
|
| 8 |
|
| 9 |
class LLMService:
|
| 10 |
def __init__(self, publisher: RabbitRepo, runner_factory):
|