Skip to content

Commit

Permalink
Removed unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
no-dice-io committed Dec 27, 2024
1 parent 5d7fc55 commit 2854551
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion dspy/retrieve/bing_rm/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from typing import (
Optional
, List
, Coroutine
, Dict
)
import logging
Expand Down
2 changes: 1 addition & 1 deletion dspy/retrieve/bing_rm/retriever.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from dspy.retrieve.bing_rm.base import BingClient
import dspy
from pydantic import BaseModel, Field
from typing import Optional, List
from typing import Optional

class BingSource(BaseModel):
headline: Optional[str] = Field(None, description="The headline of the passage")
Expand Down

0 comments on commit 2854551

Please sign in to comment.