You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AI21 Studio's Task-Specific Models offer a range of powerful tools. These models have been specifically designed for their respective tasks and provide high-quality results while optimizing efficiency.
164
+
The full documentation and guides can be found [here](https://docs.ai21.com/docs/task-specific).
165
+
166
+
### Contextual Answers
167
+
168
+
The `answer` API allows you to access our high-quality question answering model.
169
+
170
+
```python
171
+
from ai21 import AI21Client
172
+
173
+
client = AI21Client()
174
+
response = client.answer.create(
175
+
context="This is a text is for testing purposes",
176
+
question="Question about context",
177
+
)
178
+
```
179
+
180
+
A detailed explanation on Contextual Answers, can be found [here](https://docs.ai21.com/docs/contextual-answers-api)
Explore our examples to see our models in action! We've put together a variety of use cases and demonstrations to showcase the capabilities and functionality of our models.
355
+
356
+
### [Check out the Examples](examples/)
357
+
358
+
Feel free to dive in, experiment, and adapt these examples to suit your needs. We believe they'll help you get up and running quickly.
0 commit comments