luminarycloud 0.15.5__py3-none-any.whl → 0.16.0__py3-none-any.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 (52) hide show
  1. luminarycloud/_helpers/__init__.py +1 -0
  2. luminarycloud/_helpers/_code_representation.py +18 -3
  3. luminarycloud/_helpers/download.py +67 -1
  4. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +9 -9
  5. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +7 -4
  6. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +45 -21
  7. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +65 -0
  8. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +34 -0
  9. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +12 -0
  10. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +194 -7
  11. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +403 -1
  12. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.py +171 -0
  13. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.pyi +64 -0
  14. luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2.py +4 -2
  15. luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.py +34 -0
  16. luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.pyi +12 -0
  17. luminarycloud/_proto/assistant/assistant_pb2.py +82 -61
  18. luminarycloud/_proto/assistant/assistant_pb2.pyi +40 -0
  19. luminarycloud/_proto/assistant/assistant_pb2_grpc.py +34 -0
  20. luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi +12 -0
  21. luminarycloud/_proto/base/base_pb2.py +7 -6
  22. luminarycloud/_proto/base/base_pb2.pyi +4 -0
  23. luminarycloud/_proto/client/simulation_pb2.py +188 -186
  24. luminarycloud/_proto/client/simulation_pb2.pyi +10 -2
  25. luminarycloud/_proto/geometry/geometry_pb2.py +62 -62
  26. luminarycloud/_proto/geometry/geometry_pb2.pyi +5 -1
  27. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +11 -11
  28. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +12 -4
  29. luminarycloud/_proto/quantity/quantity_pb2.py +11 -2
  30. luminarycloud/_proto/quantity/quantity_pb2.pyi +6 -0
  31. luminarycloud/_proto/table/table_pb2.pyi +4 -2
  32. luminarycloud/_proto/upload/upload_pb2.py +27 -7
  33. luminarycloud/_proto/upload/upload_pb2.pyi +31 -0
  34. luminarycloud/enum/quantity_type.py +15 -0
  35. luminarycloud/mesh.py +8 -1
  36. luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/__init__.py +1 -0
  37. luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_auto_.py +30 -0
  38. luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_on_.py +1 -1
  39. luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation_.py +6 -2
  40. luminarycloud/params/simulation/physics/fluid/solution_controls_fluid_.py +4 -0
  41. luminarycloud/physics_ai/__init__.py +4 -0
  42. luminarycloud/physics_ai/inference.py +140 -4
  43. luminarycloud/physics_ai/solution.py +60 -0
  44. luminarycloud/tables.py +6 -8
  45. luminarycloud/vis/data_extraction.py +4 -5
  46. luminarycloud/vis/display.py +26 -11
  47. luminarycloud/vis/filters.py +98 -65
  48. luminarycloud/vis/primitives.py +3 -2
  49. luminarycloud/vis/visualization.py +197 -40
  50. {luminarycloud-0.15.5.dist-info → luminarycloud-0.16.0.dist-info}/METADATA +1 -1
  51. {luminarycloud-0.15.5.dist-info → luminarycloud-0.16.0.dist-info}/RECORD +52 -50
  52. {luminarycloud-0.15.5.dist-info → luminarycloud-0.16.0.dist-info}/WHEEL +0 -0
@@ -479,6 +479,8 @@ class _DensityRelationshipEnumTypeWrapper(google.protobuf.internal.enum_type_wra
479
479
  INVALID_DENSITY_RELATIONSHIP: _DensityRelationship.ValueType # 0
480
480
  IDEAL_GAS: _DensityRelationship.ValueType # 37484
481
481
  """Compute density using the ideal gas law."""
482
+ REAL_GAS: _DensityRelationship.ValueType # 8165
483
+ """Compute density and other thermodynamic properties using lookup tables."""
482
484
  CONSTANT_DENSITY: _DensityRelationship.ValueType # 28817
483
485
  """Constant density fluid (heat transfer is not simulated)."""
484
486
  CONSTANT_DENSITY_ENERGY: _DensityRelationship.ValueType # 41777
@@ -489,6 +491,8 @@ class DensityRelationship(_DensityRelationship, metaclass=_DensityRelationshipEn
489
491
  INVALID_DENSITY_RELATIONSHIP: DensityRelationship.ValueType # 0
490
492
  IDEAL_GAS: DensityRelationship.ValueType # 37484
491
493
  """Compute density using the ideal gas law."""
494
+ REAL_GAS: DensityRelationship.ValueType # 8165
495
+ """Compute density and other thermodynamic properties using lookup tables."""
492
496
  CONSTANT_DENSITY: DensityRelationship.ValueType # 28817
493
497
  """Constant density fluid (heat transfer is not simulated)."""
494
498
  CONSTANT_DENSITY_ENERGY: DensityRelationship.ValueType # 41777
@@ -1935,16 +1939,20 @@ class _RobustStartup:
1935
1939
  class _RobustStartupEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_RobustStartup.ValueType], builtins.type): # noqa: F821
1936
1940
  DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
1937
1941
  INVALID_ROBUST_STARTUP: _RobustStartup.ValueType # 0
1942
+ ROBUST_STARTUP_AUTO: _RobustStartup.ValueType # 16678
1943
+ """Enable robust startup mode and automatically determine the settings."""
1938
1944
  ROBUST_STARTUP_ON: _RobustStartup.ValueType # 32536
1939
- """Enable robust startup mode."""
1945
+ """Enable robust startup mode and manually specify the settings."""
1940
1946
  ROBUST_STARTUP_OFF: _RobustStartup.ValueType # 3695
1941
1947
  """Disable robust startup mode."""
1942
1948
 
1943
1949
  class RobustStartup(_RobustStartup, metaclass=_RobustStartupEnumTypeWrapper): ...
1944
1950
 
1945
1951
  INVALID_ROBUST_STARTUP: RobustStartup.ValueType # 0
