top | item 35377890

(no title)

nate_nowack | 2 years ago

interesting! I hadn't seen that before

ai_fn is just a specific way to use Marvin's Bot abstraction, which is one of the few abstractions Marvin offers

but a couple differences I notice off the bat between ai_fn and com2fun:

- marvin uses pydantic for parsing LLM to result types

- you can pass plugins/personality/instructions to the underlying bot via the @ai_fn decorator kwargs

- (unless I'm missing a dataclass version of this in com2fun) marvin can parse output into arbitrary pydantic types like this example https://github.com/PrefectHQ/marvin/issues/106#issuecomment-...

discuss

order

leobg|2 years ago

The example in the last link you posted is misleading. GPT does not actually crawl the URL. It hallucinates the answer based on the words in the URL itself. Even though it then casts that hallucinated answer neatly into a Pydantic type. Try it with a URL that does not actually exist. Or a pastebin whose link is just some random hash.

The first rule is not to fool yourself. And you are the easiest person to fool. —Richard Feynman about ChatGPT ;-)