Internal Python client SDK and CLI for the SysML refinement API used by the Visual Design and Engineering Lab at Carnegie Mellon University
Project description
sysmlv2copilot
sysmlv2copilot is the Python SDK and CLI for the SysML Copilot service used by the Visual Design and Engineering Lab at Carnegie Mellon University.
This package is for authorized internal users. Installing it does not by itself grant service access.
What Users Can Do
- Generate SysML from text requirements
- Repair existing SysML
- Use either Python or the command line
Install
python -m pip install sysmlv2copilot
Upgrade an existing install:
python -m pip install -U sysmlv2copilot
Authentication
Set your API key once:
export SYSMLV2COPILOT_API_KEY=sysml_live_...
Or pass it directly in code:
from sysmlv2copilot import generate, repair
sysml = generate(
"Design a compact warehouse inspection drone that can hover for 15 minutes.",
api_key="sysml_live_...",
)
repaired = repair(
"broken.sysml",
api_key="sysml_live_...",
)
Python
Generate SysML:
from sysmlv2copilot import generate
sysml = generate("Design a compact warehouse inspection drone that can hover for 15 minutes.")
print(sysml)
Repair SysML:
from pathlib import Path
from sysmlv2copilot import repair
repaired = repair(Path("broken.sysml"))
print(repaired)
If a .txt file contains SysML, repair() can use that too:
from pathlib import Path
from sysmlv2copilot import repair
repaired = repair(Path("broken.txt"))
print(repaired)
You can pass:
- raw strings
Pathobjects- path strings like
"broken.sysml"or"requirements.html" - open text files
Use generate() for natural-language requirements and repair() for SysML, regardless of whether the file extension is .sysml or .txt.
CLI
Generate SysML from inline text:
sysmlv2copilot --api-key sysml_live_... \
generate \
--input "Design a compact warehouse inspection drone that can hover for 15 minutes."
Repair SysML from a file:
sysmlv2copilot --api-key sysml_live_... \
repair \
--input-file ./broken.sysml
The CLI accepts .txt, .sysml, and .html files for --input-file.
HTML files are converted to plain text before being sent to the API.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sysmlv2copilot-0.2.9.tar.gz.
File metadata
- Download URL: sysmlv2copilot-0.2.9.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db864d2893ef611d907a3837e14834d994782cb18e9eec7d022de57b9ed46ca7
|
|
| MD5 |
fb0c5f764368ee705c4cd71695827363
|
|
| BLAKE2b-256 |
8a0e4a4fead3018393bbc47013f92e0b47430d7789a18c10a134f51b5b11e980
|
File details
Details for the file sysmlv2copilot-0.2.9-py3-none-any.whl.
File metadata
- Download URL: sysmlv2copilot-0.2.9-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6640d28a05bd1c8ae34291c344d322560c759781c74775937d15efa73d2aed54
|
|
| MD5 |
3dae51e3473386861727fb0b84d74312
|
|
| BLAKE2b-256 |
d56fe9b59df9e6319d7d37d608375454343735b4763ae815b29e5b6017133d11
|