laurelin-cli


Namelaurelin-cli JSON
Version 1.2.0 PyPI version JSON
download
home_pagehttps://laurelin-inc.com
SummaryTerminal interface for Laurelin nuclear fusion chat platform
upload_time2025-11-06 05:18:52
maintainerNone
docs_urlNone
authorLaurelin Inc.
requires_python>=3.8
licenseMIT
keywords laurelin nuclear fusion plasma chat cli terminal
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Laurelin CLI

[![PyPI version](https://badge.fury.io/py/laurelin-cli.svg)](https://badge.fury.io/py/laurelin-cli)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

**Access Laurelin's AI-powered nuclear fusion research assistant directly from your terminal.**

Laurelin CLI is a command-line interface for the Laurelin nuclear fusion chat platform. Chat with specialized AI models trained on plasma physics, fusion engineering, and nuclear science research - all from the comfort of your terminal.

---

## Features

- **AI-Powered Fusion Research** - Access Laurelin's specialized AI models for nuclear fusion research
- **Interactive Chat Mode** - Natural conversation flow with context-aware responses
- **Session Management** - Continue previous conversations seamlessly across sessions
- **Secure Token Authentication** - CLI token-based authentication with automatic refresh
- **Progress Indicators** - Real-time visual feedback for API requests
- **Color-Coded Terminal Output** - Easy-to-read, syntax-highlighted interface
- **Production & Development Modes** - Switch between production and local development APIs
- **ITAR/EAR Compliant** - US location verification for controlled technology access

---

## Installation

### From PyPI (Recommended)

```bash
pip install laurelin-cli
```

### From Source

```bash
git clone https://github.com/laurelin-inc/laurelin-cli.git
cd laurelin-cli
pip install -e .
```

### Requirements

- Python 3.8 or higher
- Active internet connection
- Laurelin account with CLI access enabled

---

## Quick Start

### 1. Get Your CLI Tokens

Visit the Laurelin API Access page to generate your CLI tokens:

**https://chat.laurelin-inc.com/api-access**

**Access Requirements:**
- Active paid subscription (Basic or Enterprise tier)
- US location verification (ITAR/EAR compliance)
- Admin users have unrestricted access

### 2. Login

Authenticate with your CLI tokens:

```bash
laurelin login
```

You'll be prompted to enter your access token and refresh token. These are stored securely in `~/.laurelin/credentials.json` with user-only permissions (chmod 600).

### 3. Start Chatting

Ask questions about nuclear fusion research:

```bash
# Single question
laurelin chat "What is the plasma density in a tokamak reactor?"

# Interactive mode
laurelin chat --interactive

# Continue a previous session
laurelin chat -s abc123 "What about magnetic field strength?"
```

---

## Usage

### Authentication Commands

#### `laurelin login`

Authenticate with your CLI access tokens.

**Options:**
- `--production` - Use production API endpoint (default)
- `--dev` - Use development API endpoint (localhost:8080)

**Example:**
```bash
# Production login
laurelin login --production

# Development login (for local testing)
laurelin login --dev
```

#### `laurelin logout`

Clear stored authentication tokens and log out.

```bash
laurelin logout
```

#### `laurelin status`

Display current authentication status and configuration.

```bash
laurelin status
```

**Output:**
```
Laurelin CLI Status
==================================================
Authentication: ✅ Logged in
Credentials: /Users/joe/.laurelin/credentials.json

API Endpoint: https://api.laurelin-inc.com
Production Mode: True

Connection Test: ✅ Connected
```

---

### Chat Commands

#### `laurelin chat <message>`

Send a message to Laurelin AI.

**Arguments:**
- `message` - Your question or message (optional in interactive mode)

**Options:**
- `--interactive`, `-i` - Start interactive chat session
- `--session SESSION_ID`, `-s SESSION_ID` - Continue an existing conversation

**Examples:**

**Single Question:**
```bash
laurelin chat "Explain magnetic confinement fusion"
```

**Interactive Mode:**
```bash
laurelin chat --interactive
```
```
You> What is plasma confinement time?
Laurelin (gemini-pro): Plasma confinement time (τE) is a measure of how well
a fusion device retains energy in the plasma...

You> How does it relate to the Lawson criterion?
Laurelin (gemini-pro): The Lawson criterion establishes the minimum conditions...
```

**Continue Previous Session:**
```bash
laurelin chat -s abc12345 "What about inertial confinement?"
```

**Exit Interactive Mode:**
Type `exit`, `quit`, or `q` to end the session.

---

### Session Management

#### `laurelin sessions`

List your recent chat sessions with session IDs.

```bash
laurelin sessions
```

**Output:**
```
Your Chat Sessions
======================================================================

[abc12345] Tokamak plasma physics discussion
  Created: 2025-01-15

[def67890] ITER magnetic field configuration
  Created: 2025-01-14
```

Use session IDs to continue previous conversations:
```bash
laurelin chat -s abc12345 "Follow-up question"
```

---

### Token Management

#### `laurelin tokens`

List all your active CLI tokens with usage information.

```bash
laurelin tokens
```

**Output:**
```
Active CLI Tokens
======================================================================

● My MacBook CLI Token
  ID: cli_a1b2c3d4...
  Created: 2025-01-10
  Last used: 2025-01-15

● Work Desktop Token
  ID: cli_e5f6g7h8...
  Created: 2025-01-12
  Last used: 2025-01-14
```

---

## Configuration

### Configuration Files

All configuration files are stored in `~/.laurelin/`:

**`~/.laurelin/credentials.json`**
- Stores access and refresh tokens
- Permissions: 600 (user read/write only)
- Automatically created on first login

**`~/.laurelin/config.json`**
- CLI configuration settings
- API endpoint preferences
- Automatically managed by CLI

### Environment Variables

**`LAURELIN_API_URL`**
- Override the default API endpoint
- Useful for testing or enterprise deployments

```bash
export LAURELIN_API_URL=https://custom-api.example.com
laurelin status
```

### API Endpoints

**Production (Default):**
```
https://api.laurelin-inc.com
```

**Development:**
```
http://localhost:8080
```

Switch between environments using login flags:
```bash
# Production
laurelin login --production

# Development
laurelin login --dev
```

---

## Security

Laurelin CLI implements multiple security measures:

- **Secure Token Storage** - Credentials stored with 600 permissions (user-only access)
- **Automatic Token Refresh** - Access tokens expire after 1 hour; refresh tokens automatically renew them
- **HTTPS Encryption** - All production API communication uses HTTPS
- **Location Verification** - US-only access enforcement for ITAR/EAR compliance
- **No Password Storage** - Only tokens are stored locally; passwords never saved

**Security Best Practices:**
- Never share your CLI tokens
- Generate separate tokens for each device
- Revoke unused tokens from the web interface
- Use `laurelin logout` on shared machines

---

## Admin Access

Admin users (Laurelin team members) have unrestricted CLI access:

**Admin Privileges:**
- Bypass subscription requirements
- Unrestricted token generation
- Access to all CLI features
- Development environment access

**Current Admin Team:**
- jsf2178@columbia.edu
- finbergenator@gmail.com
- aansh.shah@laurelin-inc.com
- joseph.finberg@laurelin-inc.com
- gerard.geer@laurelin-inc.com

---

## Development

### Local Development Setup

Install in development mode for testing:

```bash
# Clone repository
git clone https://github.com/laurelin-inc/laurelin-cli.git
cd laurelin-cli

# Install in editable mode
pip install -e .

# Login with development endpoint
laurelin login --dev
```

### Testing Connection

Verify your setup:

```bash
# Check authentication status
laurelin status

# Test with a simple query
laurelin chat "Hello, Laurelin!"

# List your tokens
laurelin tokens
```

### Running Local Backend

If developing against a local backend:

```bash
# Start local backend on port 8080
cd laurelin-chat-backend
python app/main.py

# In another terminal, use dev mode
laurelin login --dev
laurelin chat "Test message"
```

---

## Troubleshooting

### Common Issues

**"Not authenticated" error:**
```bash
# Solution: Login first
laurelin login
```

**"Cannot connect to API" warning:**
```bash
# Check your internet connection
# Verify API endpoint
laurelin status

# Try logging in again
laurelin logout
laurelin login --production
```

**Token expired errors:**
- The CLI automatically refreshes tokens
- If issues persist, login again: `laurelin login`

**Permission denied on credentials file:**
```bash
# Fix file permissions
chmod 600 ~/.laurelin/credentials.json
```

---

## Examples

### Research Workflow

```bash
# Start research session
laurelin chat -i

You> What is the Lawson criterion for fusion?
Laurelin: The Lawson criterion defines the minimum conditions...

You> Calculate it for deuterium-tritium fusion
Laurelin: For D-T fusion at 15 keV temperature...

You> exit
```

### Quick Facts

```bash
# Single-shot questions
laurelin chat "What is ITER's planned Q value?"
laurelin chat "Explain the tokamak magnetic field configuration"
laurelin chat "What are the main challenges in fusion energy?"
```

### Session Continuation

```bash
# Start new discussion
laurelin chat "Explain plasma instabilities"

# Later, continue the conversation
laurelin sessions  # Find session ID
laurelin chat -s abc123 "What about ELMs specifically?"
laurelin chat -s abc123 "How does ITER plan to handle them?"
```

---

## Resources

### Documentation
- **Website:** https://laurelin-inc.com
- **Documentation:** https://docs.laurelin-inc.com
- **API Access:** https://chat.laurelin-inc.com/api-access

### Support
- **GitHub Repository:** https://github.com/laurelin-inc/laurelin-cli
- **Issue Tracker:** https://github.com/laurelin-inc/laurelin-cli/issues
- **Email Support:** support@laurelin-inc.com

### Community
- Join discussions about fusion research
- Share your CLI workflows
- Contribute to the project

---

## License

MIT License

Copyright (c) 2025 Laurelin Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

---

## About Laurelin

Laurelin is building the next generation of nuclear fusion research tools powered by artificial intelligence. Our platform helps researchers analyze plasma physics, design fusion experiments, and accelerate the path to commercial fusion energy.

**Mission:** Accelerate the development of fusion energy through AI-powered research tools.

**Vision:** Make fusion energy research more accessible, efficient, and collaborative.

---

**Built with dedication by the Laurelin team**

*Advancing fusion energy, one conversation at a time.*

            

Raw data

            {
    "_id": null,
    "home_page": "https://laurelin-inc.com",
    "name": "laurelin-cli",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "laurelin nuclear fusion plasma chat cli terminal",
    "author": "Laurelin Inc.",
    "author_email": "support@laurelin-inc.com",
    "download_url": "https://files.pythonhosted.org/packages/80/e5/1fbfe103dc851212378f9ef966df0d20268471c5e3a7d476494e532c56fd/laurelin_cli-1.2.0.tar.gz",
    "platform": null,
    "description": "# Laurelin CLI\n\n[![PyPI version](https://badge.fury.io/py/laurelin-cli.svg)](https://badge.fury.io/py/laurelin-cli)\n[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n**Access Laurelin's AI-powered nuclear fusion research assistant directly from your terminal.**\n\nLaurelin CLI is a command-line interface for the Laurelin nuclear fusion chat platform. Chat with specialized AI models trained on plasma physics, fusion engineering, and nuclear science research - all from the comfort of your terminal.\n\n---\n\n## Features\n\n- **AI-Powered Fusion Research** - Access Laurelin's specialized AI models for nuclear fusion research\n- **Interactive Chat Mode** - Natural conversation flow with context-aware responses\n- **Session Management** - Continue previous conversations seamlessly across sessions\n- **Secure Token Authentication** - CLI token-based authentication with automatic refresh\n- **Progress Indicators** - Real-time visual feedback for API requests\n- **Color-Coded Terminal Output** - Easy-to-read, syntax-highlighted interface\n- **Production & Development Modes** - Switch between production and local development APIs\n- **ITAR/EAR Compliant** - US location verification for controlled technology access\n\n---\n\n## Installation\n\n### From PyPI (Recommended)\n\n```bash\npip install laurelin-cli\n```\n\n### From Source\n\n```bash\ngit clone https://github.com/laurelin-inc/laurelin-cli.git\ncd laurelin-cli\npip install -e .\n```\n\n### Requirements\n\n- Python 3.8 or higher\n- Active internet connection\n- Laurelin account with CLI access enabled\n\n---\n\n## Quick Start\n\n### 1. Get Your CLI Tokens\n\nVisit the Laurelin API Access page to generate your CLI tokens:\n\n**https://chat.laurelin-inc.com/api-access**\n\n**Access Requirements:**\n- Active paid subscription (Basic or Enterprise tier)\n- US location verification (ITAR/EAR compliance)\n- Admin users have unrestricted access\n\n### 2. Login\n\nAuthenticate with your CLI tokens:\n\n```bash\nlaurelin login\n```\n\nYou'll be prompted to enter your access token and refresh token. These are stored securely in `~/.laurelin/credentials.json` with user-only permissions (chmod 600).\n\n### 3. Start Chatting\n\nAsk questions about nuclear fusion research:\n\n```bash\n# Single question\nlaurelin chat \"What is the plasma density in a tokamak reactor?\"\n\n# Interactive mode\nlaurelin chat --interactive\n\n# Continue a previous session\nlaurelin chat -s abc123 \"What about magnetic field strength?\"\n```\n\n---\n\n## Usage\n\n### Authentication Commands\n\n#### `laurelin login`\n\nAuthenticate with your CLI access tokens.\n\n**Options:**\n- `--production` - Use production API endpoint (default)\n- `--dev` - Use development API endpoint (localhost:8080)\n\n**Example:**\n```bash\n# Production login\nlaurelin login --production\n\n# Development login (for local testing)\nlaurelin login --dev\n```\n\n#### `laurelin logout`\n\nClear stored authentication tokens and log out.\n\n```bash\nlaurelin logout\n```\n\n#### `laurelin status`\n\nDisplay current authentication status and configuration.\n\n```bash\nlaurelin status\n```\n\n**Output:**\n```\nLaurelin CLI Status\n==================================================\nAuthentication: \u2705 Logged in\nCredentials: /Users/joe/.laurelin/credentials.json\n\nAPI Endpoint: https://api.laurelin-inc.com\nProduction Mode: True\n\nConnection Test: \u2705 Connected\n```\n\n---\n\n### Chat Commands\n\n#### `laurelin chat <message>`\n\nSend a message to Laurelin AI.\n\n**Arguments:**\n- `message` - Your question or message (optional in interactive mode)\n\n**Options:**\n- `--interactive`, `-i` - Start interactive chat session\n- `--session SESSION_ID`, `-s SESSION_ID` - Continue an existing conversation\n\n**Examples:**\n\n**Single Question:**\n```bash\nlaurelin chat \"Explain magnetic confinement fusion\"\n```\n\n**Interactive Mode:**\n```bash\nlaurelin chat --interactive\n```\n```\nYou> What is plasma confinement time?\nLaurelin (gemini-pro): Plasma confinement time (\u03c4E) is a measure of how well\na fusion device retains energy in the plasma...\n\nYou> How does it relate to the Lawson criterion?\nLaurelin (gemini-pro): The Lawson criterion establishes the minimum conditions...\n```\n\n**Continue Previous Session:**\n```bash\nlaurelin chat -s abc12345 \"What about inertial confinement?\"\n```\n\n**Exit Interactive Mode:**\nType `exit`, `quit`, or `q` to end the session.\n\n---\n\n### Session Management\n\n#### `laurelin sessions`\n\nList your recent chat sessions with session IDs.\n\n```bash\nlaurelin sessions\n```\n\n**Output:**\n```\nYour Chat Sessions\n======================================================================\n\n[abc12345] Tokamak plasma physics discussion\n  Created: 2025-01-15\n\n[def67890] ITER magnetic field configuration\n  Created: 2025-01-14\n```\n\nUse session IDs to continue previous conversations:\n```bash\nlaurelin chat -s abc12345 \"Follow-up question\"\n```\n\n---\n\n### Token Management\n\n#### `laurelin tokens`\n\nList all your active CLI tokens with usage information.\n\n```bash\nlaurelin tokens\n```\n\n**Output:**\n```\nActive CLI Tokens\n======================================================================\n\n\u25cf My MacBook CLI Token\n  ID: cli_a1b2c3d4...\n  Created: 2025-01-10\n  Last used: 2025-01-15\n\n\u25cf Work Desktop Token\n  ID: cli_e5f6g7h8...\n  Created: 2025-01-12\n  Last used: 2025-01-14\n```\n\n---\n\n## Configuration\n\n### Configuration Files\n\nAll configuration files are stored in `~/.laurelin/`:\n\n**`~/.laurelin/credentials.json`**\n- Stores access and refresh tokens\n- Permissions: 600 (user read/write only)\n- Automatically created on first login\n\n**`~/.laurelin/config.json`**\n- CLI configuration settings\n- API endpoint preferences\n- Automatically managed by CLI\n\n### Environment Variables\n\n**`LAURELIN_API_URL`**\n- Override the default API endpoint\n- Useful for testing or enterprise deployments\n\n```bash\nexport LAURELIN_API_URL=https://custom-api.example.com\nlaurelin status\n```\n\n### API Endpoints\n\n**Production (Default):**\n```\nhttps://api.laurelin-inc.com\n```\n\n**Development:**\n```\nhttp://localhost:8080\n```\n\nSwitch between environments using login flags:\n```bash\n# Production\nlaurelin login --production\n\n# Development\nlaurelin login --dev\n```\n\n---\n\n## Security\n\nLaurelin CLI implements multiple security measures:\n\n- **Secure Token Storage** - Credentials stored with 600 permissions (user-only access)\n- **Automatic Token Refresh** - Access tokens expire after 1 hour; refresh tokens automatically renew them\n- **HTTPS Encryption** - All production API communication uses HTTPS\n- **Location Verification** - US-only access enforcement for ITAR/EAR compliance\n- **No Password Storage** - Only tokens are stored locally; passwords never saved\n\n**Security Best Practices:**\n- Never share your CLI tokens\n- Generate separate tokens for each device\n- Revoke unused tokens from the web interface\n- Use `laurelin logout` on shared machines\n\n---\n\n## Admin Access\n\nAdmin users (Laurelin team members) have unrestricted CLI access:\n\n**Admin Privileges:**\n- Bypass subscription requirements\n- Unrestricted token generation\n- Access to all CLI features\n- Development environment access\n\n**Current Admin Team:**\n- jsf2178@columbia.edu\n- finbergenator@gmail.com\n- aansh.shah@laurelin-inc.com\n- joseph.finberg@laurelin-inc.com\n- gerard.geer@laurelin-inc.com\n\n---\n\n## Development\n\n### Local Development Setup\n\nInstall in development mode for testing:\n\n```bash\n# Clone repository\ngit clone https://github.com/laurelin-inc/laurelin-cli.git\ncd laurelin-cli\n\n# Install in editable mode\npip install -e .\n\n# Login with development endpoint\nlaurelin login --dev\n```\n\n### Testing Connection\n\nVerify your setup:\n\n```bash\n# Check authentication status\nlaurelin status\n\n# Test with a simple query\nlaurelin chat \"Hello, Laurelin!\"\n\n# List your tokens\nlaurelin tokens\n```\n\n### Running Local Backend\n\nIf developing against a local backend:\n\n```bash\n# Start local backend on port 8080\ncd laurelin-chat-backend\npython app/main.py\n\n# In another terminal, use dev mode\nlaurelin login --dev\nlaurelin chat \"Test message\"\n```\n\n---\n\n## Troubleshooting\n\n### Common Issues\n\n**\"Not authenticated\" error:**\n```bash\n# Solution: Login first\nlaurelin login\n```\n\n**\"Cannot connect to API\" warning:**\n```bash\n# Check your internet connection\n# Verify API endpoint\nlaurelin status\n\n# Try logging in again\nlaurelin logout\nlaurelin login --production\n```\n\n**Token expired errors:**\n- The CLI automatically refreshes tokens\n- If issues persist, login again: `laurelin login`\n\n**Permission denied on credentials file:**\n```bash\n# Fix file permissions\nchmod 600 ~/.laurelin/credentials.json\n```\n\n---\n\n## Examples\n\n### Research Workflow\n\n```bash\n# Start research session\nlaurelin chat -i\n\nYou> What is the Lawson criterion for fusion?\nLaurelin: The Lawson criterion defines the minimum conditions...\n\nYou> Calculate it for deuterium-tritium fusion\nLaurelin: For D-T fusion at 15 keV temperature...\n\nYou> exit\n```\n\n### Quick Facts\n\n```bash\n# Single-shot questions\nlaurelin chat \"What is ITER's planned Q value?\"\nlaurelin chat \"Explain the tokamak magnetic field configuration\"\nlaurelin chat \"What are the main challenges in fusion energy?\"\n```\n\n### Session Continuation\n\n```bash\n# Start new discussion\nlaurelin chat \"Explain plasma instabilities\"\n\n# Later, continue the conversation\nlaurelin sessions  # Find session ID\nlaurelin chat -s abc123 \"What about ELMs specifically?\"\nlaurelin chat -s abc123 \"How does ITER plan to handle them?\"\n```\n\n---\n\n## Resources\n\n### Documentation\n- **Website:** https://laurelin-inc.com\n- **Documentation:** https://docs.laurelin-inc.com\n- **API Access:** https://chat.laurelin-inc.com/api-access\n\n### Support\n- **GitHub Repository:** https://github.com/laurelin-inc/laurelin-cli\n- **Issue Tracker:** https://github.com/laurelin-inc/laurelin-cli/issues\n- **Email Support:** support@laurelin-inc.com\n\n### Community\n- Join discussions about fusion research\n- Share your CLI workflows\n- Contribute to the project\n\n---\n\n## License\n\nMIT License\n\nCopyright (c) 2025 Laurelin Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n---\n\n## About Laurelin\n\nLaurelin is building the next generation of nuclear fusion research tools powered by artificial intelligence. Our platform helps researchers analyze plasma physics, design fusion experiments, and accelerate the path to commercial fusion energy.\n\n**Mission:** Accelerate the development of fusion energy through AI-powered research tools.\n\n**Vision:** Make fusion energy research more accessible, efficient, and collaborative.\n\n---\n\n**Built with dedication by the Laurelin team**\n\n*Advancing fusion energy, one conversation at a time.*\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Terminal interface for Laurelin nuclear fusion chat platform",
    "version": "1.2.0",
    "project_urls": {
        "Homepage": "https://laurelin-inc.com"
    },
    "split_keywords": [
        "laurelin",
        "nuclear",
        "fusion",
        "plasma",
        "chat",
        "cli",
        "terminal"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4be01b8156dfc82d4436b75938a2946c1bbf03f91ccf53dc7e925607ade5a686",
                "md5": "1ba94773e6b783f29d6cd1e97ea2ece4",
                "sha256": "021bbecb92c61b1e9787fcb498dc1e000155398992ace37d3e9ba8bb6334093f"
            },
            "downloads": -1,
            "filename": "laurelin_cli-1.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1ba94773e6b783f29d6cd1e97ea2ece4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 21958,
            "upload_time": "2025-11-06T05:18:51",
            "upload_time_iso_8601": "2025-11-06T05:18:51.867703Z",
            "url": "https://files.pythonhosted.org/packages/4b/e0/1b8156dfc82d4436b75938a2946c1bbf03f91ccf53dc7e925607ade5a686/laurelin_cli-1.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80e51fbfe103dc851212378f9ef966df0d20268471c5e3a7d476494e532c56fd",
                "md5": "f71938316dac48001b13092c8e7aac61",
                "sha256": "f9fa7673ef04d2eba048ef3c67b97ab6f3c26b176d25621b76d87f861c41a021"
            },
            "downloads": -1,
            "filename": "laurelin_cli-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f71938316dac48001b13092c8e7aac61",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 24449,
            "upload_time": "2025-11-06T05:18:52",
            "upload_time_iso_8601": "2025-11-06T05:18:52.982054Z",
            "url": "https://files.pythonhosted.org/packages/80/e5/1fbfe103dc851212378f9ef966df0d20268471c5e3a7d476494e532c56fd/laurelin_cli-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-06 05:18:52",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "laurelin-cli"
}
        
Elapsed time: 1.72513s