mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-13 03:04:23 +01:00
* Add categories to command registry * Fix tests * Clean up prompt generation * Rename Performance Evaluations to Best Practices * Move specification of response format from system prompt to Agent.construct_base_prompt * Clean up PromptGenerator class * Add debug logging to AIConfig autogeneration * Clarify prompting and add support for multiple thought processes to Agent * WIP: PlanningAgent * Disable message history by default on BaseAgent * Add CommandOutput and ThoughtProcessOutput type aliases * Fix interrupts in main.py * Use custom exceptions and clean up exception/error handling * Remove duplicate agent_history.py * Update PlanningAgent from upstream * WIP: Support for dynamic in-prompt context * WIP: response formats for PlanningAgent three-stage cycle * Remove browsing overlay & separate browsing from extraction code * Fix human feedback * Fix tests * Include history in Agent prompt generation * Code improvements in agent.py * Add ask_user command and revise system prompt
58 lines
1.6 KiB
Python
58 lines
1.6 KiB
Python
"""Commands to perform Git operations"""
|
|
|
|
COMMAND_CATEGORY = "git_operations"
|
|
COMMAND_CATEGORY_TITLE = "Git Operations"
|
|
|
|
from git.repo import Repo
|
|
|
|
from autogpt.agents.agent import Agent
|
|
from autogpt.agents.utils.exceptions import CommandExecutionError
|
|
from autogpt.command_decorator import command
|
|
from autogpt.url_utils.validators import validate_url
|
|
|
|
from .decorators import sanitize_path_arg
|
|
|
|
|
|
@command(
|
|
"clone_repository",
|
|
"Clones a Repository",
|
|
{
|
|
"url": {
|
|
"type": "string",
|
|
"description": "The URL of the repository to clone",
|
|
"required": True,
|
|
},
|
|
"clone_path": {
|
|
"type": "string",
|
|
"description": "The path to clone the repository to",
|
|
"required": True,
|
|
},
|
|
},
|
|
lambda config: bool(config.github_username and config.github_api_key),
|
|
"Configure github_username and github_api_key.",
|
|
)
|
|
@sanitize_path_arg("clone_path")
|
|
@validate_url
|
|
def clone_repository(url: str, clone_path: str, agent: Agent) -> str:
|
|
"""Clone a GitHub repository locally.
|
|
|
|
Args:
|
|
url (str): The URL of the repository to clone.
|
|
clone_path (str): The path to clone the repository to.
|
|
|
|
Returns:
|
|
str: The result of the clone operation.
|
|
"""
|
|
split_url = url.split("//")
|
|
auth_repo_url = (
|
|
f"//{agent.config.github_username}:{agent.config.github_api_key}@".join(
|
|
split_url
|
|
)
|
|
)
|
|
try:
|
|
Repo.clone_from(url=auth_repo_url, to_path=clone_path)
|
|
except Exception as e:
|
|
raise CommandExecutionError(f"Could not clone repo: {e}")
|
|
|
|
return f"""Cloned {url} to {clone_path}"""
|