PyCharm - andyceo/documentation GitHub Wiki
В Ubuntu версии 18.04 и выше устанавливаем с помощью snap
:
sudo snap install pycharm-community --classic
См. https://snapcraft.io/install/pycharm-community/ubuntu
snap refresh
- уменьшим или увеличим объем потребляемой памяти: https://www.jetbrains.com/help/pycharm/increasing-memory-heap.html
- почистим старые кеши и настройки в путях программы: https://intellij-support.jetbrains.com/hc/en-us/articles/206544519-Directories-used-by-the-IDE-to-store-settings-caches-plugins-and-logs
Help -> Edit Custom VM Options
Добавить строку -Dperformance.watcher.unresponsive.interval.ms=0
Нужен включенный плагин: Task Management.
Settings -> Tools | Tasks | Servers
Настроим сервер Redmine:
- Убрать галочку Use HTTP Authentication
- URL:
- API token:
И задать другие нужные настройки.
Затем: Settings -> Tools | Tasks
См: https://www.jetbrains.com/help/pycharm/managing-tasks-and-context.html
- Service: Custom OpenAI Service
- Configuration:
- Preset template: OpenAI
-
API Key: может быть пустым для локального сервиса
-
URL: https://api.proxyapi.ru/openai/v1/chat/completions | http://192.168.2.222:11434/v1/chat/completions
-
Headers:
Authorization Bearer $CUSTOM_SERVICE_API_KEY X-LLM-Application-Tag codegpt Content-Type application/json
-
Body:
stream true max_tokens 1024 | 2048 temperature 0.1 messages $OPENAI_MESSAGES model gpt-3.5-turbo-0125 | gemma:7b-instruct-q5_1 | gemma:7b | mistral:7b-instruct-v0.2-q8_0
-