Explorar el Código

Refa: reduce default value of MAX_CONCURRENT_CHATS (#5821)

### What problem does this PR solve?

#5786

### Type of change

- [x] Refactoring
tags/v0.17.1
Kevin Hu hace 7 meses
padre
commit
1919780880
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      graphrag/utils.py

+ 1
- 1
graphrag/utils.py Ver fichero

@@ -30,7 +30,7 @@ from rag.utils.redis_conn import REDIS_CONN

ErrorHandlerFn = Callable[[BaseException | None, str | None, dict | None], None]

chat_limiter = trio.CapacityLimiter(int(os.environ.get('MAX_CONCURRENT_CHATS', 100)))
chat_limiter = trio.CapacityLimiter(int(os.environ.get('MAX_CONCURRENT_CHATS', 10)))

def perform_variable_replacements(
input: str, history: list[dict] | None = None, variables: dict | None = None

Cargando…
Cancelar
Guardar