1952
+ ROBUST_STARTUP_AUTO: RobustStartup.ValueType # 16678
1953
+ """Enable robust startup mode and automatically determine the settings."""
1946
1954
  ROBUST_STARTUP_ON: RobustStartup.ValueType # 32536
1947
- """Enable robust startup mode."""
1955
+ """Enable robust startup mode and manually specify the settings."""
1948
1956
  ROBUST_STARTUP_OFF: RobustStartup.ValueType # 3695
1949
1957
  """Disable robust startup mode."""
1950
1958
  global___RobustStartup = RobustStartup
@@ -21,7 +21,7 @@ from luminarycloud._proto.parametricworker import parametricworker_pb2 as proto_
21
21
  from luminarycloud._proto.lcstatus import lcstatus_pb2 as proto_dot_lcstatus_dot_lcstatus__pb2
22
22
 
23
23
 
24
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dproto/geometry/geometry.proto\x12\x17luminary.proto.geometry\x1a\x15proto/base/base.proto\x1a\x17proto/cad/boolean.proto\x1a\x15proto/cad/shape.proto\x1a\x1eproto/cad/transformation.proto\x1a-proto/parametricworker/parametricworker.proto\x1a\x1dproto/lcstatus/lcstatus.proto\"\x87\x01\n\x06Import\x12\x14\n\x0cgeometry_url\x18\x01 \x01(\t\x12\x0f\n\x07scaling\x18\x02 \x01(\x01\x12\x16\n\x0e\x66orce_discrete\x18\x03 \x01(\x08\x12>\n\nparameters\x18\x04 \x03(\x0b\x32*.luminary.proto.parametricworker.Parameter\"\xc0\x02\n\x06\x43reate\x12,\n\x06sphere\x18\x01 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\'\n\x03\x62ox\x18\x02 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x30\n\x08\x63ylinder\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12*\n\x05torus\x18\x04 \x01(\x0b\x32\x19.luminary.proto.cad.TorusH\x00\x12(\n\x04\x63one\x18\x05 \x01(\x0b\x32\x18.luminary.proto.cad.ConeH\x00\x12\x35\n\x0bhalf_sphere\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.HalfSphereH\x00\x12\x17\n\x0fresult_body_tag\x18\x07 \x01(\tB\x07\n\x05shape\"V\n\x06\x44\x65lete\x12\x31\n\x04type\x18\x01 \x01(\x0e\x32#.luminary.proto.geometry.EntityType\x12\x0b\n\x03ids\x18\x02 \x03(\x04\x12\x0c\n\x04tags\x18\x03 \x03(\t\"\x83\x02\n\x07\x42oolean\x12\x35\n\treg_union\x18\x01 \x01(\x0b\x32 .luminary.proto.cad.RegularUnionH\x00\x12\x41\n\x0freg_subtraction\x18\x02 \x01(\x0b\x32&.luminary.proto.cad.RegularSubtractionH\x00\x12\x43\n\x10reg_intersection\x18\x03 \x01(\x0b\x32\'.luminary.proto.cad.RegularIntersectionH\x00\x12\x33\n\x08reg_chop\x18\x04 \x01(\x0b\x32\x1f.luminary.proto.cad.RegularChopH\x00\x42\x04\n\x02op\"\xa2\x01\n\x07Imprint\x12\x42\n\x08\x62\x65havior\x18\x01 \x01(\x0e\x32\x30.luminary.proto.geometry.Imprint.ImprintBehavior\x12\x0c\n\x04\x62ody\x18\x02 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\"8\n\x0fImprintBehavior\x12\x0f\n\x0bIMPRINT_ALL\x10\x00\x12\x14\n\x10IMPRINT_SELECTED\x10\x01\"\xc0\x02\n\tTransform\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x08 \x03(\t\x12\x35\n\x06matrix\x18\x02 \x01(\x0b\x32#.luminary.proto.cad.AugmentedMatrixH\x00\x12\x36\n\x0btranslation\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12\x30\n\x08rotation\x18\x04 \x01(\x0b\x32\x1c.luminary.proto.cad.RotationH\x00\x12.\n\x07scaling\x18\x05 \x01(\x0b\x32\x1b.luminary.proto.cad.ScalingH\x00\x12\x34\n\nreflection\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.ReflectionH\x00\x12\x0c\n\x04keep\x18\x07 \x01(\x08\x42\x03\n\x01t\"\xcf\x01\n\nShrinkwrap\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x10\n\x08tag_body\x18\x07 \x03(\t\x12\x0c\n\x04tool\x18\x06 \x03(\x04\x12\x10\n\x08tag_tool\x18\x08 \x03(\t\x12\x35\n\x04mode\x18\x02 \x01(\x0e\x32\'.luminary.proto.geometry.ShrinkwrapMode\x12\x16\n\x0eresolution_min\x18\x03 \x01(\x01\x12\x16\n\x0eresolution_max\x18\x04 \x01(\x01\x12\x1a\n\x12resolution_uniform\x18\x05 \x01(\x01\"\xb2\x01\n\x08\x46\x61rfield\x12/\n\x06\x63reate\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.Create\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x04\x12\x12\n\ntag_bodies\x18\x06 \x03(\t\x12\x1a\n\x12keep_source_bodies\x18\x03 \x01(\x08\x12\x18\n\x10keep_tool_bodies\x18\x04 \x01(\x08\x12\x1b\n\x13propagate_tool_tags\x18\x05 \x01(\x08\"\xf9\x02\n\x07Pattern\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\x12=\n\tdirection\x18\x02 \x01(\x0b\x32*.luminary.proto.geometry.Pattern.Direction\x1a\x93\x02\n\tDirection\x12\x10\n\x08quantity\x18\x01 \x01(\r\x12\x11\n\tsymmetric\x18\x02 \x01(\x08\x12\x39\n\x0elinear_spacing\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12T\n\x15\x63ircular_distribution\x18\x04 \x01(\x0b\x32\x33.luminary.proto.geometry.Pattern.Direction.CircularH\x00\x1aH\n\x08\x43ircular\x12.\n\x08rotation\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.cad.Rotation\x12\x0c\n\x04\x66ull\x18\x02 \x01(\x08\x42\x06\n\x04type\"\x8c\x02\n\x0e\x43onfigurations\x12Q\n\rconfiguration\x18\x01 \x03(\x0b\x32:.luminary.proto.geometry.Configurations.ConfigurationEntry\x12\x0e\n\x06\x61\x63tive\x18\x02 \x01(\t\x1a*\n\rConfiguration\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x02 \x03(\t\x1ak\n\x12\x43onfigurationEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x44\n\x05value\x18\x02 \x01(\x0b\x32\x35.luminary.proto.geometry.Configurations.Configuration:\x02\x38\x01\"V\n\rFeatureIssues\x12\x31\n\x06issues\x18\x01 \x03(\x0b\x32!.luminary.proto.lcstatus.LCStatus\x12\x12\n\nfeature_id\x18\x02 \x01(\t\"\xde\x04\n\x07\x46\x65\x61ture\x12\x31\n\x06import\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.ImportH\x00\x12\x31\n\x06\x63reate\x18\x02 \x01(\x0b\x32\x1f.luminary.proto.geometry.CreateH\x00\x12\x31\n\x06\x64\x65lete\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.geometry.DeleteH\x00\x12\x33\n\x07\x62oolean\x18\x04 \x01(\x0b\x32 .luminary.proto.geometry.BooleanH\x00\x12\x33\n\x07imprint\x18\x07 \x01(\x0b\x32 .luminary.proto.geometry.ImprintH\x00\x12\x37\n\ttransform\x18\x0c \x01(\x0b\x32\".luminary.proto.geometry.TransformH\x00\x12\x39\n\nshrinkwrap\x18\r \x01(\x0b\x32#.luminary.proto.geometry.ShrinkwrapH\x00\x12\x35\n\x08\x66\x61rfield\x18\x0e \x01(\x0b\x32!.luminary.proto.geometry.FarfieldH\x00\x12\x33\n\x07pattern\x18\x0f \x01(\x0b\x32 .luminary.proto.geometry.PatternH\x00\x12\x41\n\x0e\x63onfigurations\x18\x10 \x01(\x0b\x32\'.luminary.proto.geometry.ConfigurationsH\x00\x12\n\n\x02id\x18\x05 \x01(\t\x12\x14\n\x0c\x66\x65\x61ture_name\x18\x06 \x01(\tB\x0b\n\toperation\"@\n\x11\x43reateOrUpdateTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"/\n\tRenameTag\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"8\n\tDeleteTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"\x1b\n\nDeleteTags\x12\r\n\x05names\x18\x01 \x03(\t\"\x91\x07\n\x0cModification\x12H\n\x08mod_type\x18\x01 \x01(\x0e\x32\x36.luminary.proto.geometry.Modification.ModificationType\x12\x31\n\x07\x66\x65\x61ture\x18\x02 \x01(\x0b\x32 .luminary.proto.geometry.Feature\x12H\n\x14\x63reate_or_update_tag\x18\x03 \x01(\x0b\x32*.luminary.proto.geometry.CreateOrUpdateTag\x12\x36\n\nrename_tag\x18\x04 \x01(\x0b\x32\".luminary.proto.geometry.RenameTag\x12\x36\n\ndelete_tag\x18\x05 \x01(\x0b\x32\".luminary.proto.geometry.DeleteTag\x12\x38\n\x0b\x64\x65lete_tags\x18\x06 \x01(\x0b\x32#.luminary.proto.geometry.DeleteTags\x12,\n$update_named_variable_set_version_id\x18\x07 \x01(\t\"\xe1\x03\n\x10ModificationType\x12!\n\x1dMODIFICATION_TYPE_UNSPECIFIED\x10\x00\x12$\n MODIFICATION_TYPE_CREATE_FEATURE\x10\x01\x12$\n MODIFICATION_TYPE_UPDATE_FEATURE\x10\x02\x12$\n MODIFICATION_TYPE_DELETE_FEATURE\x10\x03\x12\x1a\n\x16MODIFICATION_TYPE_UNDO\x10\x04\x12\x1a\n\x16MODIFICATION_TYPE_REDO\x10\x05\x12$\n MODIFICATION_TYPE_RENAME_FEATURE\x10\x06\x12 \n\x1cMODIFICATION_TYPE_CREATE_TAG\x10\x07\x12 \n\x1cMODIFICATION_TYPE_UPDATE_TAG\x10\x08\x12 \n\x1cMODIFICATION_TYPE_DELETE_TAG\x10\t\x12 \n\x1cMODIFICATION_TYPE_RENAME_TAG\x10\n\x12!\n\x1dMODIFICATION_TYPE_DELETE_TAGS\x10\x0b\x12/\n+MODIFICATION_TYPE_UPDATE_NAMED_VARIABLE_SET\x10\x0c\"\x85\x01\n\x04\x46\x61\x63\x65\x12\n\n\x02id\x18\x01 \x01(\t\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x11\n\tnative_id\x18\x04 \x01(\x04\"\x82\x01\n\x04\x42ody\x12\n\n\x02id\x18\x01 \x01(\x04\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x0e\n\x06lcn_id\x18\x04 \x01(\x04\"\"\n\x06Volume\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xc2\x01\n\x04Tags\x12/\n\x04tags\x18\x01 \x03(\x0b\x32!.luminary.proto.geometry.Tags.Tag\x1a\x88\x01\n\x03Tag\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06\x62odies\x18\x03 \x03(\x05\x12\x12\n\nlcn_bodies\x18\x04 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x05 \x03(\x05\x12\x17\n\x0f\x62odies_of_faces\x18\x06 \x03(\x05\x12\x1b\n\x13lcn_bodies_of_faces\x18\x07 \x03(\x05*S\n\nEntityType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x08\n\x04\x42ODY\x10\x01\x12\n\n\x06VOLUME\x10\x02\x12\x08\n\x04\x46\x41\x43\x45\x10\x03\x12\x08\n\x04\x45\x44GE\x10\x04\x12\n\n\x06VERTEX\x10\x05*8\n\x0eShrinkwrapMode\x12\r\n\tAUTOMATIC\x10\x00\x12\n\n\x06MINMAX\x10\x01\x12\x0b\n\x07UNIFORM\x10\x02*7\n\nKernelType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0e\n\nCONTINUOUS\x10\x01\x12\x0c\n\x08\x44ISCRETE\x10\x02\x42\'Z%luminarycloud.com/core/proto/geometryb\x06proto3')
24
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dproto/geometry/geometry.proto\x12\x17luminary.proto.geometry\x1a\x15proto/base/base.proto\x1a\x17proto/cad/boolean.proto\x1a\x15proto/cad/shape.proto\x1a\x1eproto/cad/transformation.proto\x1a-proto/parametricworker/parametricworker.proto\x1a\x1dproto/lcstatus/lcstatus.proto\"\xa0\x01\n\x06Import\x12\x14\n\x0cgeometry_url\x18\x01 \x01(\t\x12\x0f\n\x07scaling\x18\x02 \x01(\x01\x12\x16\n\x0e\x66orce_discrete\x18\x03 \x01(\x08\x12>\n\nparameters\x18\x04 \x03(\x0b\x32*.luminary.proto.parametricworker.Parameter\x12\x17\n\x0fweb_geometry_id\x18\x05 \x01(\t\"\xc0\x02\n\x06\x43reate\x12,\n\x06sphere\x18\x01 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\'\n\x03\x62ox\x18\x02 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x30\n\x08\x63ylinder\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12*\n\x05torus\x18\x04 \x01(\x0b\x32\x19.luminary.proto.cad.TorusH\x00\x12(\n\x04\x63one\x18\x05 \x01(\x0b\x32\x18.luminary.proto.cad.ConeH\x00\x12\x35\n\x0bhalf_sphere\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.HalfSphereH\x00\x12\x17\n\x0fresult_body_tag\x18\x07 \x01(\tB\x07\n\x05shape\"V\n\x06\x44\x65lete\x12\x31\n\x04type\x18\x01 \x01(\x0e\x32#.luminary.proto.geometry.EntityType\x12\x0b\n\x03ids\x18\x02 \x03(\x04\x12\x0c\n\x04tags\x18\x03 \x03(\t\"\x83\x02\n\x07\x42oolean\x12\x35\n\treg_union\x18\x01 \x01(\x0b\x32 .luminary.proto.cad.RegularUnionH\x00\x12\x41\n\x0freg_subtraction\x18\x02 \x01(\x0b\x32&.luminary.proto.cad.RegularSubtractionH\x00\x12\x43\n\x10reg_intersection\x18\x03 \x01(\x0b\x32\'.luminary.proto.cad.RegularIntersectionH\x00\x12\x33\n\x08reg_chop\x18\x04 \x01(\x0b\x32\x1f.luminary.proto.cad.RegularChopH\x00\x42\x04\n\x02op\"\xa2\x01\n\x07Imprint\x12\x42\n\x08\x62\x65havior\x18\x01 \x01(\x0e\x32\x30.luminary.proto.geometry.Imprint.ImprintBehavior\x12\x0c\n\x04\x62ody\x18\x02 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\"8\n\x0fImprintBehavior\x12\x0f\n\x0bIMPRINT_ALL\x10\x00\x12\x14\n\x10IMPRINT_SELECTED\x10\x01\"\xc0\x02\n\tTransform\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x08 \x03(\t\x12\x35\n\x06matrix\x18\x02 \x01(\x0b\x32#.luminary.proto.cad.AugmentedMatrixH\x00\x12\x36\n\x0btranslation\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12\x30\n\x08rotation\x18\x04 \x01(\x0b\x32\x1c.luminary.proto.cad.RotationH\x00\x12.\n\x07scaling\x18\x05 \x01(\x0b\x32\x1b.luminary.proto.cad.ScalingH\x00\x12\x34\n\nreflection\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.ReflectionH\x00\x12\x0c\n\x04keep\x18\x07 \x01(\x08\x42\x03\n\x01t\"\xcf\x01\n\nShrinkwrap\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x10\n\x08tag_body\x18\x07 \x03(\t\x12\x0c\n\x04tool\x18\x06 \x03(\x04\x12\x10\n\x08tag_tool\x18\x08 \x03(\t\x12\x35\n\x04mode\x18\x02 \x01(\x0e\x32\'.luminary.proto.geometry.ShrinkwrapMode\x12\x16\n\x0eresolution_min\x18\x03 \x01(\x01\x12\x16\n\x0eresolution_max\x18\x04 \x01(\x01\x12\x1a\n\x12resolution_uniform\x18\x05 \x01(\x01\"\xb2\x01\n\x08\x46\x61rfield\x12/\n\x06\x63reate\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.Create\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x04\x12\x12\n\ntag_bodies\x18\x06 \x03(\t\x12\x1a\n\x12keep_source_bodies\x18\x03 \x01(\x08\x12\x18\n\x10keep_tool_bodies\x18\x04 \x01(\x08\x12\x1b\n\x13propagate_tool_tags\x18\x05 \x01(\x08\"\xf9\x02\n\x07Pattern\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\x12=\n\tdirection\x18\x02 \x01(\x0b\x32*.luminary.proto.geometry.Pattern.Direction\x1a\x93\x02\n\tDirection\x12\x10\n\x08quantity\x18\x01 \x01(\r\x12\x11\n\tsymmetric\x18\x02 \x01(\x08\x12\x39\n\x0elinear_spacing\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12T\n\x15\x63ircular_distribution\x18\x04 \x01(\x0b\x32\x33.luminary.proto.geometry.Pattern.Direction.CircularH\x00\x1aH\n\x08\x43ircular\x12.\n\x08rotation\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.cad.Rotation\x12\x0c\n\x04\x66ull\x18\x02 \x01(\x08\x42\x06\n\x04type\"\x8c\x02\n\x0e\x43onfigurations\x12Q\n\rconfiguration\x18\x01 \x03(\x0b\x32:.luminary.proto.geometry.Configurations.ConfigurationEntry\x12\x0e\n\x06\x61\x63tive\x18\x02 \x01(\t\x1a*\n\rConfiguration\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x02 \x03(\t\x1ak\n\x12\x43onfigurationEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x44\n\x05value\x18\x02 \x01(\x0b\x32\x35.luminary.proto.geometry.Configurations.Configuration:\x02\x38\x01\"V\n\rFeatureIssues\x12\x31\n\x06issues\x18\x01 \x03(\x0b\x32!.luminary.proto.lcstatus.LCStatus\x12\x12\n\nfeature_id\x18\x02 \x01(\t\"\xde\x04\n\x07\x46\x65\x61ture\x12\x31\n\x06import\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.ImportH\x00\x12\x31\n\x06\x63reate\x18\x02 \x01(\x0b\x32\x1f.luminary.proto.geometry.CreateH\x00\x12\x31\n\x06\x64\x65lete\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.geometry.DeleteH\x00\x12\x33\n\x07\x62oolean\x18\x04 \x01(\x0b\x32 .luminary.proto.geometry.BooleanH\x00\x12\x33\n\x07imprint\x18\x07 \x01(\x0b\x32 .luminary.proto.geometry.ImprintH\x00\x12\x37\n\ttransform\x18\x0c \x01(\x0b\x32\".luminary.proto.geometry.TransformH\x00\x12\x39\n\nshrinkwrap\x18\r \x01(\x0b\x32#.luminary.proto.geometry.ShrinkwrapH\x00\x12\x35\n\x08\x66\x61rfield\x18\x0e \x01(\x0b\x32!.luminary.proto.geometry.FarfieldH\x00\x12\x33\n\x07pattern\x18\x0f \x01(\x0b\x32 .luminary.proto.geometry.PatternH\x00\x12\x41\n\x0e\x63onfigurations\x18\x10 \x01(\x0b\x32\'.luminary.proto.geometry.ConfigurationsH\x00\x12\n\n\x02id\x18\x05 \x01(\t\x12\x14\n\x0c\x66\x65\x61ture_name\x18\x06 \x01(\tB\x0b\n\toperation\"@\n\x11\x43reateOrUpdateTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"/\n\tRenameTag\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"8\n\tDeleteTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"\x1b\n\nDeleteTags\x12\r\n\x05names\x18\x01 \x03(\t\"\x91\x07\n\x0cModification\x12H\n\x08mod_type\x18\x01 \x01(\x0e\x32\x36.luminary.proto.geometry.Modification.ModificationType\x12\x31\n\x07\x66\x65\x61ture\x18\x02 \x01(\x0b\x32 .luminary.proto.geometry.Feature\x12H\n\x14\x63reate_or_update_tag\x18\x03 \x01(\x0b\x32*.luminary.proto.geometry.CreateOrUpdateTag\x12\x36\n\nrename_tag\x18\x04 \x01(\x0b\x32\".luminary.proto.geometry.RenameTag\x12\x36\n\ndelete_tag\x18\x05 \x01(\x0b\x32\".luminary.proto.geometry.DeleteTag\x12\x38\n\x0b\x64\x65lete_tags\x18\x06 \x01(\x0b\x32#.luminary.proto.geometry.DeleteTags\x12,\n$update_named_variable_set_version_id\x18\x07 \x01(\t\"\xe1\x03\n\x10ModificationType\x12!\n\x1dMODIFICATION_TYPE_UNSPECIFIED\x10\x00\x12$\n MODIFICATION_TYPE_CREATE_FEATURE\x10\x01\x12$\n MODIFICATION_TYPE_UPDATE_FEATURE\x10\x02\x12$\n MODIFICATION_TYPE_DELETE_FEATURE\x10\x03\x12\x1a\n\x16MODIFICATION_TYPE_UNDO\x10\x04\x12\x1a\n\x16MODIFICATION_TYPE_REDO\x10\x05\x12$\n MODIFICATION_TYPE_RENAME_FEATURE\x10\x06\x12 \n\x1cMODIFICATION_TYPE_CREATE_TAG\x10\x07\x12 \n\x1cMODIFICATION_TYPE_UPDATE_TAG\x10\x08\x12 \n\x1cMODIFICATION_TYPE_DELETE_TAG\x10\t\x12 \n\x1cMODIFICATION_TYPE_RENAME_TAG\x10\n\x12!\n\x1dMODIFICATION_TYPE_DELETE_TAGS\x10\x0b\x12/\n+MODIFICATION_TYPE_UPDATE_NAMED_VARIABLE_SET\x10\x0c\"\x85\x01\n\x04\x46\x61\x63\x65\x12\n\n\x02id\x18\x01 \x01(\t\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x11\n\tnative_id\x18\x04 \x01(\x04\"\x82\x01\n\x04\x42ody\x12\n\n\x02id\x18\x01 \x01(\x04\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x0e\n\x06lcn_id\x18\x04 \x01(\x04\"\"\n\x06Volume\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xc2\x01\n\x04Tags\x12/\n\x04tags\x18\x01 \x03(\x0b\x32!.luminary.proto.geometry.Tags.Tag\x1a\x88\x01\n\x03Tag\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06\x62odies\x18\x03 \x03(\x05\x12\x12\n\nlcn_bodies\x18\x04 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x05 \x03(\x05\x12\x17\n\x0f\x62odies_of_faces\x18\x06 \x03(\x05\x12\x1b\n\x13lcn_bodies_of_faces\x18\x07 \x03(\x05*S\n\nEntityType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x08\n\x04\x42ODY\x10\x01\x12\n\n\x06VOLUME\x10\x02\x12\x08\n\x04\x46\x41\x43\x45\x10\x03\x12\x08\n\x04\x45\x44GE\x10\x04\x12\n\n\x06VERTEX\x10\x05*8\n\x0eShrinkwrapMode\x12\r\n\tAUTOMATIC\x10\x00\x12\n\n\x06MINMAX\x10\x01\x12\x0b\n\x07UNIFORM\x10\x02*7\n\nKernelType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0e\n\nCONTINUOUS\x10\x01\x12\x0c\n\x08\x44ISCRETE\x10\x02\x42\'Z%luminarycloud.com/core/proto/geometryb\x06proto3')
25
25
 
26
26
  _ENTITYTYPE = DESCRIPTOR.enum_types_by_name['EntityType']
27
27
  EntityType = enum_type_wrapper.EnumTypeWrapper(_ENTITYTYPE)
@@ -264,66 +264,66 @@ if _descriptor._USE_C_DESCRIPTORS == False:
264
264
  DESCRIPTOR._serialized_options = b'Z%luminarycloud.com/core/proto/geometry'
265
265
  _CONFIGURATIONS_CONFIGURATIONENTRY._options = None
266
266
  _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_options = b'8\001'
267
- _ENTITYTYPE._serialized_start=4897
268
- _ENTITYTYPE._serialized_end=4980
269
- _SHRINKWRAPMODE._serialized_start=4982
270
- _SHRINKWRAPMODE._serialized_end=5038
271
- _KERNELTYPE._serialized_start=5040
272
- _KERNELTYPE._serialized_end=5095
267
+ _ENTITYTYPE._serialized_start=4922
268
+ _ENTITYTYPE._serialized_end=5005
269
+ _SHRINKWRAPMODE._serialized_start=5007
270
+ _SHRINKWRAPMODE._serialized_end=5063
271
+ _KERNELTYPE._serialized_start=5065
272
+ _KERNELTYPE._serialized_end=5120
273
273
  _IMPORT._serialized_start=240
274
- _IMPORT._serialized_end=375
275
- _CREATE._serialized_start=378
276
- _CREATE._serialized_end=698
277
- _DELETE._serialized_start=700
278
- _DELETE._serialized_end=786
279
- _BOOLEAN._serialized_start=789
280
- _BOOLEAN._serialized_end=1048
281
- _IMPRINT._serialized_start=1051
282
- _IMPRINT._serialized_end=1213
283
- _IMPRINT_IMPRINTBEHAVIOR._serialized_start=1157
284
- _IMPRINT_IMPRINTBEHAVIOR._serialized_end=1213
285
- _TRANSFORM._serialized_start=1216
286
- _TRANSFORM._serialized_end=1536
287
- _SHRINKWRAP._serialized_start=1539
288
- _SHRINKWRAP._serialized_end=1746
289
- _FARFIELD._serialized_start=1749
290
- _FARFIELD._serialized_end=1927
291
- _PATTERN._serialized_start=1930
292
- _PATTERN._serialized_end=2307
293
- _PATTERN_DIRECTION._serialized_start=2032
294
- _PATTERN_DIRECTION._serialized_end=2307
295
- _PATTERN_DIRECTION_CIRCULAR._serialized_start=2227
296
- _PATTERN_DIRECTION_CIRCULAR._serialized_end=2299
297
- _CONFIGURATIONS._serialized_start=2310
298
- _CONFIGURATIONS._serialized_end=2578
299
- _CONFIGURATIONS_CONFIGURATION._serialized_start=2427
300
- _CONFIGURATIONS_CONFIGURATION._serialized_end=2469
301
- _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_start=2471
302
- _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_end=2578
303
- _FEATUREISSUES._serialized_start=2580
304
- _FEATUREISSUES._serialized_end=2666
305
- _FEATURE._serialized_start=2669
306
- _FEATURE._serialized_end=3275
307
- _CREATEORUPDATETAG._serialized_start=3277
308
- _CREATEORUPDATETAG._serialized_end=3341
309
- _RENAMETAG._serialized_start=3343
310
- _RENAMETAG._serialized_end=3390
311
- _DELETETAG._serialized_start=3392
312
- _DELETETAG._serialized_end=3448
313
- _DELETETAGS._serialized_start=3450
314
- _DELETETAGS._serialized_end=3477
315
- _MODIFICATION._serialized_start=3480
316
- _MODIFICATION._serialized_end=4393
317
- _MODIFICATION_MODIFICATIONTYPE._serialized_start=3912
318
- _MODIFICATION_MODIFICATIONTYPE._serialized_end=4393
319
- _FACE._serialized_start=4396
320
- _FACE._serialized_end=4529
321
- _BODY._serialized_start=4532
322
- _BODY._serialized_end=4662
323
- _VOLUME._serialized_start=4664
324
- _VOLUME._serialized_end=4698
325
- _TAGS._serialized_start=4701
326
- _TAGS._serialized_end=4895
327
- _TAGS_TAG._serialized_start=4759
328
- _TAGS_TAG._serialized_end=4895
274
+ _IMPORT._serialized_end=400
275
+ _CREATE._serialized_start=403
276
+ _CREATE._serialized_end=723
277
+ _DELETE._serialized_start=725
278
+ _DELETE._serialized_end=811
279
+ _BOOLEAN._serialized_start=814
280
+ _BOOLEAN._serialized_end=1073
281
+ _IMPRINT._serialized_start=1076
282
+ _IMPRINT._serialized_end=1238
283
+ _IMPRINT_IMPRINTBEHAVIOR._serialized_start=1182
284
+ _IMPRINT_IMPRINTBEHAVIOR._serialized_end=1238
285
+ _TRANSFORM._serialized_start=1241
286
+ _TRANSFORM._serialized_end=1561
287
+ _SHRINKWRAP._serialized_start=1564
288
+ _SHRINKWRAP._serialized_end=1771
289
+ _FARFIELD._serialized_start=1774
290
+ _FARFIELD._serialized_end=1952
291
+ _PATTERN._serialized_start=1955
292
+ _PATTERN._serialized_end=2332
293
+ _PATTERN_DIRECTION._serialized_start=2057
294
+ _PATTERN_DIRECTION._serialized_end=2332
295
+ _PATTERN_DIRECTION_CIRCULAR._serialized_start=2252
296
+ _PATTERN_DIRECTION_CIRCULAR._serialized_end=2324
297
+ _CONFIGURATIONS._serialized_start=2335
298
+ _CONFIGURATIONS._serialized_end=2603
299
+ _CONFIGURATIONS_CONFIGURATION._serialized_start=2452
300
+ _CONFIGURATIONS_CONFIGURATION._serialized_end=2494
301
+ _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_start=2496
302
+ _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_end=2603
303
+ _FEATUREISSUES._serialized_start=2605
304
+ _FEATUREISSUES._serialized_end=2691
305
+ _FEATURE._serialized_start=2694
306
+ _FEATURE._serialized_end=3300
307
+ _CREATEORUPDATETAG._serialized_start=3302
308
+ _CREATEORUPDATETAG._serialized_end=3366
309
+ _RENAMETAG._serialized_start=3368
310
+ _RENAMETAG._serialized_end=3415
311
+ _DELETETAG._serialized_start=3417
312
+ _DELETETAG._serialized_end=3473
313
+ _DELETETAGS._serialized_start=3475
314
+ _DELETETAGS._serialized_end=3502
315
+ _MODIFICATION._serialized_start=3505
316
+ _MODIFICATION._serialized_end=4418
317
+ _MODIFICATION_MODIFICATIONTYPE._serialized_start=3937
318
+ _MODIFICATION_MODIFICATIONTYPE._serialized_end=4418
319
+ _FACE._serialized_start=4421
320
+ _FACE._serialized_end=4554
321
+ _BODY._serialized_start=4557
322
+ _BODY._serialized_end=4687
323
+ _VOLUME._serialized_start=4689
324
+ _VOLUME._serialized_end=4723
325
+ _TAGS._serialized_start=4726
326
+ _TAGS._serialized_end=4920
327
+ _TAGS_TAG._serialized_start=4784
328
+ _TAGS_TAG._serialized_end=4920
329
329
  # @@protoc_insertion_point(module_scope)
@@ -90,6 +90,7 @@ class Import(google.protobuf.message.Message):
90
90
  SCALING_FIELD_NUMBER: builtins.int
91
91
  FORCE_DISCRETE_FIELD_NUMBER: builtins.int
92
92
  PARAMETERS_FIELD_NUMBER: builtins.int
93
+ WEB_GEOMETRY_ID_FIELD_NUMBER: builtins.int
93
94
  geometry_url: builtins.str
94
95
  """Path to geometry file"""
95
96
  scaling: builtins.float
@@ -99,6 +100,8 @@ class Import(google.protobuf.message.Message):
99
100
  @property
100
101
  def parameters(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[luminarycloud._proto.parametricworker.parametricworker_pb2.Parameter]:
101
102
  """Parameters (as in parametric CAD) to update"""
103
+ web_geometry_id: builtins.str
104
+ """WebGeometryId for importing web geometries, like Onshape."""
102
105
  def __init__(
103
106
  self,
104
107
  *,
@@ -106,8 +109,9 @@ class Import(google.protobuf.message.Message):
106
109
  scaling: builtins.float = ...,
107
110
  force_discrete: builtins.bool = ...,
108
111
  parameters: collections.abc.Iterable[luminarycloud._proto.parametricworker.parametricworker_pb2.Parameter] | None = ...,
112
+ web_geometry_id: builtins.str = ...,
109
113
  ) -> None: ...
110
- def ClearField(self, field_name: typing_extensions.Literal["force_discrete", b"force_discrete", "geometry_url", b"geometry_url", "parameters", b"parameters", "scaling", b"scaling"]) -> None: ...
114
+ def ClearField(self, field_name: typing_extensions.Literal["force_discrete", b"force_discrete", "geometry_url", b"geometry_url", "parameters", b"parameters", "scaling", b"scaling", "web_geometry_id", b"web_geometry_id"]) -> None: ...
111
115
 
112
116
  global___Import = Import
113
117
 
@@ -15,7 +15,7 @@ _sym_db = _symbol_database.Default()
15
15
  from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
16
16
 
17
17
 
18
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n-proto/inferenceservice/inferenceservice.proto\x12\x1fluminary.proto.inferenceservice\x1a\x15proto/base/base.proto\"q\n CreateInferenceServiceJobRequest\x12\x0f\n\x07stl_url\x18\x01 \x01(\t\x12\x11\n\tmodel_url\x18\x02 \x01(\t\x12\x13\n\x0b\x63onfig_name\x18\x03 \x01(\t\x12\x14\n\x0cstencil_size\x18\x04 \x01(\x05\"5\n!CreateInferenceServiceJobResponse\x12\x10\n\x08response\x18\x01 \x01(\x0c\"*\n\x1bPingInferenceServiceRequest\x12\x0b\n\x03msg\x18\x01 \x01(\t\"+\n\x1cPingInferenceServiceResponse\x12\x0b\n\x03msg\x18\x01 \x01(\t2\xcd\x02\n\x10InferenceService\x12\xa2\x01\n\x19\x43reateInferenceServiceJob\x12\x41.luminary.proto.inferenceservice.CreateInferenceServiceJobRequest\x1a\x42.luminary.proto.inferenceservice.CreateInferenceServiceJobResponse\x12\x93\x01\n\x14PingInferenceService\x12<.luminary.proto.inferenceservice.PingInferenceServiceRequest\x1a=.luminary.proto.inferenceservice.PingInferenceServiceResponseB/Z-luminarycloud.com/core/proto/inferenceserviceb\x06proto3')
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n-proto/inferenceservice/inferenceservice.proto\x12\x1fluminary.proto.inferenceservice\x1a\x15proto/base/base.proto\"\x8a\x01\n CreateInferenceServiceJobRequest\x12\x0f\n\x07stl_url\x18\x01 \x01(\t\x12\x16\n\x0e\x63heckpoint_url\x18\x02 \x01(\t\x12\x13\n\x0b\x63onfig_name\x18\x03 \x01(\t\x12\x14\n\x0cstencil_size\x18\x04 \x01(\x05\x12\x12\n\nproject_id\x18\x05 \x01(\t\"5\n!CreateInferenceServiceJobResponse\x12\x10\n\x08response\x18\x01 \x01(\x0c\"*\n\x1bPingInferenceServiceRequest\x12\x0b\n\x03msg\x18\x01 \x01(\t\"+\n\x1cPingInferenceServiceResponse\x12\x0b\n\x03msg\x18\x01 \x01(\t2\xcd\x02\n\x10InferenceService\x12\xa2\x01\n\x19\x43reateInferenceServiceJob\x12\x41.luminary.proto.inferenceservice.CreateInferenceServiceJobRequest\x1a\x42.luminary.proto.inferenceservice.CreateInferenceServiceJobResponse\x12\x93\x01\n\x14PingInferenceService\x12<.luminary.proto.inferenceservice.PingInferenceServiceRequest\x1a=.luminary.proto.inferenceservice.PingInferenceServiceResponseB/Z-luminarycloud.com/core/proto/inferenceserviceb\x06proto3')
19
19
 
20
20
 
21
21
 
@@ -56,14 +56,14 @@ if _descriptor._USE_C_DESCRIPTORS == False:
56
56
 
57
57
  DESCRIPTOR._options = None
58
58
  DESCRIPTOR._serialized_options = b'Z-luminarycloud.com/core/proto/inferenceservice'
59
- _CREATEINFERENCESERVICEJOBREQUEST._serialized_start=105
60
- _CREATEINFERENCESERVICEJOBREQUEST._serialized_end=218
61
- _CREATEINFERENCESERVICEJOBRESPONSE._serialized_start=220
62
- _CREATEINFERENCESERVICEJOBRESPONSE._serialized_end=273
63
- _PINGINFERENCESERVICEREQUEST._serialized_start=275
64
- _PINGINFERENCESERVICEREQUEST._serialized_end=317
65
- _PINGINFERENCESERVICERESPONSE._serialized_start=319
66
- _PINGINFERENCESERVICERESPONSE._serialized_end=362
67
- _INFERENCESERVICE._serialized_start=365
68
- _INFERENCESERVICE._serialized_end=698
59
+ _CREATEINFERENCESERVICEJOBREQUEST._serialized_start=106
60
+ _CREATEINFERENCESERVICEJOBREQUEST._serialized_end=244
61
+ _CREATEINFERENCESERVICEJOBRESPONSE._serialized_start=246
62
+ _CREATEINFERENCESERVICEJOBRESPONSE._serialized_end=299
63
+ _PINGINFERENCESERVICEREQUEST._serialized_start=301
64
+ _PINGINFERENCESERVICEREQUEST._serialized_end=343
65
+ _PINGINFERENCESERVICERESPONSE._serialized_start=345
66
+ _PINGINFERENCESERVICERESPONSE._serialized_end=388
67
+ _INFERENCESERVICE._serialized_start=391
68
+ _INFERENCESERVICE._serialized_end=724
69
69
  # @@protoc_insertion_point(module_scope)
@@ -18,26 +18,34 @@ class CreateInferenceServiceJobRequest(google.protobuf.message.Message):
18
18
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
19
19
 
20
20
  STL_URL_FIELD_NUMBER: builtins.int
21
- MODEL_URL_FIELD_NUMBER: builtins.int
21
+ CHECKPOINT_URL_FIELD_NUMBER: builtins.int
22
22
  CONFIG_NAME_FIELD_NUMBER: builtins.int
23
23
  STENCIL_SIZE_FIELD_NUMBER: builtins.int
24
+ PROJECT_ID_FIELD_NUMBER: builtins.int
24
25
  stl_url: builtins.str
25
- model_url: builtins.str
26
+ checkpoint_url: builtins.str
26
27
  config_name: builtins.str
27
28
  stencil_size: builtins.int
29
+ project_id: builtins.str
28
30
  def __init__(
29
31
  self,
30
32
  *,
31
33
  stl_url: builtins.str = ...,
32
- model_url: builtins.str = ...,
34
+ checkpoint_url: builtins.str = ...,
33
35
  config_name: builtins.str = ...,
34
36
  stencil_size: builtins.int = ...,
37
+ project_id: builtins.str = ...,
35
38
  ) -> None: ...
36
- def ClearField(self, field_name: typing_extensions.Literal["config_name", b"config_name", "model_url", b"model_url", "stencil_size", b"stencil_size", "stl_url", b"stl_url"]) -> None: ...
39
+ def ClearField(self, field_name: typing_extensions.Literal["checkpoint_url", b"checkpoint_url", "config_name", b"config_name", "project_id", b"project_id", "stencil_size", b"stencil_size", "stl_url", b"stl_url"]) -> None: ...
37
40
 
38
41
  global___CreateInferenceServiceJobRequest = CreateInferenceServiceJobRequest
39
42
 
40
43
  class CreateInferenceServiceJobResponse(google.protobuf.message.Message):
44
+ """Response messages are currently json encoded in bytes, due to the varied
45
+ possible responses from the inference service. The content of this response
46
+ is heavily depended on the model, and implemention of the python service.
47
+ """
48
+
41
49
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
42
50
 
43
51
  RESPONSE_FIELD_NUMBER: builtins.int