Skip to content

Commit 0c02fec

Browse files
committed
add api key to initrequest
1 parent 5a0eb89 commit 0c02fec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eval_protocol/types/remote_rollout_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ class InitRequest(BaseModel):
4545
"""Request model for POST /init endpoint."""
4646

4747
model: str
48-
elastic_search_config: Optional[ElasticsearchConfig] = None
4948
messages: Optional[List[Message]] = None
5049
tools: Optional[List[Dict[str, Any]]] = None
5150

@@ -57,6 +56,7 @@ class InitRequest(BaseModel):
5756
"""
5857

5958
metadata: RolloutMetadata
59+
api_key: Optional[str] = None
6060

6161

6262
class StatusResponse(BaseModel):

0 commit comments

Comments
 (0)