corvic-engine 0.3.0rc58__cp38-abi3-win_amd64.whl → 0.3.0rc59__cp38-abi3-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. corvic/engine/_native.pyd +0 -0
  2. corvic/model/_completion_model.py +10 -4
  3. corvic/model/_proto_orm_convert.py +4 -2
  4. corvic/orm/__init__.py +5 -1
  5. {corvic_engine-0.3.0rc58.dist-info → corvic_engine-0.3.0rc59.dist-info}/METADATA +1 -1
  6. {corvic_engine-0.3.0rc58.dist-info → corvic_engine-0.3.0rc59.dist-info}/RECORD +20 -38
  7. corvic_generated/feature/v2/feature_view_pb2.py +39 -47
  8. corvic_generated/feature/v2/feature_view_pb2.pyi +0 -14
  9. corvic_generated/feature/v2/space_pb2.py +77 -87
  10. corvic_generated/ingest/v2/pipeline_pb2.py +33 -27
  11. corvic_generated/ingest/v2/quick_mode_pb2.py +18 -13
  12. corvic_generated/ingest/v2/quick_mode_pb2.pyi +1 -0
  13. corvic_generated/ingest/v2/resource_pb2.py +64 -58
  14. corvic_generated/ingest/v2/room_pb2.py +32 -32
  15. corvic_generated/ingest/v2/source_pb2.py +43 -43
  16. corvic_generated/ingest/v2/table_pb2.py +23 -23
  17. corvic_generated/model/v1alpha/models_pb2.py +2 -2
  18. corvic_generated/model/v1alpha/models_pb2.pyi +4 -4
  19. corvic_generated/chat/__init__.py +0 -0
  20. corvic_generated/chat/v1/__init__.py +0 -0
  21. corvic_generated/chat/v1/service_pb2.py +0 -65
  22. corvic_generated/chat/v1/service_pb2.pyi +0 -132
  23. corvic_generated/chat/v1/service_pb2_grpc.py +0 -198
  24. corvic_generated/chat/v1/service_pb2_grpc.pyi +0 -97
  25. corvic_generated/completion/__init__.py +0 -0
  26. corvic_generated/completion/v1/__init__.py +0 -0
  27. corvic_generated/completion/v1/service_pb2.py +0 -69
  28. corvic_generated/completion/v1/service_pb2.pyi +0 -201
  29. corvic_generated/completion/v1/service_pb2_grpc.py +0 -198
  30. corvic_generated/completion/v1/service_pb2_grpc.pyi +0 -97
  31. corvic_generated/query/__init__.py +0 -0
  32. corvic_generated/query/v1/__init__.py +0 -0
  33. corvic_generated/query/v1/query_pb2.py +0 -36
  34. corvic_generated/query/v1/query_pb2.pyi +0 -63
  35. corvic_generated/query/v1/query_pb2_grpc.py +0 -66
  36. corvic_generated/query/v1/query_pb2_grpc.pyi +0 -41
  37. {corvic_engine-0.3.0rc58.dist-info → corvic_engine-0.3.0rc59.dist-info}/WHEEL +0 -0
  38. {corvic_engine-0.3.0rc58.dist-info → corvic_engine-0.3.0rc59.dist-info}/licenses/LICENSE +0 -0
@@ -1,41 +0,0 @@
1
- """
2
- @generated by mypy-protobuf. Do not edit manually!
3
- isort:skip_file
4
- """
5
- import abc
6
- import collections.abc
7
- import corvic_generated.query.v1.query_pb2
8
- import grpc
9
- import grpc.aio
10
- import typing
11
-
12
- _T = typing.TypeVar('_T')
13
-
14
- class _MaybeAsyncIterator(collections.abc.AsyncIterator[_T], collections.abc.Iterator[_T], metaclass=abc.ABCMeta):
15
- ...
16
-
17
- class _ServicerContext(grpc.ServicerContext, grpc.aio.ServicerContext): # type: ignore
18
- ...
19
-
20
- class QueryServiceStub:
21
- def __init__(self, channel: typing.Union[grpc.Channel, grpc.aio.Channel]) -> None: ...
22
- Query: grpc.UnaryStreamMultiCallable[
23
- corvic_generated.query.v1.query_pb2.QueryRequest,
24
- corvic_generated.query.v1.query_pb2.QueryResponse,
25
- ]
26
-
27
- class QueryServiceAsyncStub:
28
- Query: grpc.aio.UnaryStreamMultiCallable[
29
- corvic_generated.query.v1.query_pb2.QueryRequest,
30
- corvic_generated.query.v1.query_pb2.QueryResponse,
31
- ]
32
-
33
- class QueryServiceServicer(metaclass=abc.ABCMeta):
34
- @abc.abstractmethod
35
- def Query(
36
- self,
37
- request: corvic_generated.query.v1.query_pb2.QueryRequest,
38
- context: _ServicerContext,
39
- ) -> typing.Union[collections.abc.Iterator[corvic_generated.query.v1.query_pb2.QueryResponse], collections.abc.AsyncIterator[corvic_generated.query.v1.query_pb2.QueryResponse]]: ...
40
-
41
- def add_QueryServiceServicer_to_server(servicer: QueryServiceServicer, server: typing.Union[grpc.Server, grpc.aio.Server]) -> None: ...