pltr-cli 0.11.0__py3-none-any.whl → 0.13.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 (46) hide show
  1. pltr/__init__.py +1 -1
  2. pltr/cli.py +40 -0
  3. pltr/commands/admin.py +565 -11
  4. pltr/commands/aip_agents.py +333 -0
  5. pltr/commands/connectivity.py +309 -1
  6. pltr/commands/cp.py +103 -0
  7. pltr/commands/dataset.py +104 -4
  8. pltr/commands/functions.py +503 -0
  9. pltr/commands/language_models.py +515 -0
  10. pltr/commands/mediasets.py +176 -0
  11. pltr/commands/models.py +362 -0
  12. pltr/commands/ontology.py +44 -13
  13. pltr/commands/orchestration.py +167 -11
  14. pltr/commands/project.py +231 -22
  15. pltr/commands/resource.py +416 -17
  16. pltr/commands/space.py +25 -303
  17. pltr/commands/sql.py +54 -7
  18. pltr/commands/streams.py +616 -0
  19. pltr/commands/third_party_applications.py +82 -0
  20. pltr/services/admin.py +331 -3
  21. pltr/services/aip_agents.py +147 -0
  22. pltr/services/base.py +104 -1
  23. pltr/services/connectivity.py +139 -0
  24. pltr/services/copy.py +391 -0
  25. pltr/services/dataset.py +77 -4
  26. pltr/services/folder.py +6 -1
  27. pltr/services/functions.py +223 -0
  28. pltr/services/language_models.py +281 -0
  29. pltr/services/mediasets.py +144 -9
  30. pltr/services/models.py +179 -0
  31. pltr/services/ontology.py +48 -1
  32. pltr/services/orchestration.py +133 -1
  33. pltr/services/project.py +213 -39
  34. pltr/services/resource.py +229 -60
  35. pltr/services/space.py +24 -175
  36. pltr/services/sql.py +44 -20
  37. pltr/services/streams.py +290 -0
  38. pltr/services/third_party_applications.py +53 -0
  39. pltr/utils/formatting.py +195 -1
  40. pltr/utils/pagination.py +325 -0
  41. {pltr_cli-0.11.0.dist-info → pltr_cli-0.13.0.dist-info}/METADATA +55 -4
  42. pltr_cli-0.13.0.dist-info/RECORD +70 -0
  43. {pltr_cli-0.11.0.dist-info → pltr_cli-0.13.0.dist-info}/WHEEL +1 -1
  44. pltr_cli-0.11.0.dist-info/RECORD +0 -55
  45. {pltr_cli-0.11.0.dist-info → pltr_cli-0.13.0.dist-info}/entry_points.txt +0 -0
  46. {pltr_cli-0.11.0.dist-info → pltr_cli-0.13.0.dist-info}/licenses/LICENSE +0 -0
pltr/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.11.0"
1
+ __version__ = "0.13.0"
pltr/cli.py CHANGED
@@ -24,7 +24,14 @@ from pltr.commands import (
24
24
  alias,
25
25
  mediasets,
26
26
  connectivity,
27
+ third_party_applications,
28
+ aip_agents,
29
+ functions,
30
+ streams,
31
+ language_models,
32
+ models,
27
33
  )
34
+ from pltr.commands.cp import cp_command
28
35
 
29
36
  app = typer.Typer(
30
37
  name="pltr",
@@ -54,6 +61,36 @@ app.add_typer(
54
61
  app.add_typer(
55
62
  connectivity.app, name="connectivity", help="Manage connections and data imports"
56
63
  )
64
+ app.add_typer(
65
+ third_party_applications.app,
66
+ name="third-party-apps",
67
+ help="Manage third-party applications",
68
+ )
69
+ app.add_typer(
70
+ aip_agents.app,
71
+ name="aip-agents",
72
+ help="Manage AIP Agents, sessions, and versions",
73
+ )
74
+ app.add_typer(
75
+ functions.app,
76
+ name="functions",
77
+ help="Manage Functions queries and value types",
78
+ )
79
+ app.add_typer(
80
+ streams.app,
81
+ name="streams",
82
+ help="Manage streaming datasets and streams",
83
+ )
84
+ app.add_typer(
85
+ language_models.app,
86
+ name="language-models",
87
+ help="Interact with language models (Claude, OpenAI embeddings)",
88
+ )
89
+ app.add_typer(
90
+ models.app,
91
+ name="models",
92
+ help="Manage ML models and versions",
93
+ )
57
94
  app.add_typer(
58
95
  admin.app,
59
96
  name="admin",
@@ -62,6 +99,9 @@ app.add_typer(
62
99
  app.add_typer(shell.shell_app, name="shell", help="Interactive shell mode")
63
100
  app.add_typer(completion.app, name="completion", help="Manage shell completions")
64
101
  app.add_typer(alias.app, name="alias", help="Manage command aliases")
102
+ app.command("cp", help="Copy datasets or folders into another Compass folder")(
103
+ cp_command
104
+ )
65
105
 
66
106
 
67
107
  def version_callback(value: bool):