Child Name Suggestion

This task suggests names for a child.

Input

This task generates names for a child.

[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.019.07.2023

API

The REST API allows you to call the tool with the same costs as when running the tool. Please generate an Personal access token before using the REST API.

Parameters

  • culture (Culture): The culture of the name.
  • country (Country): Country the name is usedfirst names of liked friends
  • names (First names of liked friends): First names of liked friendsfirst names of liked friendsfirst names of liked friends.
  • requirements (Requirements): Further requirements that should be applied.
  • gender (Gender): The gender of the child.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-ba835df8268fc301-child-name-suggestion/1.0.0?culture=South%20east%20asian%20Christian&country=Austria&names=Julia%20and%20Sarah&requirements=The%20name%20should%20be%20short&gender=female
  • Install the package with pip
    python3 -m pip install anysolve
  • Run in python3
    import os
    from anysolve import AnySolve
    anysolve_token = os.environ.get('ANYSOLVE_PERSONAL_ACCESS_TOKEN') # Resolve your personal access token here
    client = AnySolve(anysolve_token)
    res = client.run('u-ba835df8268fc301-child-name-suggestion','1.0.0', {'culture': 'South east asian Christian', 'country': 'Austria', 'names': 'Julia and Sarah', 'requirements': 'The name should be short', 'gender': 'female'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-ba835df8268fc301-child-name-suggestion','1.0.0', culture='South east asian Christian', country='Austria', names='Julia and Sarah', requirements='The name should be short', gender='female')