Skip to content

Commit

Permalink
♻️ refactor client structure
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Nov 1, 2024
1 parent 7a61ca8 commit bac7283
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion myllm/handler/crawl4ai.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# from loguru import logger
# from openai import OpenAI

# from .client import AIClient
# from ._client import AIClient


# class Crawl4aiHandler(AIClient):
Expand Down
2 changes: 1 addition & 1 deletion myllm/handler/g4f.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from loguru import logger

from .client import AIClient
from ._client import AIClient


class G4fHandler(AIClient):
Expand Down
2 changes: 1 addition & 1 deletion myllm/handler/groq.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from groq import Groq

from .client import AIClient
from ._client import AIClient


class GroqHandler(AIClient):
Expand Down
2 changes: 1 addition & 1 deletion myllm/handler/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from loguru import logger
from openai import OpenAI

from .client import AIClient
from ._client import AIClient


class OpenaiHandler(AIClient):
Expand Down

0 comments on commit bac7283

Please sign in to comment.