Skip to content

Commit 652d13a

Browse files
authored
Merge pull request #802 from PrefectHQ/async-utils
async first utils and expose sync versions
2 parents 89506a2 + 8b89a21 commit 652d13a

22 files changed

+635
-91
lines changed

docs/docs/text/classification.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,17 @@ You can pass parameters to the underlying API via the `model_kwargs` argument of
174174
1. **Choosing the right labels**: Opt for labels that are mutually exclusive and collectively exhaustive for your classification context. This ensures clarity and prevents overlaps in categorization.
175175
2. **Effective use of instructions**: Provide clear, concise, and contextually relevant instructions. This enhances the accuracy of the classification, especially in ambiguous or complex cases.
176176
3. **Iterative testing and refinement**: Continuously test and refine your classification criteria and instructions based on real-world feedback. This iterative process helps in fine-tuning the classification logic for better results.
177-
4. **Prefer `classify()` over `@classifier`**: `classify()` is more versatile and adaptable for a wide range of scenarios. It should be the primary tool for classification tasks in Marvin.
177+
4. **Prefer `classify()` over `@classifier`**: `classify()` is more versatile and adaptable for a wide range of scenarios. It should be the primary tool for classification tasks in Marvin.
178+
179+
## Async support
180+
181+
If you are using Marvin in an async environment, you can use `classify_async`:
182+
183+
```python
184+
result = await marvin.classify_async(
185+
"The app crashes when I try to upload a file.",
186+
labels=["bug", "feature request", "inquiry"]
187+
)
188+
189+
assert result == "bug"
190+
```

docs/docs/text/extraction.md

+13
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,16 @@ marvin.cast('Mass.', to=str, instructions="The state's abbreviation")
155155

156156
## Model parameters
157157
You can pass parameters to the underlying API via the `model_kwargs` argument of `extract`. These parameters are passed directly to the API, so you can use any supported parameter.
158+
159+
## Async support
160+
If you are using Marvin in an async environment, you can use `extract_async`:
161+
162+
```python
163+
result = await marvin.extract_async(
164+
"I drove from New York to California.",
165+
target=str,
166+
instructions="2-letter state codes",
167+
)
168+
169+
assert result == ["NY", "CA"]
170+
```

docs/docs/text/functions.md

+13
Original file line numberDiff line numberDiff line change
@@ -295,3 +295,16 @@ Running a function is quite simple: just call it like you would any other functi
295295

296296
## Model parameters
297297
You can pass parameters to the underlying API via the `model_kwargs` argument of `@fn`. These parameters are passed directly to the API, so you can use any supported parameter.
298+
299+
## Async support
300+
Async functions can be decorated just like regular functions. The result is still async and must be awaited.
301+
302+
```python
303+
@marvin.fn
304+
async def list_fruit(n: int) -> list[str]:
305+
"""
306+
Returns a list of `n` fruit.
307+
"""
308+
309+
await list_fruit(n=3)
310+
```

docs/docs/text/generation.md

