Skip to content

Commit

Permalink
feat: add agents files (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuffin authored Oct 16, 2024
1 parent 9015d9b commit 0838ce0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
Empty file added llmsearch/agents/__init__.py
Empty file.
2 changes: 2 additions & 0 deletions llmsearch/agents/base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class BaseAgent:
pass
5 changes: 5 additions & 0 deletions llmsearch/agents/general.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from .base import BaseAgent


class GeneralAgent(BaseAgent):
pass
8 changes: 8 additions & 0 deletions llmsearch/agents/search.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from .base import BaseAgent


class SearchAgent(BaseAgent):
"""Can use simple words or sentences for search, first determine the type of search language, such as text, image, audio, etc., and then search."""

"""可以用简单的词或句子进行搜索,首先会判断搜索语对应的类型,如文本、图片、音频等,然后再进行搜索。"""
pass

0 comments on commit 0838ce0

Please sign in to comment.