ChatGPT - Jupyter - AI Assistant

ChatGPT-powered AI assistant for Jupyter Notebooks

Τι είναι το ChatGPT - Jupyter - AI Assistant;

Το ChatGPT - Jupyter - AI Assistant είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ties de Kok, και η κύρια λειτουργία του είναι "ChatGPT-powered AI assistant for Jupyter Notebooks".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ChatGPT - Jupyter - AI Assistant

Λήψη αρχείων επέκτασης ChatGPT - Jupyter - AI Assistant σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Important note: this extension is archived as I am no longer able to maintaining it in my new role. I will leave it online while it still works, but I recommend switching to Jupyter AI instead. https://github.com/jupyterlab/jupyter-ai

A browser extension to provide various AI helper functions in Jupyter Notebooks and Jupyter Lab, powered by ChatGPT and GPT-4.

Current primary functions, have ChatGPT/GPT-4:

- Format - Automatically add comments, docstrings, and formatting to your code cell.
- Explain - Explain the content of your code cell, ELI5 style.
- Debug - Help you debug an error message in your code cell.
- Complete - Help you complete a code snippet in your code cell.
- Review - Provide a code review of your code cell with suggestions and improvements.    
- Ask a question - Ask ChatGPT a custom question.
- Voice command - Ask ChatGPT a custom question through your microphone.

**Now support keyboard shortcuts, check the options page!**

Source code: https://github.com/TiesdeKok/chat-gpt-jupyter-extension                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChatGPT - Jupyter - AI Assistant ChatGPT - Jupyter - AI Assistant
ID dlipncbkjmjjdpgcnodkbdobkadiejll
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-jupyter-ai-assist/dlipncbkjmjjdpgcnodkbdobkadiejll
Περιγραφή ChatGPT-powered AI assistant for Jupyter Notebooks
Μέγεθος Αρχείου 328 KB
Αριθμός Εγκαταστάσεων 11,939
Τρέχουσα Έκδοση 0.6.0
Τελευταία Ενημέρωση 2023-09-29
Ημερομηνία Δημοσίευσης 2023-01-03
Αξιολόγηση 4.09/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής Ties de Kok
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/TiesdeKok/chat-gpt-jupyter-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/TiesdeKok/chat-gpt-jupyter-extension
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/TiesdeKok/chat-gpt-jupyter-extension/blob/main/privacy_policy_for_extension.md
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT - Jupyter - AI Assistant",
    "description": "ChatGPT-powered AI assistant for Jupyter Notebooks",
    "version": "0.6.0",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.ipynb*",
                "*:\/\/*\/lab*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        }
    ],
    "commands": {
        "format_code": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Format code"
        },
        "explain_code": {
            "description": "Explain code - (set manually)"
        },
        "debug_code": {
            "description": "Debug code - (set manually)"
        },
        "complete_code": {
            "suggested_key": {
                "default": "Ctrl+Shift+4"
            },
            "description": "Complete code"
        },
        "review_code": {
            "description": "Review code - (set manually)"
        },
        "ask_question": {
            "suggested_key": {
                "default": "Ctrl+Shift+6"
            },
            "description": "Ask coding question"
        },
        "voice_command": {
            "suggested_key": {
                "default": "Ctrl+Shift+7"
            },
            "description": "Voice command"
        }
    }
}