c6af9e284a
Tests / catch-all (windows-latest) (push) Has been cancelled
Tests / jvm (macos-latest) (push) Has been cancelled
Tests / jvm (ubuntu-latest) (push) Has been cancelled
Tests / jvm (windows-latest) (push) Has been cancelled
Tests / native (macos-latest) (push) Has been cancelled
Tests / native (ubuntu-latest) (push) Has been cancelled
Tests / native (windows-latest) (push) Has been cancelled
Tests / niche (ubuntu-latest) (push) Has been cancelled
Tests / other-langs (macos-latest) (push) Has been cancelled
Tests / other-langs (ubuntu-latest) (push) Has been cancelled
Tests / other-langs (windows-latest) (push) Has been cancelled
Tests / catch-all (macos-latest) (push) Has been cancelled
Tests / catch-all (ubuntu-latest) (push) Has been cancelled
Docs Build / build (push) Has been cancelled
Docs Build / deploy (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Build and Push Docker Images / build-and-push (push) Has been cancelled
77 lines
2.6 KiB
Python
77 lines
2.6 KiB
Python
"""
|
|
Demonstrates FindImplementationsTool on the Go test repository.
|
|
"""
|
|
|
|
import json
|
|
from pathlib import Path
|
|
from pprint import pprint
|
|
|
|
from serena.agent import SerenaAgent
|
|
from serena.config.serena_config import LanguageBackend, ProjectConfig, RegisteredProject, SerenaConfig
|
|
from serena.constants import REPO_ROOT
|
|
from serena.project import Project
|
|
from serena.tools import FindImplementationsTool
|
|
from solidlsp.ls_config import Language
|
|
|
|
SEPARATOR = "=" * 80
|
|
GO_TEST_REPO = Path(REPO_ROOT) / "test" / "resources" / "repos" / "go" / "test_repo"
|
|
|
|
|
|
def make_agent(project_root: Path, language: Language, project_name: str) -> SerenaAgent:
|
|
"""Create an LSP-backed Serena agent for a single explicit project."""
|
|
serena_config = SerenaConfig.from_config_file()
|
|
serena_config.web_dashboard = False
|
|
serena_config.language_backend = LanguageBackend.LSP
|
|
|
|
project = Project(
|
|
project_root=str(project_root),
|
|
project_config=ProjectConfig(
|
|
project_name=project_name,
|
|
languages=[language],
|
|
ignored_paths=[],
|
|
excluded_tools=[],
|
|
read_only=False,
|
|
ignore_all_files_in_gitignore=True,
|
|
initial_prompt="",
|
|
encoding="utf-8",
|
|
),
|
|
serena_config=serena_config,
|
|
)
|
|
serena_config.projects = [RegisteredProject.from_project_instance(project)]
|
|
return SerenaAgent(project=project_name, serena_config=serena_config)
|
|
|
|
|
|
def print_section(title: str) -> None:
|
|
"""Print a visibly separated section header."""
|
|
print(f"\n{SEPARATOR}")
|
|
print(title)
|
|
print(SEPARATOR)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
agent = make_agent(GO_TEST_REPO, Language.GO, "demo_go_test_repo")
|
|
|
|
try:
|
|
# letting the language server finish startup
|
|
agent.execute_task(lambda: None)
|
|
|
|
# running the implementation lookup
|
|
find_implementations_tool = agent.get_tool(FindImplementationsTool)
|
|
result = agent.execute_task(
|
|
lambda: find_implementations_tool.apply(
|
|
name_path="Greeter/FormatGreeting",
|
|
relative_path="main.go",
|
|
include_info=True,
|
|
)
|
|
)
|
|
|
|
print_section("Find Implementations Result")
|
|
implementations = json.loads(result)
|
|
pprint(implementations, width=200)
|
|
|
|
# validating the demonstrated result
|
|
assert any(implementation["name_path"] == "(ConsoleGreeter).FormatGreeting" for implementation in implementations), result
|
|
print("\nVerified implementation target: (ConsoleGreeter).FormatGreeting")
|
|
finally:
|
|
agent.shutdown()
|