Skip to content

Commit

Permalink
Merge pull request #491 from PrefectHQ/static-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jlowin authored Jul 21, 2023
2 parents a15df10 + ca1f876 commit a72a8bf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/marvin/components/ai_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import inspect
import re
from typing import Callable, TypeVar
from typing_extensions import ParamSpec

from pydantic import BaseModel
from typing_extensions import ParamSpec

from marvin.engine.executors import OpenAIFunctionsExecutor
from marvin.engine.language_models.base import ChatLLM, chat_llm
Expand Down Expand Up @@ -210,7 +210,6 @@ def run(self, *args, **kwargs):
raise NotImplementedError()



def ai_fn(
fn: Callable[P, T] = None, instructions: str = None, model: ChatLLM = None
) -> Callable[P, T]:
Expand Down

0 comments on commit a72a8bf

Please sign in to comment.