dd126afa6c
Co-authored-by: Lifei Zhou <lifei@squareup.com> Co-authored-by: Mic Neale <micn@tbd.email> Co-authored-by: Lily Delalande <ldelalande@squareup.com> Co-authored-by: Bradley Axen <baxen@squareup.com> Co-authored-by: Andy Lane <alane@squareup.com> Co-authored-by: Elena Zherdeva <ezherdeva@squareup.com> Co-authored-by: Zaki Ali <zaki@squareup.com> Co-authored-by: Salman Mohammed <smohammed@squareup.com>
12 lines
346 B
Python
12 lines
346 B
Python
from exchange import Message
|
|
|
|
from goose.toolkit.base import Toolkit
|
|
|
|
|
|
class Github(Toolkit):
|
|
"""Provides an additional prompt on how to interact with Github"""
|
|
|
|
def system(self) -> str:
|
|
"""Retrieve detailed configuration and procedural guidelines for GitHub operations"""
|
|
return Message.load("prompts/github.jinja").text
|