We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3af7b21 commit 73ccef9Copy full SHA for 73ccef9
llama_cpp/server/app.py
@@ -157,6 +157,10 @@ class Settings(BaseSettings):
157
)
158
# Server Params
159
host: str = Field(default="localhost", description="Listen address")
160
+ limit_concurrency: int = Field(
161
+ default=2,
162
+ description="Number of concurrent processes + 1"
163
+ )
164
port: int = Field(default=8000, description="Listen port")
165
interrupt_requests: bool = Field(
166
default=True,
0 commit comments