neptyne.ai

def research(query, *cells):

Let the AI do research for you. Returns one value with a source.

query: the research topic cells: optional what the research refers to

Example: =ai.research("CEO of this company", A3) -- find the CEO of the company mentioned in A3

def value(query, *cells):

Ask the AI for a value. No source, so might not be accurate.

query: the research topic cells: optional what the research refers to

Example: =ai.value("The population of this city", A3) -- find the population of the city in A3. Returns a guess for smaller places or might just halucinate. Use ai.research for something backed by a source.

def table( query: str, headers: list[str] | None = None, count: int | None = None):

Returns a table of items matching the query, optionally limited to count.

Example: =ai.table("countries in the EU", ["name", "capital", "population", "gpd"], 27)

def sources(*cells):

Formats a list of cells to use as source for a research call.

def list(query, count=None):

Returns a list of items matching the query, optionally limited to count.

Example: =ai.list("countries in the EU", 27)