tests, model

This commit is contained in:
Evgeny Vakhteev
2023-04-17 20:51:27 -07:00
parent 193c80849f
commit 9fd80a8660
5 changed files with 290 additions and 8 deletions

View File

@@ -1,5 +1,4 @@
"""Handles loading of plugins."""
import zipfile
from typing import Any, Dict, List, Optional, Tuple, TypedDict
from typing import TypeVar
@@ -11,7 +10,7 @@ class Message(TypedDict):
content: str
class BaseOpenAIPluginClient():
class BaseOpenAIPlugin:
"""
This is a template for Auto-GPT plugins.
"""