This website requires JavaScript.
Explore
Help
Register
Sign In
ydy0615
/
llm-in-text
Watch
1
Star
0
Fork
0
You've already forked llm-in-text
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
65d4a57d3340b672c23ed90ae9a4b9de35dfdf13
llm-in-text
/
backend
/
__pycache__
/
prompt.cpython-313.pyc
26 lines
1.5 KiB
Plaintext
Raw
Normal View
History
Unescape
Escape
feat: switch from OpenAI API to native Ollama Python client This commit refactors the LLM integration to use Ollama's native Python client instead of OpenAI-compatible API, while fixing critical template syntax errors and improving project structure. Key changes: - Replace openai package with ollama package in backend requirements - Rewrite llm.py to use ollama.AsyncClient for direct Ollama API calls - Update main.py to use non-streaming Ollama responses with thinking extraction - Fix template syntax error in MilkdownEditor.vue (GhostTextOverlay component tags) - Fix string截取错误 by using slice() instead of substring() - Add src/utils/api.js and src/utils/config.js for shared configuration - Add CORS middleware to FastAPI backend - Update prompt.py with clearer instructions for continuation generation - Add comprehensive README.md documentation BREAKING CHANGE: Environment variables OLLAMA_BASE_URL changed to OLLAMA_HOST (remove /v1/ suffix)
2026-02-07 08:53:37 +08:00
<EFBFBD>
refactor(editor): migrate to ProseMirror Mark-based ghost text system - Replace overlay-based GhostTextOverlay.vue with ProseMirror Mark system - Add AI toggle button with enable/disable functionality - Implement new copilotPlugin.ts using copilotGhostMark for inline suggestions - Fix cursor position offset in prompt.py by moving first suffix char to prefix - Improve API error handling with abort signal support and debug logging - Update model configuration from gpt-oss:120b to gpt-oss:20b - Add button tooltips and improve editor styling - Remove deprecated inlineSuggestionPlugin.ts - Update README with new architecture diagram and feature documentation
2026-02-13 09:24:50 +08:00