+12
Original file line numberDiff line numberDiff line change
@@ -212,3 +212,15 @@ The first and second tabs both show high-quality, varied results. The third tab
212212
'Houston'
213213
]
214214
```
215+
216+
## Async support
217+
If you are using Marvin in an async environment, you can use `generate_async`:
218+
219+
```python
220+
cat_names = await marvin.generate_async(
221+
n=4,
222+
instructions="names for cats inspired by Chance the Rapper"
223+
)
224+
225+
# ['Chancey', 'Rappurr', 'Lyric', 'Chano']
226+
```

docs/docs/text/transformation.md

+9
Original file line numberDiff line numberDiff line change
@@ -115,3 +115,12 @@ Location('CHI')
115115

116116
## Model parameters
117117
You can pass parameters to the underlying API via the `model_kwargs` argument of `cast` or `@model`. These parameters are passed directly to the API, so you can use any supported parameter.
118+
119+
## Async support
120+
If you are using `marvin` in an async environment, you can use `cast_async`:
121+
122+
```python
123+
result = await marvin.cast_async("one", int)
124+
125+
assert result == 1
126+
```

docs/docs/vision/captioning.md

+10
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,13 @@ Marvin can use OpenAI's vision API to process images as inputs.
4545

4646
## Model parameters
4747
You can pass parameters to the underlying API via the `model_kwargs` argument of `caption`. These parameters are passed directly to the API, so you can use any supported parameter.
48+
49+
50+
51+
## Async support
52+
53+
If you are using Marvin in an async environment, you can use `caption_async`:
54+
55+
```python
56+
caption = await marvin.beta.caption_async(image=Path('/path/to/marvin.png'))
57+
```

docs/docs/vision/classification.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,18 @@ The `marvin.beta.classify` function is an enhanced version of `marvin.classify`
6060

6161

6262
## Model parameters
63-
You can pass parameters to the underlying API via the `model_kwargs` and `vision_model_kwargs` arguments of `classify`. These parameters are passed directly to the respective APIs, so you can use any supported parameter.
63+
You can pass parameters to the underlying API via the `model_kwargs` and `vision_model_kwargs` arguments of `classify`. These parameters are passed directly to the respective APIs, so you can use any supported parameter.
64+
65+
66+
## Async support
67+
68+
If you are using Marvin in an async environment, you can use `classify_async`:
69+
70+
```python
71+
result = await marvin.beta.classify_async(
72+
"The app crashes when I try to upload a file.",
73+
labels=["bug", "feature request", "inquiry"]
74+
)
75+
76+
assert result == "bug"
77+
```

docs/docs/vision/extraction.md

+14
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,17 @@ The `marvin.beta.extract` function is an enhanced version of `marvin.extract` th
5151

5252
## Model parameters
5353
You can pass parameters to the underlying API via the `model_kwargs` and `vision_model_kwargs` arguments of `extract`. These parameters are passed directly to the respective APIs, so you can use any supported parameter.
54+
55+
56+
## Async support
57+
If you are using Marvin in an async environment, you can use `extract_async`:
58+
59+
```python
60+
result = await marvin.beta.extract_async(
61+
"I drove from New York to California.",
62+
target=str,
63+
instructions="2-letter state codes",
64+
)
65+
66+
assert result == ["NY", "CA"]
67+
```

docs/docs/vision/transformation.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,13 @@ If the target type isn't self-documenting, or you want to provide additional gui
115115
```
116116

117117
## Model parameters
118-
You can pass parameters to the underlying API via the `model_kwargs` and `vision_model_kwargs` arguments of `cast`. These parameters are passed directly to the respective APIs, so you can use any supported parameter.
118+
You can pass parameters to the underlying API via the `model_kwargs` and `vision_model_kwargs` arguments of `cast`. These parameters are passed directly to the respective APIs, so you can use any supported parameter.
119+
120+
## Async support
121+
If you are using `marvin` in an async environment, you can use `cast_async`:
122+
123+
```python
124+
result = await marvin.beta.cast_async("one", int)
125+
126+
assert result == 1
127+
```

src/marvin/__init__.py

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
from .settings import settings
22

3-
from .ai.text import fn, cast, extract, classify, classifier, generate, model, Model
3+
from .ai.text import (
4+
fn,
5+
cast,
6+
cast_async,
7+
extract,
8+
extract_async,
9+
classify,
10+
classify_async,
11+
classifier,
12+
generate,
13+
generate_async,
14+
model,
15+
Model,
16+
)
417
from .ai.images import paint, image
518
from .ai.audio import speak, speech
619
from . import beta
@@ -15,11 +28,15 @@
1528
# --- text ---
1629
"Model",
1730
"cast",
31+
"cast_async",
1832
"classify",
33+
"classify_async",
1934
"classifier",
2035
"extract",
36+
"extract_async",
2137
"fn",
2238
"generate",
39+
"generate_async",
2340
"model",
2441
# --- images ---
2542
"image",

0 commit comments

Comments
 (0)