-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.pr_agent.toml
42 lines (30 loc) · 1.25 KB
/
.pr_agent.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[config]
enable_custom_labels = true
[custom_labels."ai-actions"]
description = "pr_agent: Label for PRs involving AI Actions that use LLMs and OpenAI models."
[custom_labels."ai-actions-beta"]
description = "pr_agent: Label for PRs involving beta AI Actions that use LLMs and OpenAI models - these will have '(Beta)' either in the name of the action or in the name of the extension they belong to."
[pr_description]
use_description_markers = true
template = """
# PR Title
## Summary
pr_agent:summary
## Changes Walkthrough
pr_agent:walkthrough
{% if 'ai-actions' in labels %}
## AI Evaluation (Required for AI Actions)
To ensure reliability and performance of AI-powered actions intended for production, please provide the following evaluation details:
### **LangSmith Experiment**
- **Experiment Link**: [Paste the LangSmith experiment URL here]
Or summarize the experiment details below:
### **Dataset Overview**
- **Number of examples:**
- **Input & Output Details:** (e.g., text-based, structured data, LLM outputs)
### **Evaluation Metrics**
- **Metrics Used:** (e.g., accuracy, precision/recall, F1-score)
- **Performance on These Metrics:** (include numerical results)
### **Cost Estimate**
- **Estimated cost per single run:** $
{% endif %}
"""