Skip to content

Commit

Permalink
support existing projects
Browse files Browse the repository at this point in the history
  • Loading branch information
senko committed May 29, 2024
1 parent 9f225ba commit 38d9fbb
Show file tree
Hide file tree
Showing 7 changed files with 155 additions and 2 deletions.
85 changes: 85 additions & 0 deletions core/agents/importer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
from uuid import uuid4

from core.agents.base import BaseAgent
from core.agents.convo import AgentConvo
from core.agents.response import AgentResponse, ResponseType
from core.db.models import Complexity
from core.llm.parser import JSONParser
from core.log import get_logger
from core.templates.example_project import (
EXAMPLE_PROJECT_DESCRIPTION,
)

# If the project description is less than this, perform an analysis using LLM
ANALYZE_THRESHOLD = 1500
# URL to the wiki page with tips on how to write a good project description
INITIAL_PROJECT_HOWTO_URL = (
"https://github.com/Pythagora-io/gpt-pilot/wiki/How-to-write-a-good-initial-project-description"
)
SPEC_STEP_NAME = "Create specification"

log = get_logger(__name__)


class Importer(BaseAgent):
agent_type = "importer"
display_name = "Project Analyist"

async def run(self) -> AgentResponse:
if self.prev_response and self.prev_response.type == ResponseType.IMPORT_PROJECT:
# Called by SpecWriter to start the import process
await self.start_import_process()
return AgentResponse.describe_files(self)

await self.analyze_project()
return AgentResponse.done(self)

async def start_import_process(self):
# TODO: Send a signal to the UI to copy the project files to workspace
project_root = self.state_manager.get_full_project_root()

await self.ask_question(
f"Please copy your project files to {project_root} and press Continue",
allow_empty=False,
buttons={
"continue": "Continue",
},
buttons_only=True,
default="continue",
)

imported_files, _ = await self.state_manager.import_files()
await self.state_manager.commit()

async def analyze_project(self):
llm = self.get_llm()

self.send_message("Inspecting most important project files ...")

convo = AgentConvo(self).template("get_entrypoints")
llm_response = await llm(convo, parser=JSONParser())
relevant_files = [f for f in self.current_state.files if f.path in llm_response]

self.send_message("Analyzing project ...")

convo = AgentConvo(self).template(
"analyze_project", relevant_files=relevant_files, example_spec=EXAMPLE_PROJECT_DESCRIPTION
)
llm_response = await llm(convo)

spec = self.current_state.specification.clone()
spec.description = llm_response
self.next_state.specification = spec
self.next_state.epics = [
{
"id": uuid4().hex,
"name": "Import project",
"description": "Import an existing project into Pythagora",
"tasks": [],
"completed": True,
"test_instructions": None,
"source": "app",
"summary": None,
"complexity": Complexity.HARD if len(self.current_state.files) > 5 else Complexity.SIMPLE,
}
]
11 changes: 9 additions & 2 deletions core/agents/orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from core.agents.error_handler import ErrorHandler
from core.agents.executor import Executor
from core.agents.human_input import HumanInput
from core.agents.importer import Importer
from core.agents.problem_solver import ProblemSolver
from core.agents.response import AgentResponse, ResponseType
from core.agents.spec_writer import SpecWriter
Expand Down Expand Up @@ -167,10 +168,16 @@ def create_agent(self, prev_response: Optional[AgentResponse]) -> BaseAgent:
return HumanInput(self.state_manager, self.ui, prev_response=prev_response)
if prev_response.type == ResponseType.TASK_REVIEW_FEEDBACK:
return Developer(self.state_manager, self.ui, prev_response=prev_response)
if prev_response.type == ResponseType.IMPORT_PROJECT:
return Importer(self.state_manager, self.ui, prev_response=prev_response)

if not state.specification.description:
# Ask the Spec Writer to refine and save the project specification
return SpecWriter(self.state_manager, self.ui)
if state.files:
# The project has been imported, but not analyzed yet
return Importer(self.state_manager, self.ui)
else:
# New project: ask the Spec Writer to refine and save the project specification
return SpecWriter(self.state_manager, self.ui)
elif not state.specification.architecture:
# Ask the Architect to design the project architecture and determine dependencies
return Architect(self.state_manager, self.ui, process_manager=self.process_manager)
Expand Down
7 changes: 7 additions & 0 deletions core/agents/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ class ResponseType(str, Enum):
TASK_REVIEW_FEEDBACK = "task-review-feedback"
"""Agent is providing feedback on the entire task."""

IMPORT_PROJECT = "import-project"
"""User wants to import an existing project."""


class AgentResponse:
type: ResponseType = ResponseType.DONE
Expand Down Expand Up @@ -130,3 +133,7 @@ def task_review_feedback(agent: "BaseAgent", feedback: str) -> "AgentResponse":
"feedback": feedback,
},
)

@staticmethod
def import_project(agent: "BaseAgent") -> "AgentResponse":
return AgentResponse(type=ResponseType.IMPORT_PROJECT, agent=agent)
4 changes: 4 additions & 0 deletions core/agents/spec_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,15 @@ async def run(self) -> AgentResponse:
# FIXME: must be lowercase becase VSCode doesn't recognize it otherwise. Needs a fix in the extension
"continue": "continue",
"example": "Start an example project",
"import": "Import an existing project",
},
)
if response.cancelled:
return AgentResponse.error(self, "No project description")

if response.button == "import":
return AgentResponse.import_project(self)

if response.button == "example":
await self.send_message("Starting example project with description:")
await self.send_message(EXAMPLE_PROJECT_DESCRIPTION)
Expand Down
1 change: 1 addition & 0 deletions core/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"node_modules",
"package-lock.json",
"venv",
".venv",
"dist",
"build",
"target",
Expand Down
28 changes: 28 additions & 0 deletions core/prompts/importer/analyze_project.prompt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
You're given an existing project you need to analyze and continue developing. To do this, you'll need to determine the project architecture, technologies used (platform, libraries, etc) and reverse-engineer the technical and functional spec.

Here is the list of all the files in the project:

{% for file in state.files %}
* `{{ file.path }}` - {{ file.meta.get("description")}}
{% endfor %}

Here's the full content of interesting files that may help you to determine the specification:

{% for file in state.files %}
**`{{ file.path }}`**:
```
{{ file.content.content }}
```

{% endfor %}

Based on this information, please provide detailed specification for the project. Here is an example specification format:

---START_OF_EXAMPLE_SPEC---
{{ example_spec }}
---END_OF_EXAMPLE_SPEC---

**IMPORTANT**: In the specification, you must include the following sections:
* **Project Description**: A detailed description of what the project is about.
* **Features**: A list of features that the project has implemented. Each feature should be described in detail.
* **Technical Specification**: Detailed description of how the project works, including any important technical details.
21 changes: 21 additions & 0 deletions core/prompts/importer/get_entrypoints.prompt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
You're given an existing project you need to analyze and continue developing. To do this, you'll need to determine the project architecture, technologies used (platform, libraries, etc) and reverse-engineer the technical and functional spec.

As a first step, you have to identify which of the listed files to examine so you can determine this. After you identify the files, you'll be given full access to their contents so you can determine the project information.

Here is the list of all the files in the project:

{% for file in state.files %}
* `{{ file.path }}` - {{ file.meta.get("description")}}
{% endfor %}

Based on this information, list the files (full path, as shown in the list) you would examine to determine the project architecture, technologies and specification. Output the list in JSON format like in the following example:

```json
{
"files": [
"README.md",
"pyproject.toml",
"settings/settings.py"
]
}
```

0 comments on commit 38d9fbb

Please sign in to comment.