Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ src/main/java/io/jenkins/plugins/explain_error/

### AI Service Integration
- All AI services extend `BaseAIProvider` and implement `ExtensionPoint`
- LangChain4j integration (v1.9.1) for OpenAI, Gemini, AWS Bedrock, and Ollama providers
- LangChain4j integration (v1.11.0) for OpenAI, Gemini, AWS Bedrock, and Ollama providers
- Structured output parsing using `JenkinsLogAnalysis` record with `@Description` annotations
- Each provider implements `createAssistant()` to build LangChain4j assistants
- Provider descriptors extend `BaseProviderDescriptor` with `@Symbol` annotations for CasC
Expand Down Expand Up @@ -123,9 +123,9 @@ Use `provider.setThrowError(true)` to simulate failures, `provider.getLastCustom
## Build & Dependencies

### Maven Configuration
- Jenkins baseline: 2.479.3
- Jenkins baseline: 2.528.3
- Java 17+ required
- LangChain4j: v1.9.1 (langchain4j, langchain4j-open-ai, langchain4j-google-ai-gemini, langchain4j-bedrock, langchain4j-ollama)
- LangChain4j: v1.11.0 (langchain4j, langchain4j-open-ai, langchain4j-google-ai-gemini, langchain4j-bedrock, langchain4j-ollama)
- Key Jenkins dependencies: `jackson2-api`, `workflow-step-api`, `commons-lang3-api`
- SLF4J and Jackson exclusions to avoid conflicts with Jenkins core
- Test dependencies: `workflow-cps`, `workflow-job`, `workflow-durable-task-step`, `workflow-basic-steps`, `test-harness`
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This guide will help you get started with development and contribution.

- **Java**: Version 17 or later
- **Maven**: Version 3.9 or later
- **Jenkins**: Version 2.479.3 or later for testing
- **Jenkins**: Version 2.528.3 or later for testing
- **Git**: For version control
- **IDE**: IntelliJ IDEA or VS Code recommended

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ Works with Freestyle, Declarative, or any job type.
|-------|----------|
|API key not set | Add your key in Jenkins global config |
|Auth or rate limit error| Check key validity, quota, and provider plan |
|Button not visible | Ensure Jenkins version ≥ 2.479.3, restart Jenkins after installation |
|Button not visible | Ensure Jenkins version ≥ 2.528.3, restart Jenkins after installation |

Enable debug logs:

Expand Down
Loading