Skip to content

Commit

Permalink
Merge branch 'master' into groq
Browse files Browse the repository at this point in the history
  • Loading branch information
Pwuts committed May 7, 2024
2 parents 02c8194 + 08c32a7 commit d5a70c5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions autogpts/autogpt/scripts/git_log_to_release_notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

from autogpt.core.resource.model_providers import ChatMessage, MultiProvider
from autogpt.core.resource.model_providers.anthropic import AnthropicModelName
from autogpt.core.resource.model_providers.openai import OpenAIModelName
from autogpt.core.runner.client_lib.utils import coroutine


Expand Down Expand Up @@ -117,7 +116,7 @@ async def generate_release_notes(repo_path: Optional[Path] = None):
* Frontend -> `frontend`
See also the [README](/#readme).
""".lstrip()
""".lstrip() # noqa


SYSTEM_PROMPT = f"""
Expand All @@ -129,7 +128,7 @@ async def generate_release_notes(repo_path: Optional[Path] = None):
---------------------------------------------------------------------------
NOTE: These example release notes are not related to the git log that you should write release notes for!
Do not mention the changes in the example when writing your release notes!
""".lstrip()
""".lstrip() # noqa

if __name__ == "__main__":
import dotenv
Expand Down

0 comments on commit d5a70c5

Please sign in to comment.