Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds VLLM_EXTRACTION to usage protos #2802

Merged
merged 2 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions nucliadb_protos/kb_usage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ enum PredictType {
DA_QA = 13;
DA_GUARD = 14;
REMI = 15;
VLLM_EXTRACTION = 17;
}

enum ClientType {
Expand Down
8 changes: 4 additions & 4 deletions nucliadb_protos/python/src/nucliadb_protos/kb_usage_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions nucliadb_protos/python/src/nucliadb_protos/kb_usage_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ class _PredictTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._En
DA_QA: _PredictType.ValueType # 13
DA_GUARD: _PredictType.ValueType # 14
REMI: _PredictType.ValueType # 15
VLLM_EXTRACTION: _PredictType.ValueType # 17

class PredictType(_PredictType, metaclass=_PredictTypeEnumTypeWrapper): ...

Expand All @@ -112,6 +113,7 @@ DA_ASK: PredictType.ValueType # 12
DA_QA: PredictType.ValueType # 13
DA_GUARD: PredictType.ValueType # 14
REMI: PredictType.ValueType # 15
VLLM_EXTRACTION: PredictType.ValueType # 17
global___PredictType = PredictType

class _ClientType:
Expand Down
Loading