Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Teacher-AI
/
Version1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Version1
/
agents
/
base_agent.py
Prerit018
Upload 26 files
6bc3db2
verified
7 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
200 Bytes
class
BaseAgent
:
def
__init__
(
self, name
):
self.name = name
def
process
(
self, *args, **kwargs
):
raise
NotImplementedError(
"Each agent must implement the process method."
)