instruction stringlengths 813 1.68k | response stringlengths 74 238 |
|---|---|
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I need to find all transactions made after January 1st, 2023.
Available functions:
search:
description: Help the user find informatio... | {
"function": "search",
"params": {
"search_terms": ["transactions"],
"date_range": {
"begin": "2023-01-01"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: Can you give me the average sales per month for the last year?
Available functions:
sales_report:
description: Generate reports relat... | function: sales_report
params:
period: "monthly"
duration: "last_year" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Show me the count of unique customers who purchased products in December 2022.
Available functions:
customer_analysis:
description: P... | {
"function": "customer_analysis",
"params": {
"action": "unique_count",
"filters": {
"date_range": {
"begin": "2022-12-01",
"end": "2022-12-31"
}
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Retrieve all records created after January 1st, 2022 that contain the keyword 'urgent'.
Available functions:
search:
description: Hel... | {
"function": "search",
"params": {
"search_terms": ["urgent"],
"date_range": {
"begin": "2022-01-01"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: I need to summarize the sales data for each product category in the last quarter.
Available functions:
csv_analytics:
description: Th... | function: sales_summary
params:
period: "quarterly"
group_by: "category" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Find all users who signed up in March 2023 and have not made any purchases yet.
Available functions:
user_search:
description: Search... | {
"function": "user_search",
"params": {
"signup_date": "2023-03",
"has_purchased": false
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: I want to analyze the trends in customer feedback received in the past year.
Available functions:
feedback_analysis:
description: Ana... | function: feedback_analysis
params:
timeframe: "past year"
metrics: ["sentiment", "frequency"] |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Show me the total revenue generated from online sales last month.
Available functions:
sales_report:
description: Generate detailed r... | {
"function": "revenue_analysis",
"params": {
"source": "online",
"timeframe": "last month"
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: Count how many support tickets were resolved in the last week.
Available functions:
ticket_analysis:
description: Analyze support tic... | function: ticket_analysis
params:
timeframe: "last week"
status: "resolved" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I need to find all records created after January 1st, 2022 that mention 'AI'.
Available functions:
search:
description: Help the user... | {
"function": "search",
"params": {
"search_terms": ["AI"],
"date_range": {
"begin": "2022-01-01"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: Generate a summary report for sales data from Q1 2023.
Available functions:
report_generation:
description: Generates reports based o... | function: report_generation
params:
report_type: "summary"
include_charts: true |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Analyze customer feedback collected over the last month.
Available functions:
sentiment_analysis:
description: Analyzes text data to ... | {
"function": "sentiment_analysis",
"params": {
"text_data": "customer feedback collected over the last month",
"language": "en"
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: Count how many unique products were sold in the last year.
Available functions:
csv_analytics:
description: This tool is useful in pe... | function: csv_analytics
params:
action: "count"
filters:
column: "product_id" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Filter out all transactions made before March 2023.
Available functions:
search:
description: Help the user find information by conve... | {
"function": "search",
"params": {
"date_range": {
"begin": "2023-03-01"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I need to find all documents related to the project budget between January 2022 and March 2022.
Available functions:
search:
descript... | {
"function": "search",
"params": {
"search_terms": ["project budget"],
"alternatives": ["budget", "financial plan"],
"date_range": {
"begin": "2022-01-01",
"end": "2022-03-31"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: I would like to see how many times each product was sold last month.
Available functions:
csv_analytics:
description: This tool is us... | function: csv_analytics
params:
action: "grouped_count"
filters:
column: "product_id" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Can you summarize the feedback received from our recent customer survey?
Available functions:
sentiment_analysis:
description: Analyz... | {
"function": "sentiment_analysis",
"params": {
"feedback_text": "[Insert Customer Feedback Here]",
"summary_length": "short"
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: I need to filter out all records where the status is 'inactive'.
Available functions:
search:
description: Help the user find informa... | function: csv_analytics
params:
action: "filter"
filters:
column: "status"
value: "inactive" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Generate a detailed report of sales performance over the last quarter.
Available functions:
report_generation:
description: Generate ... | {
"function": "report_generation",
"params": {
"report_type": "sales performance",
"time_period": "last quarter"
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: I want to visualize the trends in website traffic over the past year.
Available functions:
data_visualization:
description: Create vi... | function: data_visualization
params:
chart_type: "line"
data_source: "website traffic data" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I need to find all documents related to the project deadline for next month.
Available functions:
search:
description: Help the user ... | {
"function": "search",
"params": {
"search_terms": ["project", "deadline", "next month"],
"alternatives": ["due date", "submission date"],
"date_range": {
"begin": "2023-11-01",
"end": "2023-11-30"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: Generate a summary report of sales data for the last quarter.
Available functions:
sales_analytics:
description: Perform various anal... | function: sales_analytics
params:
action: "summary"
time_period: "last_quarter" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I want to filter customer feedback to only show negative comments.
Available functions:
feedback_analysis:
description: Analyze custo... | {
"function": "feedback_analysis",
"params": {
"sentiment": "negative",
"category": null
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: Can you provide me with a count of users who signed up last week?
Available functions:
user_management:
description: Manage user acco... | function: user_management
params:
action: "count_users"
date_range:
begin: "2023-10-09"
end: "2023-10-15" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I would like to extract the main topics discussed in the latest meeting notes.
Available functions:
document_analysis:
description: A... | {
"function": "document_analysis",
"params": {
"action": "extract_keywords",
"target_section": "notes"
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: I need to generate a chart showing monthly expenses over the past year.
Available functions:
chart_generation:
description: Create vi... | function: chart_generation
params:
chart_type: "line"
data_source: "monthly_expenses_last_year" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I need to find all documents related to project X that were created last month.
Available functions:
search:
description: Help the us... | {
"function": "search",
"params": {
"search_terms": ["project X"],
"date_range": {
"begin": "2023-09-01",
"end": "2023-09-30"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: I want to analyze sales data from the last quarter and see how many units were sold per product category.
Available functions:
report_g... | function: csv_analytics
params:
action: "grouped_count"
filters:
column: "product_category" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Generate a summary report of customer feedback received over the past year.
Available functions:
report_generation:
description: Gene... | {
"function": "report_generation",
"params": {
"title": "Customer Feedback Summary",
"content": "Summary of customer feedback collected over the past year.",
"format": "PDF"
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: I would like to count how many times each status appears in the task management system.
Available functions:
search:
description: Hel... | function: csv_analytics
params:
action: "count"
filters:
column: "status" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: Filter the employee records to show only those hired after January 1st, 2022.
Available functions:
search:
description: Help the user... | {
"function": "csv_analytics",
"params": {
"action": "filter",
"filters": {
"column": "hire_date",
"value": "2022-01-01"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I need to find all records created after January 1st, 2022 that mention 'project X'.
Available functions:
search:
description: Help t... | {
"function": "search",
"params": {
"search_terms": ["project X"],
"date_range": {
"begin": "2022-01-01"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: Can you give me a breakdown of sales per region from last quarter?
Available functions:
csv_analytics:
description: This tool is usef... | function: csv_analytics
params:
action: "grouped_count"
filters:
column: "region" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I would like to see a list of users who have not logged in since last year.
Available functions:
user_management:
description: Manage... | {
"function": "user_management",
"params": {
"action": "list_inactive_users",
"filters": {
"last_login_date": "2022-01-01"
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: Show me all transactions over $1000 made in March 2023.
Available functions:
transaction_analysis:
description: Analyze transaction d... | function: transaction_analysis
params:
action: "high_value_transactions"
filters:
amount: 1000
date_range:
start: "2023-03-01"
end: "2023-03-31" |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in JSON format.
Input: I want to analyze customer feedback collected in the last month.
Available functions:
feedback_analysis:
description: Analyze custome... | {
"function": "feedback_analysis",
"params": {
"action": "sentiment_analysis",
"filters": {
"date_range": {
"start": "2023-09-01",
"end": "2023-09-30"
}
}
}
} |
Please select an appropriate function and parameters to use from the list of available functions below, based on the provided user input. Provide your response in YAML format.
Input: Get me the total number of products sold in each category last month.
Available functions:
product_sales:
description: Analyze produc... | function: product_sales
params:
action: "total_sold_per_category"
filters:
date_range:
start: "2023-08-01"
end: "2023-08-31" |
README.md exists but content is empty.
- Downloads last month
- 5