Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ctrf-io/ai-test-reporter
Generate a test report with AI summaries from various models including OpenAI, Claude
https://github.com/ctrf-io/ai-test-reporter
Last synced: about 2 months ago
JSON representation
Generate a test report with AI summaries from various models including OpenAI, Claude
- Host: GitHub
- URL: https://github.com/ctrf-io/ai-test-reporter
- Owner: ctrf-io
- License: mit
- Created: 2024-09-04T00:05:56.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T20:28:40.000Z (4 months ago)
- Last Synced: 2024-09-10T01:16:54.654Z (4 months ago)
- Language: TypeScript
- Size: 640 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# AI Test Reporter
Generate AI test summaries using leading AI models from OpenAI and Anthropic Claude. Integrate with Developer tooling to provide AI summaries where you need them.
## **⭐⭐ If you find this project useful, consider giving it a GitHub star ⭐⭐**
## You can help us grow
Support our mission to enhance test reporting with AI summaries by:
- **⭐ Starring this repository to show your support. ⭐**
- **🙌 Following our [GitHub page here](https://github.com/ctrf-io) 🙌**Thank you! Your support is invaluable to us! 💙
## Key Features
- Generate human-readable AI summaries for failed tests
- Use your own AI model, with support for OpenAI, Anthropic Claude and more soon
- Compatible with all major testing frameworks through standardized CTRF reports.
- Integrates AI with various CI/CD and developer tools.
- Customizable parameters like system prompt, model, temperature, max tokens, and more.
- Log AI generated summaries to the console.![stdout](assets/stdout.png)
## Usage
Generate a CTRF report using your testing framework. [CTRF reporters](https://github.com/orgs/ctrf-io/repositories) are available for most testing frameworks and easy to install.
**No CTRF reporter? No problem!**
Use [junit-to-ctrf](https://github.com/ctrf-io/junit-to-ctrf) to convert a JUnit report to CTRF
## OpenAI
Run the following command:
```bash
npx ai-ctrf openai
```An AI summary for each failed test will be added to your test report.
The package interacts with the OpenAI API, you must set `OPENAI_API_KEY` environment variable.
You will be responsible for any charges incurred from using your selected OpenAI model. Make sure you are aware of the associated cost.
A message is sent to OpenAI for each failed test.
### Options
`--model`: OpenAI model to use (default: gpt-3.5-turbo).
`--systemPrompt`: Custom system prompt to guide the AI response.
`--frequencyPenalty`: OpenAI frequency penalty parameter (default: 0).
`--maxTokens`: Maximum number of tokens for the response.
`--presencePenalty`: OpenAI presence penalty parameter (default: 0).
`--temperature`: Sampling temperature (conflicts with topP).
`--topP`: Top-p sampling parameter (conflicts with temperature).
`--log`: Whether to log the AI responses to the console (default: true).
`--maxMessages`: Limit the number of failing tests to send for summarization in the LLM request. This helps avoid overwhelming the model when dealing with reports that have many failing tests. (default: 10)
`consolidate`: Consolidate and summarize multiple AI summaries into a higher-level overview (default: true)
## Azure OpenAI
Run the following command:
```bash
npx ai-ctrf azure-openai
```An AI summary for each failed test will be added to your test report.
The package interacts with the Azure OpenAI API, you must set `AZURE_OPENAI_API_KEY`, `AZURE_OPENAI_ENDPOINT`, and `AZURE_OPENAI_DEPLOYMENT_NAME` environment variable or provide them as arguments.
You will be responsible for any charges incurred from using your selected Azure OpenAI model. Make sure you are aware of the associated cost.
A message is sent to Azure OpenAI for each failed test.
### Options
`--model`: OpenAI model to use (default: gpt-3.5-turbo).
`--systemPrompt`: Custom system prompt to guide the AI response.
`--frequencyPenalty`: OpenAI frequency penalty parameter (default: 0).
`--maxTokens`: Maximum number of tokens for the response.
`--presencePenalty`: OpenAI presence penalty parameter (default: 0).
`--temperature`: Sampling temperature (conflicts with topP).
`--topP`: Top-p sampling parameter (conflicts with temperature).
`--log`: Whether to log the AI responses to the console (default: true).
`--maxMessages`: Limit the number of failing tests to send for summarization in the LLM request. This helps avoid overwhelming the model when dealing with reports that have many failing tests. (default: 10)
`consolidate`: Consolidate and summarize multiple AI summaries into a higher-level overview (default: true)
## Claude
Run the following command:
```bash
npx ai-ctrf claude
```An AI summary for each failed test will be added to your test report.
The package interacts with the Anthropic API, you must set `ANTHROPIC_API_KEY` environment variable.
You will be responsible for any charges incurred from using your selected Claude model. Make sure you are aware of the associated costs.
A message is sent to Claude for each failed test.
### Claude Options
`--model`: Claude model to use (default: claude-3-5-sonnet-20240620).
`--systemPrompt`: Custom system prompt to guide the AI response.
`--maxTokens`: Maximum number of tokens for the response.
`--temperature`: Sampling temperature.
`--log`: Whether to log the AI responses to the console (default: true).
`--maxMessages`: Limit the number of failing tests to send for summarization in the LLM request. This helps avoid overwhelming the model when dealing with reports that have many failing tests. (default: 10)
`consolidate`: Consolidate and summarize multiple AI summaries into a higher-level overview (default: true)
## CTRF Report Example
``` json
{
"results": {
"tool": {
"name": "AnyFramework"
},
"summary": {
"tests": 1,
"passed": 0,
"failed": 1,
"pending": 0,
"skipped": 0,
"other": 1,
"start": 1722511783500,
"stop": 1722511804528
},
"tests": [
{
"name": "should display profile information",
"status": "failed",
"duration": 800,
"message": "Assertion Failure: profile mismatch",
"trace": "ProfileTest.js:45...",
"ai": "The test failed because there was a profile mismatch at line 45 of the ProfileTest.js file. To resolve this issue, review the code at line 45 to ensure that the expected profile information matches the actual data being displayed. Check for any discrepancies and make necessary adjustments to align the expected and actual profile information."
},
]
}
}
```## Standard Output
![stdout](assets/stdout.png)
## GitHub Actions Integration
View AI summaries in directly in the Github Actions workflow:
![Github](assets/github.png)
Add a Pull Request comment with your AI summary:
![Github](assets/github-pr.png)
## Slack Integration
Send a Slack message with your AI test summary:
![Slack](assets/slack.png)
## Support Us
If you find this project useful, consider giving it a GitHub star ⭐ It means a lot to us.