Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Language Server Protocol client for code intelligence
pip install praisonaiagents
from praisonaiagents.lsp import LSPClient client = LSPClient(language="python") client.connect() # Get completions completions = client.complete(file_path, position)
from praisonaiagents.lsp import LSPClient client = LSPClient( language="python", workspace_dir="./project" )
connect()
complete(path, pos)
hover(path, pos)
definition(path, pos)
references(path, pos)
from praisonaiagents.lsp import LSPConfig config = LSPConfig( language="python", server_path="/usr/bin/pylsp" )