Merge pull request #545 from mo2g/fixbug/prompts_generate_skill

fix prompts
This commit is contained in:
geekan 2023-12-12 20:46:22 +08:00 committed by GitHub
commit 590544bc38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@
from typing import Optional
from abc import ABC
from metagpt.llm import LLM # Large language model, similar to GPT
n
class Action(ABC):
def __init__(self, name='', context=None, llm: LLM = LLM()):
self.name = name