ChatGPT - Jupyter - AI Assistant
ChatGPT-powered AI assistant for Jupyter Notebooks
ChatGPT - Jupyter - AI Assistant란 무엇입니까?
ChatGPT - Jupyter - AI Assistant은(는) Ties de Kok에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ChatGPT-powered AI assistant for Jupyter Notebooks"입니다.
확장 프로그램 스크린샷
ChatGPT - Jupyter - AI Assistant 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } } |