create_app_project

toloka.async_client.client.AsyncTolokaClient.create_app_project | Source code

async create_app_project(self, app_project: AppProject)

Creates an App project in Toloka.

Parameters description

ParametersTypeDescription
app_projectAppProject

The project with parameters.

  • Returns:

    Created App project with updated parameters.

  • Return type:

    AppProject

Examples:

app_project = toloka.client.AppProject(
app_id='9lZaMl363jahzra1rrYq',
name='Example project (product relevance)',
parameters={
"default_language": "en",
"name": "Product relevance project",
"instruction_classes": [
{
"description": "The product is relevant to the query.",
"label": "Relevant",
"value": "relevant"
},
{
"description": "The product is not completely relevant to the query.",
"label": "Irrelevant",
"value": "irrelevant"
}
],
"instruction_examples": [
{
"description": "The product exactly matches the query.",
"label": "relevant",
"query": "some search query",
"screenshot_url": "https://example.com/1"
},
{
"description": "The product shape matches but the product color does not.",
"label": "irrelevant",
"query": "other search query",
"screenshot_url": "https://example.com/2"
}
]
}
)
app_project = toloka_client.create_app_project(app_project)
print(app_project.created, app_project.status)

Last updated: August 28, 2023

Toloka-Kit
OverviewGetting API keyQuick start
Recipes
Reference
toloka.client
toloka.async_client
toloka.autoquality [autoquality]
toloka.metrics
toloka.streaming