answers_from_texts
Creates, updates, deletes, gets or lists an answers_from_texts resource.
Overview
| Name | answers_from_texts |
| Type | Resource |
| Id | azure.ai_language.answers_from_texts |
Fields
The following fields are returned by SELECT queries:
- get_answers_from_text
| Name | Datatype | Description |
|---|---|---|
answers | array | Represents the answer results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_answers_from_text | select | endpoint | Answers the specified question using the provided text in the body. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client Endpoint parameter. (default: ) |
SELECT examples
- get_answers_from_text
Answers the specified question using the provided text in the body.
SELECT
answers
FROM azure.ai_language.answers_from_texts
WHERE endpoint = '{{ endpoint }}' -- required
;